Socket
Socket
Sign inDemoInstall

user-blueprint

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

user-blueprint

Flask blueprint that provides all the user handling features that are required by a web application in a database-independent way, including user registration, login, session management, password reset functionality with JWTs, automatic password hashing with Argon2 and of course the all the required route implementations with the corresponding HTML templates (styled using BlueprintJS).


Maintainers
1

Flask user handler blueprint

Lightweight Flask blueprint that provides all the user handling features that are required by a web application in a database-independent way, including:

  • User registration, login and session management.
  • Password reset functionality with JWTs.
  • Automatic, safe password handling using Argon2.

The blueprint provides the following routes for a web application: /login, /logout, /register, /request_password_reset, /reset/<token> and /verify/<token>. All these routes interact with the user database through an instance of the UserHandler class that is a decorator-based database interface, similar in style to Flask-Login's LoginManager. All the blueprint routes are backed by ready-to-use HTML templates that are formatted using BlueprintJS.

Installation

The project is available on PyPI as user-blueprint, you can install it with pip install user-blueprint.

How to use

The blueprint requires the following components to be configured:

  • blueprint.user_handler: See the documentation of the UserHandler class for the details.
  • LoginManager: This Flask-Login component handles the session management of the Flask application. You need to create an instance of this class and configure it according to the documentation of Flask-Login.

A working demo Flask application showing all the required configuration is included in the library, see demo.py.

Dependencies

The library requires the following dependencies to be installed besides Flask itself.

  • Flask-Login: User session management.
  • Flask-WTF: WTForms integration for Flask.
  • Passlib: Password hashing and verification.
  • PyJWT: JSON Web Token implementation in Python.
  • Argon2_cffi: The preferred Argon2 backend for Passlib. See Passlib's documentation for more options.

License - MIT

The library is open-sourced under the conditions of the MIT license.

Credit

Miguel Grinberg's Flask Mega-Tutorial

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc