Skip to main content

scuid is a lightweight Python library for generating collision-resistant IDs optimized for horizontal scaling and high performance. It serves as a slim, alternative implementation of cuid with added flexibility for customization, including support for custom random number generators.

Project description

scuid

PyPI License Downloads

scuid is a lightweight Python library for generating collision-resistant IDs optimized for horizontal scaling and high performance. It serves as a slim, alternative implementation of cuid with added flexibility for customization, including support for custom random number generators.

Whether you're building distributed systems or need compact, unique identifiers, scuid offers a simple and efficient solution.

It is a reference port of the scuid source code for Node.js

Why Use scuid?

  • Compact and Unique: Generates small, collision-resistant IDs suitable for distributed systems.
  • Customizable: Supports custom random number generators and configurable options for maximum flexibility.
  • Lightweight and Fast: Designed for performance without unnecessary dependencies.

For more information or to contribute, visit the GitHub repository.

Installation

Install scuid using pip:

pip install scuid

Quick Start

Generate a Unique ID

Create a unique identifier with just one line:

from scuid import scuid

id = scuid()
print(id)
# Example output: 'ciux3hs0x0000io10cusdm8r2'

Generate a Compact Slug

Slugs are shorter representations suitable for use in URLs or filenames:

from scuid import slug

slug_value = slug()
print(slug_value)
# Example output: '6x1i0r0'

Get the Process Fingerprint

The fingerprint represents the process and machine where the ID was generated:

from scuid import fingerprint

fp = fingerprint()
print(fp)
# Example output: 'io10'

Advanced Usage

Customize the Random Number Generator (RNG)

You can provide a custom random number generator by implementing a random() method:

from scuid import Scuid

class CustomRNG:
    def random(self):
        return 0.5  # Always returns 0.5 for demonstration purposes

custom_scuid = Scuid({"rng": CustomRNG().random})
id = custom_scuid.id()
print(id)

Configure Custom Options

You can customize the ID generation process to fit your requirements. Note that altering these options may affect compatibility with the default cuid behavior.

from scuid import Scuid

custom_scuid = Scuid({
    "prefix": "c",              # Prefix for generated IDs
    "base": 36,                 # Radix for encoding (supports 2-36)
    "blockSize": 4,             # Size of each padded block
    "fill": "0",                # Padding character
    "pid": 12345,               # Custom process ID
    "hostname": "customhost",   # Custom hostname
    "rng": lambda: 0.42,        # Custom RNG function
})

id = custom_scuid.id()
print(id)

Testing

To verify the correctness and collision resistance of scuid, you can run the included tests:

pytest

The tests simulate real-world scenarios with millions of iterations to ensure the reliability of generated IDs.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scuid-0.3.0.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scuid-0.3.0-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file scuid-0.3.0.tar.gz.

File metadata

  • Download URL: scuid-0.3.0.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for scuid-0.3.0.tar.gz
Algorithm Hash digest
SHA256 7c8fa97e6b9029c5ce7ae2781ff139d1ec02e7c75ae8a8ad5cfffdf569dafa17
MD5 0fd216bc391f2ae220899f7d8a2ce52b
BLAKE2b-256 d2d3ae117fc864b268d2f3b5736ca458948fcbff2eb35cb89cd0efb877205505

See more details on using hashes here.

Provenance

The following attestation bundles were made for scuid-0.3.0.tar.gz:

Publisher: release.yml on lh0x00/scuid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file scuid-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: scuid-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for scuid-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b081fc1bdbc8401701d3f1c61e25d84a0e031a502803ea9b57dd251a0acc3907
MD5 175c96312a66ff29144a30305763ae4e
BLAKE2b-256 83c87b1a5afc3d7c7edd808c1f2d5a138abff319d1be6e3086a820e679de12f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scuid-0.3.0-py3-none-any.whl:

Publisher: release.yml on lh0x00/scuid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page