Sonyflake is a distributed unique ID generator inspired by Twitter's Snowflake.
This project is a Python implementation inspired by the original sony/sonyflake project, written in Go.
Sonyflake focuses on lifetime and performance on many host/core environment. So it has a different bit assignment from Snowflake. By default, a Sonyflake ID is composed of:
- 39 bits for time in units of 10 msec
- 8 bits for a sequence number
- 16 bits for a machine id
As a result, Sonyflake has the following advantages and disadvantages:
- The lifetime (174 years) is longer than that of Snowflake (69 years)
- It can work in more distributed machines (2^16) than Snowflake (2^10)
- It can generate 2^8 IDs per 10 msec at most in a single instance (fewer than Snowflake)
However, if you want more generation rate in a single host, you can easily run multiple Sonyflake instances using threads or asyncio tasks.
In addition, you can adjust the lifetime and generation rate of Sonyflake by customizing the bit assignment and the time unit.
Python 3.11 or higher is required
# Linux/macOS
python -m pip install -U sonyflake
# Windows
py -3 -m pip install -U sonyflake# Linux/macOS
python -m pip install -U "sonyflake @ git+https://github.com/iyad-f/sonyflake"
# Windows
py -3 -m pip install -U "sonyflake @ git+https://github.com/iyad-f/sonyflake"You can configure Sonyflake with the following options:
bits_sequenceis the bit length of a sequence number. If bits_sequence is not provided, the default bit length is used, which is 8. If bits_sequence is 31 or more, an error is raised.bits_machine_idis the bit length of a machine ID. If bits_machine_id is not provided, the default bit length is used, which is 16. If bits_machine_id is 31 or more, an error is raised.time_unitis the time unit of Sonyflake. If time_unit is not provided, the default time unit is used, which is 10 msec. If time_unit is less than a millisecond, an error is raised.start_timeis the time since which the Sonyflake time is defined as the elapsed time. If start_time is not before the current time, an error is raised.machine_idis the unique ID of a Sonyflake instance. If machine_id is not provided, the default machine_id is used, which is the lower 16 bits of the private IP address.check_machine_idvalidates the uniqueness of a machine ID. If check_machine_id returns false, an error is raised. If check_machine_id is not provided, no validation is done.
The bit length of time is calculated by 63 - bits_sequence - bits_machine_id.
If it is less than 32, an error is raised.
To obtain a new unique ID, use the next_id or next_id_async methods depending on whether you
are in a synchronous or asynchronous environment.
import datetime
from sonyflake import Sonyflake
start_time = datetime.datetime(2025, 1, 1, 0, 0, 0, 0, datetime.UTC)
sf = Sonyflake(start_time=start_time)
next_id = sf.next_id()
print(next_id)import asyncio
import datetime
from sonyflake import Sonyflake
async def main() -> None:
start_time = datetime.datetime(2025, 1, 1, 0, 0, 0, 0, datetime.UTC)
sf = Sonyflake(start_time=start_time)
next_id = await sf.next_id_async()
print(next_id)
asyncio.run(main())next_id or next_id_async can continue to generate IDs for about 174 years from start_time by default.
But after the Sonyflake time is over the limit, next_id raises an error.
Examples can be found in the examples directory
Send a DM on discord at iyad8888.