Metadata-Version: 2.1
Name: auth1api
Version: 1.0.0
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
Requires-Dist: requests

# 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")
token, exp_time = client.login("username", None, None, "foobar")
if client.check_auth_token(token):
    print("Login success!")
else:
    print("Login failure.")
```

