List of Simple Applications using Python
Programs Prerequisite
Add this following command:
pip install pyfiglet (For Hangman)
pip install pyperclip (For Password Gen)
Running the Hangman Game
cd Hangman/
python hangman.py
Note: should include the candidate_words.txt upon running the app
Running the Cipher App
cd EncryptionProgram/
python cipher_app.py
Running the Password Generator
cd PasswordGenerator/
python password_generator_app.py
Prerequisite for Addressbook
SQL Knowledge for setting up
(1) Must have Mysql
(2) Required Table:
|__Fields____ |_____Type___ |
|ID |int |
|firstName |varchar(255) |
|middleInitial|varchar(2) |
|lastName |varchar(255) |
|address |varchar(255) |
(3) Change the credential under
./AddressBook/address_book_db.py
locate Class AddressBookDB()
locate __init__ function
change the root password (****) to your appropriate password
Running the Addressbook
cd AddressBook/
python address_book_app.py