A Python implementation of the Shadowflake UXID format!
Project description
Shadowflake
Shadowflake — A high-volume-safe, order-preserving identifier.
Say hello to Shadowflake, the first of the UXID (Universal Extended Identity Descriptor) family!
What is a UXID?
UXIDs are a new system of identifiers, they are similar to UUIDs but allow extra descriptive information.
Shadowflake does this by behaving primarily as a universally unique, sortable identifier, but allowing you to optionally provide extra descriptive data.
What are Shadowflake's features?
Shadowflake acts as a universally unique identifier, which means it
- has a very large amount of possible values (298, to be exact),
- and is safe to use in decentralised systems.
But, Shadowflake has benefits over normal universally unique identifiers, too! Shadowflake is:
- lexicographically sortable,
- safe to expose publicly (it reveals near zero security-damaging information),
- and is chronologically sortable (up to 24 hours into the past).
How are Shadowflakes structured?
Shadowflakes consist of two main segments, the "core" and the "tail".
All fields of Shadowflakes are encoded with Crockford Base32.
The overall format of a Shadowflake is [SEQUENCE][MILLISECOND][ENTROPY][CORE CHECK SYMBOL]$[SYSTEM].[NODE].[ID]. Everything after the core check symbol is optional, but may be either all present or not present at all. Despite the separators in the tail, the fields are fixed length and may not be any smaller or longer than is standardised. The core check symbol is computed according to the algorithm specified as part of Crockford Base32.
For the exact details of each part of the Shadowflake, see below:
The core
| Field | Bits | Range / Size | Description |
|---|---|---|---|
| Sequence | 17 | 0–86,399 | Rolling counter representing seconds since the anchor time, wrapping every 24 hours. |
| Millisecond | 10 | 0–999 | Sub-second counter incremented every millisecond. |
| Entropy | 98 | 298 possible values | Cryptographically secure random data used to prevent collisions. |
The tail
| Field | Type | Bits | Base32 Chars | Description |
|---|---|---|---|---|
| System | ASCII | 80 | 16 | Logical system or protocol name. ASCII text encoded as bytes. (Max 10 characters) |
| Node | ASCII | 80 | 16 | Subsystem, node, or instance identifier. ASCII text encoded as bytes. (Max 10 characters) |
| ID | Integer | 30 | 6 | Application-specific numeric identifier. Encoded as an unsigned integer. |
How do I install Shadowflake?
Shadowflake provides two methods of use, as a library in Python code, and as a standalone program. The standalone program is usable interactively, or as a simple CLI tool. If you want a nice, formatted interactive experience, install Shadowflake with the fancy extra.
The standalone program is usable without [fancy], it will just be a bit more ugly.
If you want more info on the standalone program, run shadowflake --help.
With pip
pip install shadowflake
With uv
uv add shadowflake
or
uv pip install shadowflake
Usage
As a library
from shadowflake import Shadowflake
# Generate a simple Shadowflake
uuid = Shadowflake.generate()
print(uuid) # e.g., "01234ABCDEFGHJKMNPQRSTV5"
# Generate with metadata
uuid = Shadowflake.generate(
system="AUTH",
node="API-01",
id=12345
)
print(uuid) # e.g., "01234ABCDEFGHJKMNPQRSTV5$..."
# Decode a Shadowflake
result = Shadowflake.decode(uuid)
print(result)
As a CLI tool
shadowflake generate
# ═══════════════════════════════════════════════════════════
# Generated Shadowflake
# ═══════════════════════════════════════════════════════════
# 01G2XKMNPQRSTVWXYZ34567890AB
# ═══════════════════════════════════════════════════════════
shadowflake decode 01G2XKMNPQRSTVWXYZ34567890AB
# ═══════════════════════════════════════════════════════════
# Decoded Shadowflake
# ═══════════════════════════════════════════════════════════
# sequence: 45123
# millisecond: 456
# entropy: 123456789012345678901234567890
# system: None
# node: None
# id: None
# valid: True
# ═══════════════════════════════════════════════════════════
License
Copyright (C) 2026 ItsThatOneJack
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file shadowflake-1.0.0.tar.gz.
File metadata
- Download URL: shadowflake-1.0.0.tar.gz
- Upload date:
- Size: 24.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97759a23be013abd8ea0ac91e63cfbde8d75894cbb2eee9def928b864bfd1e9a
|
|
| MD5 |
66352f72ea01b688ba6459924a82f127
|
|
| BLAKE2b-256 |
8678ff285975d55d26d47273f554325cfa057072795a46f2aa42a4fa87954ba7
|
File details
Details for the file shadowflake-1.0.0-py3-none-any.whl.
File metadata
- Download URL: shadowflake-1.0.0-py3-none-any.whl
- Upload date:
- Size: 22.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d03c839b23a811b5cab657ef7c1ad1561e9042e288319c7e6dd27df404f1de1
|
|
| MD5 |
6ee8c514a98bee4f9350f37440d69975
|
|
| BLAKE2b-256 |
9c2553e1a9018a0468cb5880a13448e9df6dbb872f178f6bd79b989792f56aa8
|