https://github.com/deceptionfalls/uzume
Small Python script to generate random passwords, supports generating passwords with numbers, symbols and uppercase letters.
https://github.com/deceptionfalls/uzume
python python-script shellscript
Last synced: 10 months ago
JSON representation
Small Python script to generate random passwords, supports generating passwords with numbers, symbols and uppercase letters.
- Host: GitHub
- URL: https://github.com/deceptionfalls/uzume
- Owner: deceptionfalls
- Created: 2023-09-26T21:46:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-27T17:25:03.000Z (over 2 years ago)
- Last Synced: 2025-02-01T23:27:07.902Z (11 months ago)
- Topics: python, python-script, shellscript
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Uzume
Small Python script to generate random passwords, supports generating passwords with numbers, symbols and uppercase letters.
### Installation
This moves uzume to your `~/.local/bin` directory so you can use the script as a command:
```
git clone https://github.com/tsukki9696/uzume
cd uzume
chmod a+x uzume
cp uzume ~/.local/bin
```
### Usage
```
usage: uzume [-h] [-u] [-n] [-s] [length]
positional arguments:
length Length of the generated password. Defaults to 10
options:
-h, --help show this help message and exit
-u, --uppercase Include uppercase letters
-n, --numbers Include numbers
-s, --symbols Include symbols
```
You can pass multiple arguments as once:
```
uzume -nsu
```
`length` is a positional argument and can be called just by specifying a number, if not specified, defaults to 10:
```
uzume -nsu 30
3yg0%&gs)PTmoby!9YqvB>FxVNJN+
```