Skip to content

Instantly share code, notes, and snippets.

@pirkla
pirkla / pythonSampleClientSessionClass.py
Created July 30, 2019 21:35
A sample python script with a wrapper for client sessions
#!/usr/bin/env python3
import asyncio
import aiohttp
from aiohttp import ClientSession
# use atexit module
import atexit
class SessionController:
@pirkla
pirkla / pythonSampleAsyncBatch.py
Last active August 4, 2019 11:09
Sample python script for asynchronous calls with batching
#!/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()
@pirkla
pirkla / pythonSampleAsync
Last active July 30, 2019 21:25
A sample async call using python.
#!/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))