Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 orderid

order_id = orderid.orderid() # 15651676055260064963218265906703
```