Para obtener algo de la 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 ())
Esto imprime:
Estado: 200 Tipo de contenido: texto/html; juego de caracteres = utf-8 Cuerpo: <!doctype html> ...
¿Viene de solicitudes? Lea por qué necesitamos tantas líneas.
Un ejemplo usando un servidor 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
¡No dudes en realizar una solicitud de extracción para agregar tu enlace a estas páginas!
Discusiones sobre aio-libs : https://github.com/aio-libs/aiohttp/discussions
Matriz : #aio-libs:matrix.org
Admitimos Stack Overflow. Agregue la etiqueta aiohttp a su pregunta allí.
Opcionalmente, puede instalar la biblioteca aiodns (muy recomendable por razones de velocidad).
aiohttp
se ofrece bajo la licencia Apache 2.
La comunidad aiohttp desea agradecer a Keepsafe (https://www.getkeepsafe.com) por su apoyo en los primeros días del proyecto.
La última versión para desarrolladores está disponible en un repositorio de GitHub: https://github.com/aio-libs/aiohttp
Si está interesado en la eficiencia, la comunidad AsyncIO mantiene una lista de puntos de referencia en la wiki oficial: https://github.com/python/asyncio/wiki/Benchmarks