Metadata-Version: 2.2
Name: localuserdb
Version: 0.3.0
Summary: A user management module for Python
Author: Aksh Tiwari
Author-email: akshprooo@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# LocalUserDB

This is a simple python package which just uses a local txt file to store user info for your python code..

# Functions

 - `createUser()`
    Takes only 3 Arguments - "username(unique for every user), FullName(can be same for different users.) & e-mail"

 - `findUser()`
    Takes only 1 argument - "username(as it is unique for every user.)"

 - `deleteUser()`
    Takes only 1 argument - "username(as it is unique for every user.)"

 - `verifyUser()`
    Takes only 3 arguments - "username, sender's mail(google), sender's mail-password(google)"
     - this feature verifies the user using an otp function.. which will be sent to the mail registered to the account when creating it.

# For Future

Features like user credentials editing will be added and examples about how to use this package will be made public on my github - (`https://github.com/akshprooo`)
