https://github.com/roycuadra/password-generator
https://github.com/roycuadra/password-generator
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/roycuadra/password-generator
- Owner: roycuadra
- License: mit
- Created: 2023-05-01T05:14:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-01T17:19:13.000Z (almost 2 years ago)
- Last Synced: 2025-01-18T09:43:14.680Z (3 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Password Generator using Python
This is a simple password generator script that can be used to generate strong and secure passwords using Python. It generates random passwords of specified length with a combination of letters, digits, and symbols.
## Usage
To use this password generator, follow these steps:
1. Clone the repository using `git clone https://github.com/roycuadra/Password-Generator.git`.
2. Navigate to the cloned directory using `cd password-generator`.
3. Run the script using `python password_generator.py`.
4. Enter the desired password length when prompted.
5. The script will generate a random password and display it on the console.## Customization
By default, the password generator generates passwords with a length of 12 characters. However, you can customize the length by modifying the `LENGTH` constant in the `password_generator.py` file.
You can also modify the characters that are used to generate the password by changing the `CHARS` string in the same file. By default, the string includes uppercase and lowercase letters, digits, and symbols.
## License
This password generator script is licensed under the MIT License. Feel free to use it for any purpose.