import urllib.request
import requests
import httpx
async def foo():
urllib.request.urlopen("http://example.com/foo/bar").read()
requests.get()
httpx.get()
requests.post()
httpx.post()