Metadata-Version: 2.4
Name: sf-silly-goose-requests
Version: 0.1.0
Summary: A simple, clean wrapper for making HTTP requests
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# easyrequests

A simple, clean wrapper for making HTTP requests with no dependencies.

## Install
```bash
pip install easyrequests
```

## Usage
```python
import easyrequests

r = easyrequests.get("https://api.example.com/data")
print(r.status)
print(r.json())
```
