Skip to main content

No project description provided

Project description

Bottle Login – Implement users’ sessions in Bottle web framework.

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

Requirements

  • python >= 2.6

Installation

Bottle Login should be installed using pip:

pip install bottle-login

Usage

from bottle import Bottle, request, redirect
from bottle_login import LoginPlugin

app = Bottle()
app.config['SECRET_KEY'] = 'secret'

login = app.install(LoginPlugin())

@login.load_user
def load_user_by_id(user_id):
    # Load user by id here


# Some application views

@app.route('/')
def index():
    current_user = login.get_user()
    return current_user.name

@app.route('/signout')
def signout():
    # Implement logout
    login.logout_user()
    return redirect('/')

@app.route('/signin')
def signin():
    # Implement login (you can check passwords here or etc)
    user_id = int(request.GET.get('user_id'))
    login.login_user(user_id)
    return redirect('/')

Bug tracker

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

Contributing

Development of Bottle Login happens at: https://github.com/klen/bottle-login

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-login-0.0.3.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

bottle_login-0.0.3-py2.py3-none-any.whl (5.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file bottle-login-0.0.3.tar.gz.

File metadata

File hashes

Hashes for bottle-login-0.0.3.tar.gz
Algorithm Hash digest
SHA256 0698cc87c5a9a9532266f89f854fa32ed97b4fa0b6ad7091bcfca82b50dea3a7
MD5 aecf202c106dbeacf119d9140003d754
BLAKE2b-256 475f22c5830bd291174124991f51ceeabd5c4427c56cb0753b945fb684549b6d

See more details on using hashes here.

File details

Details for the file bottle_login-0.0.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for bottle_login-0.0.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 959d96fe433d4194628a5bf6d2815e12a5ae7651e26b27a4443b98b88a7ee5f4
MD5 a5001e8aaad8e7408ca1549dbaf33a67
BLAKE2b-256 12a2b53065f5748d6d38bbb3e8b413e7a8a30633490837f38e29fa75c0831143

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