Skip to content

A modular user registration and login API for Flask with pyntree because I got tired of writing new ones

License

Notifications You must be signed in to change notification settings

jvadair/registrationAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

registrationAPI

A modular user registration and login API designed for Flask because I got tired of writing new ones

Example usage

from registrationAPI import registration_api


x = registration_api.API()

token = x.register("jvadair", "[email protected]", "password")
x.verify(token)
session = {}  # <-- Use flask's session object, this is for demonstration
resp = x.login(session, "jvadair", "password")  # Will return a redirect or error message

Prerequisites

For email verification:

  1. You must create templates/email/verify.html in Jinja format for your application. It can utilize two variables: token and unsub_id.
  2. You must set the following parameters in the config.json file for your application:
SMTP_EMAIL:    str
SMTP_ENVPASS:  str  (the name of the environment variable holding the password)
SMTP_SERVER:   str
SMTP_PORT:     int

About

A modular user registration and login API for Flask with pyntree because I got tired of writing new ones

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages