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.