Skip to content

AnonymousCodes911/Password-safe-using-python-and-SQL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Password-Safe-Using-Python-and-SQL

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”

INSTALLATION GUIDE

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 :

creating table

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.

  1. Add Comments to the same lines,

creating table

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.

Note: Colour scheme may vary in MacOS image image image image image image image

image

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages