Metadata-Version: 2.1
Name: auth1api
Version: 0.0.5
Summary: A library to make requests to your Auth1 instance
Home-page: UNKNOWN
Author: Brian Li, Mark Lalor, and Yidi Huang
Author-email: auth1@case.edu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# auth1api

auth1api provides methods to access your Auth1 instance.

Example Usage:
```python
from auth1api import Auth1Client

client = Auth1Client("http://localhost:8080")
client.register("username", "hello@world.com", "foobar")
res = client.login("username", None, None, "foobar")
```

