https://github.com/imshawan/passwordgenerator
A random password generator capable of generating large amounts of cryptographically-secure random passwords
https://github.com/imshawan/passwordgenerator
password password-generator passwordgenerator passwords
Last synced: about 1 month ago
JSON representation
A random password generator capable of generating large amounts of cryptographically-secure random passwords
- Host: GitHub
- URL: https://github.com/imshawan/passwordgenerator
- Owner: imshawan
- License: mit
- Created: 2020-12-08T14:46:07.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-08T15:13:43.000Z (over 4 years ago)
- Last Synced: 2025-01-23T13:43:53.540Z (3 months ago)
- Topics: password, password-generator, passwordgenerator, passwords
- Language: Python
- Homepage: https://im-shawan.github.io/site/passwordgen.html
- Size: 236 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# passwordGenerator
passwordGenerator is a random password generator capable of generating large amounts of cryptographically-secure random passwords in three categories i.e. Alphabetic (A-Z, a-z), Alphanumeric (A-Z, a-z, 0-9) and Mixed Sequence Character passwords (A-Z, a-z, 0-9 and special characters/symbols)
## Requirements
Used modules:
```bash
import random # for generating random passwords
import sys # sys.exit() for exiting the program
from hashlib import sha256 #for password hash
from tkinter import * # for GUI
from tkinter import Text
import tkinter as tk
from tkinter.ttk import Combobox
from tkinter import messagebox
from datetime import datetime # for getting date time
```
## Note:
Install the font "AdobeClean-Bold.ttf" from the script folder before use## Usage
Just run the main program and you can generate random passwords...!
## License
[MIT](https://choosealicense.com/licenses/mit/)