Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elliotgao2/orderid
Short unique ordered ID generator.
https://github.com/elliotgao2/orderid
generator id
Last synced: about 4 hours ago
JSON representation
Short unique ordered ID generator.
- Host: GitHub
- URL: https://github.com/elliotgao2/orderid
- Owner: elliotgao2
- Created: 2019-08-07T09:01:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-07T09:03:15.000Z (over 5 years ago)
- Last Synced: 2024-11-14T17:52:14.315Z (5 days ago)
- Topics: generator, id
- Language: Python
- Size: 1000 Bytes
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OrderId
For orderid, transaction id, log id, etc.
- Short. 32 digit lengths.
- Unique. Any time any computer.
- Ordered. By time.## Installation
`pip install orderid`
## Usage
millisecond timestamp + threading uniq_id + process_time
```python
import orderidorder_id = orderid.orderid() # 15651676055260064963218265906703
```