Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prajwalpd7/password-generator
https://github.com/prajwalpd7/password-generator
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/prajwalpd7/password-generator
- Owner: prajwalpd7
- Created: 2022-12-30T08:18:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-30T08:20:53.000Z (almost 2 years ago)
- Last Synced: 2023-07-13T12:25:25.179Z (over 1 year ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Password-Generator
# Password Generator
This project contains a simple script that generates random passwords of a specified length. The passwords are generated using a combination of letters, numbers, and special characters.
## Getting Started
To use the password generator, you will need to have Python installed on your computer. You can then clone or download the repository and run the script using the following command:
$ python password_generator.py
The script will prompt you to enter the desired length of the password, and it will output the generated password.
## Customizing the Password Generation
You can customize the types of characters that are included in the generated passwords by modifying the `characters` string in the script. For example, to only include lowercase letters and numbers, you can set `characters` to `'abcdefghijklmnopqrstuvwxyz0123456789'`.
You can also customize the password generation process by modifying the `generate_password` function. For example, you could add additional checks to ensure that the generated password meets certain criteria, such as including at least one uppercase letter and one special character.