python-socketio 5.7.2-2 source package in Ubuntu

Changelog

python-socketio (5.7.2-2) unstable; urgency=medium

  * debian/clean: updated dir.
  * debian/control: bumped Standards-Version to 4.6.2.
  * debian/gbp.conf: file created.

 -- Paulo Henrique de Lima Santana (phls) <email address hidden>  Wed, 18 Jan 2023 19:45:36 -0300

Upload details

Uploaded by:
Paulo Henrique de Lima Santana
Uploaded to:
Sid
Original maintainer:
Paulo Henrique de Lima Santana
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-socketio_5.7.2-2.dsc 2.2 KiB 4b0992fb2146bf4c3b6710500b845d73258c00d5e90d7b1ae9eee7c1279ced87
python-socketio_5.7.2.orig.tar.gz 46.4 KiB 92395062d9db3c13d30e7cdedaa0e1330bba78505645db695415f9a3c628d097
python-socketio_5.7.2-2.debian.tar.xz 47.2 KiB ff1917bac87f99c927edf64b0803a3d066d1064599e751d1b77383a4e97f9515

Available diffs

No changes file available.

Binary packages built by this source

python3-socketio: python3 implementation of the Socket.IO realtime client and server

 Socket.IO is a 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.
 .
 Client Features:
 .
 Can connect to other Socket.IO compliant servers besides the one in this
 package.
 Compatible with Python 3.5+.
 Two versions of the client, one for standard Python and another for asyncio.
 Uses an event-based architecture implemented with decorators that hides the
 details of the protocol.
 Implements HTTP long-polling and WebSocket transports.
 Automatically reconnects to the server if the connection is dropped.
 .
 Server Features:
 .
 Can connect to servers running other compliant Socket.IO clients besides the
 one in this package.
 Compatible with Python 3.5+.
 Two versions of the server, one for standard Python and another for asyncio.
 Supports large number of clients even on modest hardware due to being
 asynchronous.
 Can be hosted on any WSGI and ASGI web servers includind Gunicorn, Uvicorn,
 eventlet and gevent.
 Can be integrated with WSGI applications written in frameworks such as
 Flask, Django, etc.
 Can be integrated with aiohttp, sanic and tornado asyncio applications.
 Broadcasting of messages to all connected clients, or to subsets of them
 assigned to rooms.
 Optional support for multiple servers, connected through a messaging queue
 such as Redis or RabbitMQ.
 Send messages to clients from external processes, such as Celery workers or
 auxiliary scripts.
 Event-based architecture implemented with decorators that hides the details
 of the protocol.
 Support for HTTP long-polling and WebSocket transports.
 Support for XHR2 and XHR browsers.
 Support for text and binary messages.
 Support for gzip and deflate HTTP compression.
 Configurable CORS responses, to avoid cross-origin problems with browsers.