I am trying to print out the method and headers of a request I am sending. I can do it for the response of the request, but not the actual request itself.
Here's where the problem lies:
async with session.get('url', params=params) as resp:
print(resp.method)
content = await
resp.read()