Package: python-atlassian-python-api-doc Source: atlassian-python-api Version: 3.19.0-1+nerve1 Architecture: all Maintainer: Nerve Development Team Installed-Size: 580 Depends: libjs-sphinxdoc (>= 1.0) Homepage: https://github.com/atlassian-api/atlassian-python-api Priority: optional Section: doc Filename: pool/main/a/atlassian-python-api/python-atlassian-python-api-doc_3.19.0-1+nerve1_all.deb Size: 91944 SHA256: bba9be560f0bb8328b749511d7ba331174242d5bd43132f80b6f6dd4fb1015e7 SHA1: 00767f5ebea8c29468c9f3e8110440ee7bbf8ddb MD5sum: 2239fd5d88914f4e7b5f3b530dc328ac Description: Atlassian Python API Library Documentation This package provides documentation for python3-atlassian-python-api Package: python3-aiozipstream Source: python-aiozipstream Version: 0.5-2~nerve10u3 Architecture: all Maintainer: Nerve Development Team Installed-Size: 42 Depends: python3:any Conflicts: python3-zipstream Replaces: python3-zipstream Provides: python3-zipstream Homepage: https://github.com/kbbdy/zipstream Priority: optional Section: python Filename: pool/main/p/python-aiozipstream/python3-aiozipstream_0.5-2~nerve10u3_all.deb Size: 9488 SHA256: 242941f531c6dd6b15ed6672795efe51e3f1ffb14db69599cafbdcb7a3a7e3c1 SHA1: 4ac0dfff85574935f2343f6f9fe70ebc95eda633 MD5sum: 71df3db28211604f28ccef0f5689423f Description: Creating zip files on the fly # AioZipStream . This is a fork of [ZipStream](https://github.com/kbbdy/zipstream). Simple python library for streaming ZIP files which are created dynamically, without using any temporary files. . - No temporary files, data is streamed directly - Supported `deflate` compression method - Small memory usage, straming is realised using yield statement - Archive structure is created on the fly, and all data can be created during stream - Files included into archive can be generated on the fly using Python generators - Asynchronous AioZipStream and classic ZipStream are available - Zip32 format compatible files - Independent from python's standard ZipFile implementation - Almost no dependencies: only `aiofiles` in some circumstances (see AioZipStream section for details) - Zip64 support is also planned in future (far future, because I never hitted 4GB file size limit ;-) ) . ### Required Python version: . `ZipStream` is compatible with **Python 2.7**. . `AioZipStream` require **Python 3.6**. For earlier versions `AioZipStream` is not available for import. Package: python3-atlassian-python-api Source: atlassian-python-api Version: 3.19.0-1+nerve1 Architecture: all Maintainer: Nerve Development Team Installed-Size: 671 Depends: python3-deprecated, python3-oauthlib, python3-requests, python3-requests-oauthlib, python3-six, python3:any Suggests: python-atlassian-python-api-doc Homepage: https://github.com/atlassian-api/atlassian-python-api Priority: optional Section: python Filename: pool/main/a/atlassian-python-api/python3-atlassian-python-api_3.19.0-1+nerve1_all.deb Size: 87924 SHA256: 9aa7ffae5284982640872ef7ed7dd71cc5a7851b3276c480d93934da34c0ec5f SHA1: a5595597dfbe61d6e18855a832b946f707d6042d MD5sum: ce1de6e20f104ba38fda2000710f3767 Description: Atlassian Python API Library This package is used to provide a simple python interface for interacting with Atlassian products (Server, Data Center and Cloud) and apps from ecosystem (Portfolio, XRay). It is based on the official public Rest API documentation and private methods (+ xml+rpc, raw http request). Package: python3-engineio Source: python-engineio Version: 3.13.2-2~nerve1+10u3 Architecture: all Maintainer: Paulo Henrique de Lima Santana (phls) Installed-Size: 230 Depends: python3-six (>= 1.9.0), python3:any (>= 3.7~) Homepage: https://pypi.python.org/pypi/python-engineio Priority: optional Section: python Filename: pool/main/p/python-engineio/python3-engineio_3.13.2-2~nerve1+10u3_all.deb Size: 56336 SHA256: 921bac9fb1d1084c5b2af4ff4db0ba1dfeb84c88f1bf7533edf8fc009ccfa137 SHA1: ff33797332596575b01f9277a62eb9831dee98f5 MD5sum: 3579c312738a51780ee4ca286b248124 Description: python3 implementation of the Engine.IO realtime server This project implements an Engine.IO server that can run standalone or integrated with a python3 WSGI application. The following are some of its features: . Fully compatible with the Javascript engine.io-client library. Compatible with python3. Supports large number of clients even on modest hardware when used with an asynchronous server based on asyncio (sanic, aiohttp or tornado), eventlet or gevent. For development and testing, any WSGI compliant multi-threaded server can also be used. Includes a WSGI middleware that integrates Engine.IO traffic with standard WSGI applications. Uses an event-based architecture implemented with decorators that hides the details of the protocol. Implements HTTP long-polling and WebSocket transports. Supports XHR2 and XHR browsers as clients. Supports text and binary messages. Supports gzip and deflate HTTP compression. Configurable CORS responses to avoid cross-origin problems with browsers. Package: python3-socketio Source: python-socketio Version: 4.4.0-3~nerve10u3 Architecture: all Maintainer: Paulo Henrique de Lima Santana (phls) Installed-Size: 247 Depends: python3-engineio (>= 3.9.0), python3-six (>= 1.9.0), python3:any (>= 3.7~), python3-aiohttp (>= 3.4), python3-websockets (>= 7.0), python3-requests (>= 2.21.0), python3-websocket (>= 0.54.0) Homepage: https://pypi.org/project/python-socketio Priority: optional Section: python Filename: pool/main/p/python-socketio/python3-socketio_4.4.0-3~nerve10u3_all.deb Size: 59528 SHA256: 5ec243010efd8f48d060d58a0baed2899432a9ae197c6b3f99f355e1c766dfca SHA1: 64c26973aff47fbe8673416928e05361c6d7de80 MD5sum: 116ca06f1eb403696385372d0755196f Description: 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.