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: 4 months 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())
```