https://github.com/tomfaulkner/uuid
Uuid and fake uuid generator scripts
https://github.com/tomfaulkner/uuid
Last synced: 3 months ago
JSON representation
Uuid and fake uuid generator scripts
- Host: GitHub
- URL: https://github.com/tomfaulkner/uuid
- Owner: TomFaulkner
- Created: 2019-06-17T22:03:47.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-17T22:10:21.000Z (almost 6 years ago)
- Last Synced: 2025-01-01T06:27:16.153Z (5 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A couple Python scripts to quickly generate UUIDs or fake UUIDs with descriptive names.
# gen_uuid.py Usage:
```
python3 gen_uuid.py x
```
Replace `x` with an integer to get that many UUIDs.# uuid-replacer.py
```
python3 uuid-replacer.py DescName x y
```
Replace `DescName` with an exactly eight character string.Replace `x` with starting fake UUID number.
Replace `y` with how many fake UUIDs you want.
Requires Python 3.6+