flask-musers 0.5.4
pip install flask-musers
Released:
Flask app for store user in MongoDB and simple views for login, logout and registration.
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD)
- Author: Jindřich Smitka
- Tags flask-musers
Classifiers
- Development Status
- Intended Audience
- License
- Natural Language
- Programming Language
Project description
Flask app for store user in MongoDB and simple views for login, logout and registration.
Free software: BSD license
Quickstart
Install flask-musers:
pip install flask-musers
In the app you must init the MUsers:
from flask import Flask from flask.ext.musers import MUsers app = Flask(__name__) MUsers(app)
and register flask-musers blueprint:
from flask_musers.views import musers app.register_blueprint(musers)
then must be prepared templates for registration - musers/register.html and login - musers/login.html.
Views has names musers.register, musers.login and musers.logout. They are used in url_for:
from flask import url_for url_for('musers.register') url_for('musers.login') url_for('musers.logout')
Config
MUSERS_ALLOW_REGISTRATIONS - set to False, when you want disable registrations. Default: True
MUSERS_PASSWORD_VALIDATOR - used for custom validator. The dotted name for the object to import. Default: None
History
0.0.1 (2013-09-17)
First release on PyPI.
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD)
- Author: Jindřich Smitka
- Tags flask-musers
Classifiers
- Development Status
- Intended Audience
- License
- Natural Language
- Programming Language
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
File details
Details for the file flask-musers-0.5.4.tar.gz
.
File metadata
- Download URL: flask-musers-0.5.4.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0037377c3f36dc6ca0d2793105c947729b1617705ed3b1474545c21c75f73697 |
|
MD5 | 7598c9e13b2fc0e3572f814ad9c83a1b |
|
BLAKE2b-256 | 13bd065503ed196d34e56f3fcdaa8bdc3eb44994544e40e59710ca7846570afc |