Skip to content

Instantly share code, notes, and snippets.

@dgtlctzn
Created December 3, 2021 17:06
Show Gist options
  • Save dgtlctzn/f601bb6c7b5bb0eed1663f7b36c5e07e to your computer and use it in GitHub Desktop.
Save dgtlctzn/f601bb6c7b5bb0eed1663f7b36c5e07e to your computer and use it in GitHub Desktop.
Get Url
async def get_url(session: aiohttp.ClientSession, url: str) -> Dict:
async with session.get(url) as response:
return await response.json()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment