With our ever increasing demand and dependence on the internet, various threats that are convoluted with it , We need to be secured and have safer access to the Internet!, which requires us to put more and more complex and unique passwords which makes it difficult to remember all of them with accuracy and hence comes a need of the password management system that does all that for you, saving the passwords at your local system away from all the internet thieves , So to play our part as a responsible student , we saw a problem and tried rectifying it with our novel idea “CredSafe”
This program doesn’t require any external libraries apart from sql_lite3 Command to install the same is :
Open Command Prompt type in pip install db-sqlite3 it will automatically install if required or will upgrade to the latest version.
When you will first run the program at your local system it will first show a runtime error that can be easily dealt with the following steps:
To initially create the tables that will be storing your data, Open the source code , delete the comments of lines :
Line 19 ''' c.execute("CREATE TABLE mailpass (acc text, email text, user text, pass text)") ''' con_mail = sqlite3.connect('login_system.db') # password in the begining
c_mail = con_mail.cursor() Line 27
''' c_mail.execute("CREATE TABLE mainlogin (login text)") '''
After deleting the comments , run the program.
- Add Comments to the same lines,
Line 19 ''' c.execute("CREATE TABLE mailpass (acc text, email text, user text, pass text)") ''' con_mail = sqlite3.connect('login_system.db') # password in the begining
c_mail = con_mail.cursor() Line 27
''' c_mail.execute("CREATE TABLE mainlogin (login text)") '''
The program should be working now.