Last active
June 9, 2025 22:07
-
-
Save jph00/0c8babc733efe427531eda28a4504b28 to your computer and use it in GitHub Desktop.
Sample for import_gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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