Skip to content

Instantly share code, notes, and snippets.

@jph00
Last active June 9, 2025 22:07
Show Gist options
  • Save jph00/0c8babc733efe427531eda28a4504b28 to your computer and use it in GitHub Desktop.
Save jph00/0c8babc733efe427531eda28a4504b28 to your computer and use it in GitHub Desktop.
Sample for import_gist
from httpx import get as xget
def read_url(url:str):
"Reads a url"
return xget(url, follow_redirects=True).text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment