cuid.py
Implementation of https://github.com/ericelliott/cuid in Python.
A cuid is a portable and sequentially-ordered unique identifier designed for
horizontal scalability and speed -- this version is ported from the reference
implementation in Javascript.
NOTE: Particularly if you have security concerns, the cuid standard has been deprecated in favor of cuid2!
Tested on CPython 2.7, 3.6-3.11 as well as PyPy & PyPy3.
Rough benchmarks on my machine (i7-8750H CPU @ 2.20GHz) using setup.py bench
(which times the creation of 1 million cuids):
| Version | ns / cuid |
|---|---|
| CPython 3.7.3 | 6095.257 |
| CPython 3.6.8 | 6846.050 |
| CPython 3.5.6 | 6604.012 |
| CPython 2.7.16 | 6913.681 |
| PyPy 7.1.1 (Python 2.7.13) | 326.344 |
| PyPy3 7.1.1 (Python 3.6.1) | 562.673 |
(Note that timing the creation of fewer IDs changes the way PyPy runs the code, because of JIT warmup -- obviously creating this many IDs takes advantage of the warmed JIT)
For now, this has no dependencies outside the standard library -- in time this may change, to provide better random numbers and / or performance.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file cuid-0.4.tar.gz.
File metadata
- Download URL: cuid-0.4.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74eaba154916a2240405c3631acee708c263ef8fa05a86820b87d0f59f84e978
|
|
| MD5 |
ec69f53df5fc71ee685e9f90c8bf6a5c
|
|
| BLAKE2b-256 |
55cad323556e2bf9bfb63219fbb849ce61bb830cc42d1b25b91cde3815451b91
|