Django app storing Google API OAuth credentials.
Project description
Stores Google OAuth credentials in Django ORM for easy API service access.
Installation:
Install or add django-google-credentials to your Python path.
Add google_credentials to your INSTALLED_APPS setting.
Add google_credentials URL include to your project’s urls.py file:
url(r'^google-credentials/', include('google_credentials.urls')),Create your project on the Google API Console, specifying the redirect URL as http://your.domain.com/google-credentials/callback (or however you setup your urls.py as described above).
Add the following settings to your project’s settings.py file populated with values as retrieved from Google in the previous step, i.e.:
GA_CLIENT_ID = '32749234234.apps.googleusercontent.com' GA_CLIENT_SECRET = 'DKSFY87sd6fHJGdsf6' GA_SCOPE = 'https://www.googleapis.com/auth/analytics.readonly' GA_REDIRECT_URI = 'http://your.domain.com/google-credentials/callback'
Run syncdb to generate required models.
Usage
Before you can start using a service you have to authorize it with your Google account. To do this open http://your.domain.com/google-credentials/authorize in your browser.
Once authorized you can retrieve a service for further querying like so:
from google_credentials import utils service = utils.get_service()
To purge previously generated credentials open http://your.domain.com/google-credentials/purge in your browser.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-google-credentials-0.0.2.tar.gz.
File metadata
- Download URL: django-google-credentials-0.0.2.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbef126c0e9fe29b4fa71fc3f69fdf5d34c9cb39efc3d48ccefd07e4ffddfc96
|
|
| MD5 |
30281c4dfdba7574eb773c904ba1a780
|
|
| BLAKE2b-256 |
01ac4fc1de17735b407e4f19ecaf929c493b9f92c0e138a8d337f227fc0d60b2
|
File details
Details for the file django_google_credentials-0.0.2-py2.7.egg.
File metadata
- Download URL: django_google_credentials-0.0.2-py2.7.egg
- Upload date:
- Size: 7.2 kB
- Tags: Egg
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95834fd2373dbc75e2470fb1686d9aab2e7737e1997bb36e0acc2021807641ff
|
|
| MD5 |
8ee8e4a68c36a6c19204b705bf421459
|
|
| BLAKE2b-256 |
2b9fcb91b2117bb25f1835d3240895ff858272073810154b1d0e564a46f13da4
|