Metadata-Version: 2.1
Name: oidcpy
Version: 0.0.5
Summary: OpenID Connect library code
Home-page: https://github.com/marcelvandendungen/oidcpy
Author: Marcel van den Dungen
Author-email: author@example.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# OIDCPY Package

This is a package that contains Python code to implement an OpenID Connect Provider. You can find the source code on 
[Github](https://github.com/marcelvandendungen/oidcpy).

The `authorize` module contains a decorator that can be applied to a Flask route handler to enforce authorization. You specify the `audience` and `scopes` as arguments to the decorator, like:

```python
@app.route('/', methods=['GET'])
@authorize(audience='http://localhost:5000', scopes='read')
def index(): pass
```


