I'm wondering how I can get the current Upload step from the aiohttp post method. Usually I would use the get method to pull the current step in a loop but this doesn't work if the host doesn't response the current upload step. So it is possible to get the current step? Something like "upload from xx% are almost done". I mean it is very annoying to wait until the upload is completed
async def post_task():
archive = open("file")
session = aiohttp.ClientSession()
post = await session.post("upload_url", data=archive, ssl = False)
await post.read()
await session.close()
loop = asyncio.get_event_loop()
loop.run_until_complete(post_task())