Pour obtenir quelque chose sur le Web :
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 ())
Ceci imprime :
Statut : 200 Type de contenu : texte/html ; jeu de caractères = utf-8 Corps : <!doctype html> ...
Provenant de demandes ? Découvrez pourquoi nous avons besoin de tant de lignes.
Un exemple utilisant un serveur simple :
# 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
N'hésitez pas à faire une Pull Request pour ajouter votre lien vers ces pages !
Discussions sur aio-libs : https://github.com/aio-libs/aiohttp/discussions
Matrice : #aio-libs:matrix.org
Nous prenons en charge Stack Overflow. Veuillez y ajouter la balise aiohttp à votre question.
En option, vous pouvez installer la bibliothèque aiodns (fortement recommandée pour des raisons de rapidité).
aiohttp
est proposé sous la licence Apache 2.
La communauté aiohttp tient à remercier Keepsafe (https://www.getkeepsafe.com) pour son soutien dans les premiers jours du projet.
La dernière version développeur est disponible dans un référentiel GitHub : https://github.com/aio-libs/aiohttp
Si vous êtes intéressé par l'efficacité, la communauté AsyncIO maintient une liste de benchmarks sur le wiki officiel : https://github.com/python/asyncio/wiki/Benchmarks