EasyFlake is a Python package for generating 64-bit IDs similar to Snowflake or Sonyflake.
Project description
EasyFlake
EasyFlake is a Python package for generating 64-bit IDs similar to Snowflake or Sonyflake. It provides a simple way to generate unique and sortable IDs that can be used as primary keys in databases, message queue messages, or other distributed systems.
Installation
Install the latest version of EasyFlake using pip:
pip install easyflake
Usage
To use EasyFlake, simply create an instance of the EasyFlake
class, passing in a unique node ID:
from easyflake import EasyFlake
ef = EasyFlake(node_id=1)
print(ef.get_id())
The get_id()
method generates the next ID by the current timestamp. You can customize the number of bits used for the node ID and sequence ID parts, as well as the epoch timestamp and time scale.
ef = EasyFlake(node_id=0, node_id_bits=4, sequence_bits=6)
print(ef.get_id())
Arguments
node_id
(int): A unique ID for the current node. This ID should be between 0 and (2 ^ node_id_bits) - 1, wherenode_id_bits
is an optional argument that defaults to 8.node_id_bits
(int, optional): The maximum number of bits used to represent the node ID. This argument defaults to 8.sequence_bits
(int, optional): The maximum number of bits used to represent the sequence number. This argument defaults to 10.epoch
(float, optional): A timestamp used as a reference when generating the timestamp section of the ID. This argument defaults to 1675859040(2023-02-08T12:24:00Z).time_scale
(int, optional): The number of decimal places used to represent the timestamp. This argument defaults to 3(milliseconds).
License
This project is licensed under the MIT License - see the LICENSE file for details.
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
File details
Details for the file easyflake-0.0.2.tar.gz
.
File metadata
- Download URL: easyflake-0.0.2.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.10.6 Linux/5.15.0-60-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cb19d55d4f87027bbe3263b5c86b0d7b10411b6abaa4dd52d9fdc5daa8385cc |
|
MD5 | 7aee4f5b47702689de5d42e8a99659eb |
|
BLAKE2b-256 | 860ceb15c8afd38446672e4e06bac11305eca14731c7f8be5dd4f35951c97e69 |
File details
Details for the file easyflake-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: easyflake-0.0.2-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.10.6 Linux/5.15.0-60-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7977bb255d0cc3509f865e8c4c6d86c44a66e89abfc7d68a48cf382c81571ec8 |
|
MD5 | 2db3994092562433eb0c29905c719940 |
|
BLAKE2b-256 | 22654cadbc11e656593ac2192af415ef640e96133d21280e4f9edcc6803af420 |