python-aiohttp
Port variant v11
Summary Async http client/server framework (3.11)
Package version 3.9.3
Homepage https://github.com/aio-libs/aiohttp
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v12
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 03 FEB 2024, 15:41:37 UTC
Port created 10 DEC 2022, 14:08:04 UTC
Subpackage Descriptions
single ================================== Async http client/server framework ================================== :alt: GitHub Actions status for master branch :alt: codecov.io status for master branch :alt: Latest PyPI package version :alt: Latest Read The Docs :alt: Matrix Room — #aio-libs:matrix.org :alt: Matrix Space — #aio-libs-space:matrix.org Key Features ============ - Supports both client and server side of HTTP protocol. - Supports both client and server Web-Sockets out-of-the-box and avoids Callback Hell. - Provides Web-server with middleware and pluggable routing. Getting started =============== Client ------ To get something from the web: .. code-block:: python import aiohttp import asyncio async def main(): async with aiohttp.ClientSession() as session: async with session.get('http://python.org') as response: print("Status:", response.status) print("Content-type:", response.headers['content-type']) html = await response.text() print("Body:", html[:15], "...") asyncio.run(main()) This prints: .. code-block:: Status: 200 Content-type: text/html; charset=utf-8 Body: ... Coming from [requests] ? Read [why we need so many lines]. Server ------ An example using a simple server: .. code-block:: python # examples/server_simple.py from aiohttp import web async def handle(request): name = request.match_info.get('name', "Anonymous") text = "Hello, " + name return web.Response(text=text) async def wshandle(request): ws = web.WebSocketResponse() await ws.prepare(request) async for msg in ws: if msg.type == web.WSMsgType.text: await ws.send_str("Hello, {}".format(msg.data)) elif msg.type == web.WSMsgType.binary: await ws.send_bytes(msg.data) elif msg.type == web.WSMsgType.close: break return ws app = web.Application() app.add_routes([web.get('/', handle), web.get('/echo', wshandle), web.get('/{name}', handle)]) if __name__ == '__main__': web.run_app(app) Documentation =============
Configuration Switches (platform-specific settings discarded)
PY311 ON Build using Python 3.11 PY312 OFF Build using Python 3.12
Package Dependencies by Type
Build (only) python-setuptools:single:v11
autoselect-python:single:standard
Build and Runtime python-aiosignal:single:v11
python-attrs:single:v11
python-frozenlist:single:v11
python-multidict:single:v11
python-yarl:single:v11
python311:single:standard
Download groups
main mirror://PYPI/a/aiohttp
Distribution File Information
90842933e5d1ff760fae6caca4b2b3edba53ba8f4b71e95dacf2818a2aca06f7 7499669 aiohttp-3.9.3.tar.gz
Ports that require python-aiohttp:v11
python-vdirsyncer:v11 Synchronize calendars and contacts (3.11)