Skip to main content

A flask extension that allows login via Beet app

Project description

Flask-Beet Extension

build status codecov

Flask-beet is a Flask extension for allow login (flask-security/flask-login) via signed messages and the Beet app.

The login requires a unique string to be signed and submitted. The signature is created with the memo key of an account on the BitShares Blockchain,

Installation

Install the extension with one of the following commands:

$ pip install flask_beet

Usage

Using Flask-Beet is fairly straightforward. Begin by importing the extension and then passing your application object back to the extension, like this:

from flask import Flask
from flask_beet import Beet
app = Flask(__name__)
beet = Beet(app)

You'll also need to extend your user model with the BeetMixin mixin:

from flask_beet import BeetMixin

# Replace
-class User(db.Model, UserMixin):

# with
+class User(db.Model, UserMixin, BeetMixin):

Documentation

The Sphinx-compiled documentation is available here: flask-beet.rtfd.io

Development

This tool uses semversioner to track changes. After changes, please use

semversioner add-change --type patch --description "Fix security vulnerability with authentication."

to track them.

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-Beet-0.0.2.tar.gz (5.2 kB view hashes)

Uploaded Source

Built Distribution

Flask_Beet-0.0.2-py3-none-any.whl (5.6 kB view hashes)

Uploaded Python 3

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