Skip to main content

Easily generate meaningful & consistent UUID's without the excessive boilerplate normally required.

Project description

CustomUUID

CustomUUID is a versatile UUID generation library designed to create unique identifiers with optional embedded information such as dates or custom values. It's ideal for applications requiring unique IDs with additional embedded context.

Table of Contents

Introduction

CustomUUID provides a flexible way to generate UUIDs (Universally Unique Identifiers) with optional embedding of dates, application-specific IDs, or other relevant data. It supports various customization levels, from simple UUIDs to complex ones containing multiple data types.

Features

  • Standard UUID Generation: Generate regular UUIDs compliant with RFC 4122.
  • Date Embedding: Option to embed the current date into the UUID for temporal context.
  • Custom Value Embedding: Embed up to three custom values into the UUID for additional context.
  • Length Management: Automatically handles the length of UUIDs to ensure they stay within standard limits.
  • Predefined Templates: Includes several template functions for common use cases, facilitating ease of use.

Installation

To install CustomUUID, run the following command:

pip install customuuid

Usage

Basic usage example:

from customuuid import create_uuid

# Generate a standard UUID
uuid = create_uuid()
print(uuid)

Advanced usage with custom values:

from customuuid import create_custom_uuid

# Generate a UUID with custom values
uuid = create_custom_uuid(include_date=True, custom_values=["app_id", "user_id"])
print(uuid)

Configuration

CustomUUID allows various configurations to tailor the UUID generation to your specific needs. Refer to the documentation for detailed configuration options.

License

CustomUUID is licensed under the MIT License.

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

custom_uuid-0.1.0.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

custom_uuid-0.1.0-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

Supported by

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