This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import asyncio | |
import aiohttp | |
from aiohttp import ClientSession | |
# use atexit module | |
import atexit | |
class SessionController: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import asyncio | |
import aiohttp | |
from aiohttp import ClientSession | |
async def testCall(val,session): | |
print("start"+str(val)) | |
t1 = await session.request("GET",'http://python.org/'+str(val)) | |
c = await t1.text() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# import required modules | |
import asyncio | |
import aiohttp | |
from aiohttp import ClientSession | |
# an async function to build test calls based on a value with a given client session | |
async def testCall(val,session): | |
print("start: "+str(val)) |
NewerOlder