Metadata-Version: 2.1
Name: dash-google-oauth
Version: 1.1
Summary: Authenticate to Dash app using Google OAuth
Home-page: https://github.com/hossein-jazayeri/dash-google-oauth
Author: Hossein Jazayeri
Author-email: hossein.jaza@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Framework :: Flask
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: dash (>=1.2.0)
Requires-Dist: Flask (>=1.1.1)
Requires-Dist: authlib (==0.11)
Requires-Dist: ua-parser
Requires-Dist: chart-studio (>=1.0.0)

# Dash Google OAuth

This is a simple library using Google OAuth to authenticate and view a Dash app
written based on [dash-auth](https://github.com/plotly/dash-auth).

### Setup
```
$ pip install dash-google-oauth
```
Define following EVN variables:
```
FLASK_SECRET_KEY

GOOGLE_AUTH_URL
GOOGLE_AUTH_SCOPE
GOOGLE_AUTH_TOKEN_URI
GOOGLE_AUTH_REDIRECT_URI
GOOGLE_AUTH_USER_INFO_URL
GOOGLE_AUTH_CLIENT_ID
GOOGLE_AUTH_CLIENT_SECRET
```
Example envs using [python-dotenv](https://pypi.org/project/python-dotenv/):
```
FLASK_SECRET_KEY="..."

GOOGLE_AUTH_URL=https://accounts.google.com/o/oauth2/v2/auth?access_type=offline&prompt=consent
GOOGLE_AUTH_SCOPE="openid email profile"
GOOGLE_AUTH_TOKEN_URI=https://oauth2.googleapis.com/token
GOOGLE_AUTH_REDIRECT_URI=http://localhost:5000/login/callback
GOOGLE_AUTH_USER_INFO_URL=https://www.googleapis.com/userinfo/v2/me
GOOGLE_AUTH_CLIENT_ID="..."
GOOGLE_AUTH_CLIENT_SECRET="..."
```

