So holen Sie sich etwas aus dem Internet:
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 ())
Dies druckt:
Status: 200 Inhaltstyp: Text/HTML; Zeichensatz=utf-8 Textkörper: <!doctype html> ...
Kommen Sie aus Anfragen? Lesen Sie, warum wir so viele Zeilen brauchen.
Ein Beispiel mit einem einfachen Server:
# 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 )
https://aiohttp.readthedocs.io/
https://github.com/aio-libs/aiohttp-demos
Fühlen Sie sich frei, eine Pull-Anfrage zu stellen, um Ihren Link zu diesen Seiten hinzuzufügen!
aio-libs-Diskussionen : https://github.com/aio-libs/aiohttp/discussions
Matrix : #aio-libs:matrix.org
Wir unterstützen Stack Overflow. Bitte fügen Sie Ihrer Frage dort das Tag aiohttp hinzu.
Optional können Sie die aiodns-Bibliothek installieren (aus Geschwindigkeitsgründen dringend empfohlen).
aiohttp
wird unter der Apache 2-Lizenz angeboten.
Die aiohttp-Community möchte Keepsafe (https://www.getkeepsafe.com) für seine Unterstützung in den frühen Tagen des Projekts danken.
Die neueste Entwicklerversion ist in einem GitHub-Repository verfügbar: https://github.com/aio-libs/aiohttp
Wenn Sie an Effizienz interessiert sind, führt die AsyncIO-Community eine Liste mit Benchmarks im offiziellen Wiki: https://github.com/python/asyncio/wiki/Benchmarks