Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# HTTPOpen

open a http url as a local file.

## Usage

```python
from httpopen import http_open

with http_open("https://httpbin.org/get") as f:
print(f.read())
```