Metadata-Version: 2.1
Name: SLYLogin
Version: 0.3.5
Summary: UNKNOWN
Home-page: UNKNOWN
Author: Hayden Cunningham
Author-email: HaydenCunningham5@gmail.com
License: MIT
Keywords: Login
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
License-File: LICENCE.txt

SLYLogin is a simple library developed to help developers implement logging in, registering, viewing accounts and generating passwords. To use the library you must use import SlyLogin. Syntax - SlyLogin.login(username, password, accountsFile) and returns a boolean if the username and password are a match to the data in the accounts file. SlyLogin.register(username, password, accountsFile) appends username and password to the accountsFile. SlyLogin.viewAccounts(loggedIn, accountsFile) takes a boolean and accountsFile and displays the contents of the accountsFile if boolean is true. SlyLogin.genPassword(passwordLength) returns the generated password to the determined passwordLength.

