ONE ID and ID.EGOV.UZ

from one_id import OneID one_id = OneID(username=’my_username’, password=’my_password’) user = one_id.get_user(‘code’, ‘https://my_domain.com/?login=one_id’) if ‘error’ in user: print(user) print(user) GitHub https://github.com/begyy/id.egov.uz    

Read more

A medium-security python password manager that encrypts passwords

Pass Lock AES-encrypted-password-managerA medium security python password manager that encrypt passwords using Advanced Encryption Standard (AES) PassLock is a password manager and password generator that encrypts passwords using AES and save them securely on your local machine. The password is encrypted and decrypted with a 32-bit key embedded in the master password and will get updated with each use. So extending the length of the master password will steadily improve the overall security and key length. PassLock also generates a […]

Read more

Quickly fetch your WiFi password and generate a QR code in python

wifi-password Quickly fetch your WiFi password and if needed, generate a QR code of your WiFi to allow phones to easily connect. Works on macOS and Linux, Windows Installation Install using pip $ python3 -m pip install –user wifi-password Install using git $ git clone https://github.com/sdushantha/wifi-password $ cd wifi-password $ python3 setup.py install Install using the AUR $ sudo pamac build wifi-password Usage $ wifi-password –help usage: wifi_password [options] optional arguments: -h, –help show this help message and exit –show-qr, […]

Read more

Create a password trought the command line with python

password_generator Password Generator allow you to create a password trough your terminal. Install Requirement pip install requirements.txt make sure to be in the parent folder and to have a virtual envrionment Usage Use without interactive command line interface python app/password_generator.py [password lenght] #if you are in the parent folder python password_generator.py [password lenght] #if you are in the app folder passowrd_generator.py [password lenght] #if you are in the app folder Use with interactive command line interface python app/password_generator.py #if you […]

Read more
1 2