Skip to main content

No project description provided

Project description

Bottle-RAuth – Short description.

Build Status Coverals http://img.shields.io/pypi/v/bottle-rauth.svg?style=flat-square http://img.shields.io/pypi/dm/bottle-rauth.svg?style=flat-square Donate

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

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bottle-rauth-0.1.1.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

bottle_rauth-0.1.1-py2.py3-none-any.whl (4.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file bottle-rauth-0.1.1.tar.gz.

File metadata

File hashes

Hashes for bottle-rauth-0.1.1.tar.gz
Algorithm Hash digest
SHA256 276c17c7eb7b1971128959094de631262c645082fdb9f5e0dda28e829040103b
MD5 9e126c8180bcea0070f49a3efd25a806
BLAKE2b-256 ca23d973022d7182d9da001fef8679a318e8001cd82b893d566b7919f566b985

See more details on using hashes here.

File details

Details for the file bottle_rauth-0.1.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for bottle_rauth-0.1.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b7356b6e924bd7ea4c69d31dc714077c2a45b61572a427ebb7a51693586e8aef
MD5 84dbe69eb67a4365c4c5167a8ae32f5e
BLAKE2b-256 638a5cc86835d9f4bc3efddefafad8f83a72abac063975b8d037386a7142fdf7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page