Locksly is my second pyside project and was originally created to learn pyside (qt for python)
I realized Locksly might be useful so I decided to continue in hopes of making it a great choice for a local free open source password manager
currently Locksly is small, I want to expand Locksly and add features such as a browser extension for autofill, different types of passwords and much more!
Fixed issue where the copy and view icons wouldnt display Started work on a delete button
Building Locksly is fairly easy, you can run the app by running main.py with python for example python main.py
You can also build an executable (.exe) for distribution, you will need pyinstaller installed there are two ways of doing this, 1 you can run the spec in the main Locksly folder pyinstaller main.spec
2 you can build it directly by running pyinstaller main.py --onefile --windowed --collect-all PySide6 --collect-data desktop_notifier --hidden-import desktop_notifier.resources --clean method 1 is recommended