mirror of
https://git.freebsd.org/ports.git
synced 2025-07-05 11:29:15 -04:00
- Update COMMENT - Add LICENSE - Add NO_ARCH - Update pkg-descr - Update WWW Changes: https://github.com/miguelgrinberg/python-engineio/blob/master/CHANGES.md
16 lines
894 B
Text
16 lines
894 B
Text
This project implements Python based Engine.IO client and server that can run
|
|
standalone or integrated with a variety of Python web frameworks and
|
|
applications.
|
|
|
|
Engine.IO is a lightweight transport protocol that enables real-time
|
|
bidirectional event-based communication between clients (typically, though not
|
|
always, web browsers) and a server. The official implementations of the client
|
|
and server components are written in JavaScript. This package provides Python
|
|
implementations of both, each with standard and asyncio variants.
|
|
|
|
The Engine.IO protocol is extremely simple. Once a connection between a client
|
|
and a server is established, either side can send "messages" to the other side.
|
|
Event handlers provided by the applications on both ends are invoked when a
|
|
message is received, or when a connection is established or dropped.
|
|
|
|
WWW: https://github.com/miguelgrinberg/python-engineio
|