bottle-rauth 0.1.1

Last updated:

0 purchases

bottle-rauth 0.1.1 Image
bottle-rauth 0.1.1 Images
Add to Cart

Description:

bottlerauth 0.1.1

Bottle-RAuth – Short description.





Docs are available at https://bottle-rauth.readthedocs.org/. Pull requests
with documentation enhancements and/or fixes are awesome and most welcome.

Contents

Requirements
Installation
Usage
Bug tracker
Contributing
Contributors
License



Requirements

python >= 2.6



Installation
Bottle-RAuth should be installed using pip:
pip install bottle-rauth


Usage
import bottle

from bottle_rauth import RAuthPlugin

app = bottle.Bottle()
app.install(RAuthPlugin(github={
'type': 'oauth2',
'client_id': 'e3e297bb9f506cbea557',
'client_secret': 'd113380beb8f1ed8a77b688e2b81b76c9be00d09',
'authorize_url': 'https://github.com/login/oauth/authorize',
'access_token_url': 'https://github.com/login/oauth/access_token',
'base_url': 'https://api.github.com/',
}))


@app.route('/')
def index():
return '<a href="/github">Login with github</a>'


@app.route('/github', provider='github')
def github(rauth):
info = rauth.get('user').json()
info['token'] = rauth.access_token
return info

if __name__ == '__main__':
app.run(port=5000)


Bug tracker
If you have any suggestions, bug reports or
annoyances please report them to the issue tracker
at https://github.com/klen/bottle-rauth/issues


Contributing
Development of Bottle-RAuth happens at: https://github.com/klen/bottle-rauth


Contributors

klen (Kirill Klenov)



License
Licensed under a BSD license.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.