Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kourva/getuuid
Get both version1 or version4 UUID from https://www.uuidgenerator.net
https://github.com/kourva/getuuid
proxy python uuid uuid-generator uuid-v1 uuid-v4 vless vmess
Last synced: 3 months ago
JSON representation
Get both version1 or version4 UUID from https://www.uuidgenerator.net
- Host: GitHub
- URL: https://github.com/kourva/getuuid
- Owner: Kourva
- Created: 2023-02-05T01:58:30.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-25T15:02:53.000Z (5 months ago)
- Last Synced: 2024-10-15T06:36:37.379Z (3 months ago)
- Topics: proxy, python, uuid, uuid-generator, uuid-v1, uuid-v4, vless, vmess
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# getUUID
Get both version1 or version4 UUID from [uuidgenerator](https://www.uuidgenerator.net)
+ This tool helps you to get free UUID for your proxies like `vmess` and `vless`#### What is a Version 1 UUID?
A Version 1 UUID is a universally unique identifier that
is generated using a timestamp and the MAC address of
the computer on which it was generated.#### What is a version 4 UUID?
A Version 4 UUID is a universally unique identifier that
is generated using random numbers, using a secure random
number generator.# Installatrion
+ clone
```bash
https://github.com/Kourva/getUUID && cd getUUID
```
+ requirements
```bash
pip install beautifulsoup4, requests
```
+ usage
```bash
Help: python getUUID.py [[-h] [-v1] [-v4]]
-h : Show this message and exit.
-v1 : get version 1 UUID
-v4 : get version 4 UUID
```
+ example
```bash
python getUUID.py -v1 -v4result:
Version1 UUID: 913860b6-a4f9-11ed-b9df-0242ac120003
Version4 UUID: 2060577b-49d1-49e3-97f0-d6ec9a5218fd
```