https://github.com/jeanextreme002/locker
:closed_lock_with_key: Application created in Python 3 to protect folders and files in a specific directory on Windows OS.
https://github.com/jeanextreme002/locker
folder locker protect python3 windows
Last synced: about 1 year ago
JSON representation
:closed_lock_with_key: Application created in Python 3 to protect folders and files in a specific directory on Windows OS.
- Host: GitHub
- URL: https://github.com/jeanextreme002/locker
- Owner: JeanExtreme002
- License: bsd-3-clause
- Created: 2021-01-28T03:40:41.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-29T21:17:16.000Z (about 5 years ago)
- Last Synced: 2025-01-06T08:21:10.082Z (about 1 year ago)
- Topics: folder, locker, protect, python3, windows
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Locker
Application created in Python 3 to protect folders and files in a specific directory on **Windows OS**.
# Getting Started
Install all dependencies using the command below on the terminal:
```
$ pip install -r requirements.txt
```
To create an executable, install the [PyInstaller](https://pypi.org/project/pyinstaller/) package and run the command below:
```
$ pyinstaller app.py -F
```
# Basic Usage:
**1.** Register your password.
```
$ app.py
```
**2.** Using the argument `-r`, register the directory you want to lock and a namespace for it.
```
$ app.py -r ""
```
**3.** To lock the folder, enter your password and directory namespace using the argument `-l`.
```
$ app.py -l
```
**4.** Use the argument `-u` to unlock the folder.
```
$ app.py -u
```
Type `app.py -h` in terminal for more information about the program.