Skip to content

Commit 4315b9e

Browse files
author
mbrill-nt
committed
Added usage to readme, changed get_random_alphanumerical
1 parent 7dbb968 commit 4315b9e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pip install -r requirements.txt
1010
## Running the Script
1111
The script can be simply run with:
1212
```bash
13-
python run.py
13+
python run.py [-h] --config *path-to-config.yml* --bind *path-to-bind-csv* [--dry-run]
1414
```
1515

1616
## Usage

script/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def get_random_alphanumerical():
88
Creates a random alphanumerical string with a length of 16 characters.
99
:return: A random alphanumerical string with a length of 16 characters.
1010
"""
11-
return ''.join(random.choices(string.ascii_letters + string.digits, k=16))
11+
return ''.join(random.choice(string.ascii_uppercase + string.ascii_lowercase + string.digits) for _ in range(16))
1212

1313

1414
def lock():

0 commit comments

Comments
 (0)