An easy python module to make a folder locker.
Project description
#Code import maskpass import base64 from colorama import Fore, init import time import os from tkinter import * init() tk=Tk() print("If you want to lock a hidden folder, It is highly recommended to hide the folder using command prompt. See the tutorial here : https://bit.ly/3Iazjpb") time.sleep(3) print("\n\nYou can also use this app to open URLs that you want. These URLs will be opened in your default browser.") time.sleep(3) a = int(input("\n\nIf you already know this step enter 1 and if not (It is highly recommended to complete first step): ")) if a == 1:
lockedDirectory = input("Enter your directory which is locked (Case sensetive, copy and paste the path): ")
dict = {'Arjun': b'cmFodWw=',
'Hrishikesh': b'U2FuZGVlcA=='}
def signUp():
print("\n===========Create Account============")
name = input("Username : ")
pwd = maskpass.askpass("Password : ")
encpwd = base64.b64encode(pwd.encode("utf-8"))
dict[name] = encpwd
def logIn():
while True:
print(Fore.RESET + "\n\n============Login Page==============")
name = input("Username : ")
pwd = maskpass.askpass("Password : ")
encpwd = base64.b64encode(pwd.encode("utf-8"))
password = dict[name]
if(encpwd == password):
print("Please wait while we are checking the login info...")
time.sleep(3)
print(Fore.GREEN + "Successfully logged in.")
print("Here you are!")
os.startfile(lockedDirectory)
exit()
else:
print("Please wait while we are checking the login info...")
time.sleep(3)
print(Fore.RED + "Login Failed. Please try again in 3 seconds. (This is done to prevent Brute Forcing)")
time.sleep(3)
signUp()
logIn()
elif a == 2: print("\n\nYou are not allowed to use this app unless you see that video tutorial.\n\n")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file folder_locker_python-2023.25.1.tar.gz
.
File metadata
- Download URL: folder_locker_python-2023.25.1.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ff282bfa9313636a434b43943096fcbdd28b72f55e0296349da6e289612fb66 |
|
MD5 | 2f5e2064f909a1ebab084c175b406a9a |
|
BLAKE2b-256 | 2330c8b9df47f3380e1c5538064cbef2e10b442d3484820e07dc04652c62fdab |
File details
Details for the file folder_locker_python-2023.25.1-py3-none-any.whl
.
File metadata
- Download URL: folder_locker_python-2023.25.1-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de698784a86d8af314a692990b6f7e24d3f4b66dd8907b914af3ad677871da5b |
|
MD5 | e484553961dd594cae35fcafc366b47e |
|
BLAKE2b-256 | b899b1c8b1dff2055ac3a7d8e2e54f01083e94d7d42d1aac48171973cc33ae4d |