https://github.com/tusharnankani/pythonpasswordgenerator
Python Library Functions like string & random.
https://github.com/tusharnankani/pythonpasswordgenerator
library password password-generator python python-library random string
Last synced: 8 months ago
JSON representation
Python Library Functions like string & random.
- Host: GitHub
- URL: https://github.com/tusharnankani/pythonpasswordgenerator
- Owner: tusharnankani
- Created: 2020-08-04T19:27:49.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-06T10:15:07.000Z (almost 6 years ago)
- Last Synced: 2025-03-31T15:35:57.048Z (about 1 year ago)
- Topics: library, password, password-generator, python, python-library, random, string
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Password Generator
##### THIS SIMPLE PROJECT WAS MADE TO LEARN PYTHON LIBRARY FUNCTIONS LIKE `string` & `random`.
* `string.ascii_letters`
- The concatenation of the ascii_lowercase and ascii_uppercase constants described below. This value is not locale-dependent.
* `string.ascii_lowercase`
- The lowercase letters abcdefghijklmnopqrstuvwxyz. This value is not locale-dependent and will not change.
* `string.ascii_uppercase`
- The uppercase letters ABCDEFGHIJKLMNOPQRSTUVWXYZ. This value is not locale-dependent and will not change.
* `string.digits`
- The string 0123456789.
* `string.hexdigits`
- The string 0123456789abcdefABCDEF.
* `string.octdigits`
The string 01234567.
* `string.punctuation`
- String of ASCII characters which are considered punctuation characters in the C locale: `!"#$%&'()*+,-./:;<=>?@[\]^_{|}~`
### To run it on your PC:
* Make sure you have Python 3.7.x or Python 3.8.x installed, if not, click [here](https://www.python.org/downloads/) to install!
* Clone this into your Desktop: `git clone "https://github.com/tusharnankani/PythonPasswordGenerator"`
* Open Command Line or Terminal
* Change directory to a respective game: `cd "Desktop\PythonPasswordGenerator"`
* Run: `python python-password-generator.py`