Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reyoung/httpopen
Open a http get url as a file like object
https://github.com/reyoung/httpopen
Last synced: about 1 month ago
JSON representation
Open a http get url as a file like object
- Host: GitHub
- URL: https://github.com/reyoung/httpopen
- Owner: reyoung
- License: mit
- Created: 2024-02-22T06:16:26.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-22T06:59:32.000Z (11 months ago)
- Last Synced: 2024-02-22T07:29:09.676Z (11 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HTTPOpen
open a http url as a local file.
## Usage
```python
from httpopen import http_openwith http_open("https://httpbin.org/get") as f:
print(f.read())
```