Skip to main content

Flask app for store user in MongoDB and simple views for login, logout and registration.

Project description

https://badge.fury.io/py/flask-musers.png https://travis-ci.org/s-m-i-t-a/flask-musers.png?branch=master https://coveralls.io/repos/s-m-i-t-a/flask-musers/badge.png

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')

History

0.0.1 (2013-09-17)

  • First release on PyPI.

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

flask-musers-0.0.7.tar.gz (6.4 kB view hashes)

Uploaded Source

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