A repo for my python practice code. I'll try to add a new short project each week
Week 1 is a km to miles converter that automatically detects the typed units and converts to give a result. So if a user types 1km the code will detect km and convert to miles. This helps with user experience by giving the user a result in fewer actions.
Week 2 is a text editor that allows a user to either count the number of times a word appears in a piece of text, or (2) to replace all appearances of a specific word with a new one.
Week 3 is a password manager after a long break, file 3 is a simple password manager that uses 1 master password to encrypt/decrypt stored account passwords. Included is also a feature that allows either using a random password generator or to manually type-in a password. Requires cryptography, also remember to uncomment writeKey()