Skip to content

muthugit/authit

Repository files navigation

authit

authit is the simple and light weight Identity platform

Installation

Install directly from PIP registry

pip install authit

Usage

Import package and initialize

import authit
auth = authit.connect()

To create user

auth.createUser(
    userName="user",
    password="password"
)

To authenticate user

validUser = auth.authenticate(
    userName="user",
    password="password"
)