aiohttp
3.11.10
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 ())
これは次のように出力します:
ステータス: 200 コンテンツタイプ: テキスト/html;文字セット=utf-8 本文: <!doctype html> ...
リクエストから来ていますか?なぜこれほど多くの行が必要なのかを読んでください。
単純なサーバーを使用した例:
# 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
これらのページにリンクを追加するには、お気軽にプル リクエストを作成してください。
aio-libs ディスカッション: https://github.com/aio-libs/aiohttp/Discussions
マトリックス: #aio-libs:matrix.org
私たちはスタック オーバーフローをサポートしています。そこで質問にaiohttpタグを追加してください。
オプションで、aiodns ライブラリをインストールできます (速度の点から強くお勧めします)。
aiohttp
Apache 2 ライセンスに基づいて提供されます。
aiohttp コミュニティは、プロジェクトの初期段階でサポートしてくれた Keepsafe (https://www.getkeepsafe.com) に感謝します。
最新の開発者バージョンは、GitHub リポジトリ: https://github.com/aio-libs/aiohttp で入手できます。
効率に興味がある場合は、AsyncIO コミュニティが公式 Wiki でベンチマークのリストを管理しています: https://github.com/python/asyncio/wiki/Benchmarks