Metadata-Version: 2.1
Name: annotell-auth
Version: 1.3.0
Summary: Annotell Authentication
Home-page: https://github.com/annotell/annotell-python
Author: Annotell
Author-email: Michel Edkrantz <michel.edkrantz@annotell.com>
License: MIT
Download-URL: https://github.com/annotell/annotell-python/tarball/1.3.0
Keywords: API,Annotell
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Requires-Python: ~=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests (<3,>=2.20)
Requires-Dist: authlib (<1,>=0.14.1)

# Annotell Authentication

Python 3 library providing foundations for Annotell Authentication
on top of the `requests` library. 

Builds on the standard Oauth 2.0 Client Credentials flow.

There are a few ways to set your credentials. 
1. Set the environment variable `ANNOTELL_CREDENTIALS` to point to your Annotell Credentials file. 
The credentials will contain the Client Id and Client Secret. 
2. Set environment variables `ANNOTELL_CLIENT_ID` and
 `ANNOTELL_CLIENT_SECRET`
3. Set tokens in the constructor with `AuthSession(client_id="X", client_id="Y")`


```python
from annotell.auth.authsession import AuthSession

auth_session = AuthSession()

# create a requests session with automatic oauth refresh  
sess = auth_session.session

# make call to some Annotell service with your token. Use default requests 
sess.get("https://api.annotell.com")
```

