# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= python-aiohttp VERSION= 3.11.11 KEYWORDS= python VARIANTS= v12 v13 SDESC[v12]= Async http client/server framework (3.12) SDESC[v13]= Async http client/server framework (3.13) HOMEPAGE= https://github.com/aio-libs/aiohttp CONTACT= Python_Automaton[python@ironwolf.systems] DOWNLOAD_GROUPS= main SITES[main]= PYPI/a/aiohttp DISTFILE[1]= aiohttp-3.11.11.tar.gz:main DIST_SUBDIR= python-src DF_INDEX= 1 SPKGS[v12]= single SPKGS[v13]= single OPTIONS_AVAILABLE= PY312 PY313 OPTIONS_STANDARD= none VOPTS[v12]= PY312=ON PY313=OFF VOPTS[v13]= PY312=OFF PY313=ON USES= cpe DISTNAME= aiohttp-3.11.11 CPE_PRODUCT= aiohttp CPE_VENDOR= aiohttp GENERATED= yes [PY312].BUILDRUN_DEPENDS_ON= python-aiohappyeyeballs:single:v12 python-aiosignal:single:v12 python-attrs:single:v12 python-frozenlist:single:v12 python-multidict:single:v12 python-propcache:single:v12 python-yarl:single:v12 [PY312].USES_ON= python:v12,sutools [PY313].BUILDRUN_DEPENDS_ON= python-aiohappyeyeballs:single:v13 python-aiosignal:single:v13 python-attrs:single:v13 python-frozenlist:single:v13 python-multidict:single:v13 python-propcache:single:v13 python-yarl:single:v13 [PY313].USES_ON= python:v13,sutools [FILE:2314:descriptions/desc.single] ================================== Async http client/server framework ================================== :alt: GitHub Actions status for master branch :alt: codecov.io status for master branch :alt: Codspeed.io status for aiohttp :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 [FILE:112:distinfo] bb49c7f1e6ebf3821a42d81d494f538107610c3a705987f53068546b0e90303e 7669618 python-src/aiohttp-3.11.11.tar.gz