Metadata-Version: 2.1
Name: turborest
Version: 0.1.0
Summary: A simple REST client for Python
Home-page: https://github.com/bytesentinel-io/turborest
Author: ByteSentinel.io
Author-email: dev@bytesentinel.io
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: tests

# TurboREST

TurboREST is a REST API framework for Python 3.7+.

## Installation

```bash
pip install turborest
```

## Usage

```python
from turborest import Client

def main():
    auth = ("Bearer", "xyz")
    client = Client(format="json", auth=auth)
    client.get("https://api.bytesentinel.io/test")
```

## License

### MIT License

```text
MIT License

TurboREST - A REST API framework for Python 3.7+.


...
    
```
