Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

aiohttp get

async with aiohttp.ClientSession() as session:
    async with session.get('http://example.com') as r:
        print(r.status)
        print(await r.text())
 
PREVIOUS NEXT
Tagged: #aiohttp
ADD COMMENT
Topic
Name
3+4 =