Skip to main content

Pyvider Cty Package - Core data types and serialization.

Project description

🐍🏗️ pyvider.cty

⚠️ PREVIEW RELEASE ⚠️

This is a preview release of pyvider.cty. While the core functionality is complete and well-tested, this release is intended for early adopters and feedback gathering. Please report any issues or suggestions.

Overview

pyvider.cty is a pure-Python implementation of the go-cty type system, providing strong type validation and serialization capabilities for configuration data. It's designed to work seamlessly with Terraform providers and other HashiCorp ecosystem tools.

Features

  • 🎯 Complete Type System: Primitives, collections, and structural types.
  • 🔄 Cross-Language Compatibility: Interoperates with go-cty via JSON and MessagePack.
  • 🛡️ Type Safety: Strong validation at value creation.
  • 🏷️ Marks System: Attach metadata without modifying values.
  • 🗺️ Path Navigation: Type-safe access to nested data.
  • Full Standard Library: A comprehensive suite of functions for data manipulation.

Installation

uv add pyvider-cty

Quick Start

from pyvider.cty import CtyObject, CtyString, CtyNumber, CtyList
from pyvider.cty.exceptions import CtyValidationError

# 1. Define a type schema for a user profile.
# 'age' is an optional attribute.
user_type = CtyObject(
    attribute_types={
        "name": CtyString(),
        "age": CtyNumber(),
        "hobbies": CtyList(element_type=CtyString())
    },
    optional_attributes={"age"}
)

# 2. Create raw Python data that matches the schema.
user_data = {
    "name": "Alice",
    "hobbies": ["reading", "hiking"]
}

# 3. Validate the data. This returns an immutable CtyValue.
try:
    user_val = user_type.validate(user_data)
    print("✅ Validation successful!")

    # 4. Access data from the CtyValue.
    # Accessing attributes returns another CtyValue. Use .raw_value to get the Python type.
    print(f"Name: {user_val['name'].raw_value}")

    # The optional 'age' attribute is present but is a null CtyValue.
    print(f"Age: {user_val['age'].raw_value} (Is Null: {user_val['age'].is_null})")

    print("Hobbies:")
    for hobby_val in user_val['hobbies']:
        print(f"- {hobby_val.raw_value}")

except CtyValidationError as e:
    print(f"❌ Validation failed: {e}")

Documentation

The complete user guide can be found in the docs/ directory, starting with the index.

Known Limitations

  • Python 3.13+ Required: Due to advanced type features used.
  • Performance: The library is not yet optimized for performance-critical applications involving very large or deeply nested data structures. Performance is reasonable for typical use cases.

Contributing

We welcome contributions! Please see our Contributing Guidelines for details.

License

Apache License 2.0. See LICENSE for details.

CI Test

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

pyvider_cty-0.0.1000.tar.gz (62.4 kB view details)

Uploaded Source

Built Distribution

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

pyvider_cty-0.0.1000-py3-none-any.whl (89.0 kB view details)

Uploaded Python 3

File details

Details for the file pyvider_cty-0.0.1000.tar.gz.

File metadata

  • Download URL: pyvider_cty-0.0.1000.tar.gz
  • Upload date:
  • Size: 62.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.2

File hashes

Hashes for pyvider_cty-0.0.1000.tar.gz
Algorithm Hash digest
SHA256 5bde4cb7cd11e91a9ed4484151ac52f419272af0768bf92fcee6e6a459312ec9
MD5 c4a6042e9f696b640c9bc560e68ea7e0
BLAKE2b-256 6df499179fedd3f3404c195c8bd94aa5e0ed49cda6299613803c3a4fef2e79ee

See more details on using hashes here.

File details

Details for the file pyvider_cty-0.0.1000-py3-none-any.whl.

File metadata

File hashes

Hashes for pyvider_cty-0.0.1000-py3-none-any.whl
Algorithm Hash digest
SHA256 e78aeddf78910942823559719294120e1b2597205a3c3531ac65592f193f8db8
MD5 c1fcd6d5948bf648c3aa278fdb9f6515
BLAKE2b-256 6fc9873c6d88f9fc6b67193d3137db2a5e3dac01f00de2feb5e354278b8eed1e

See more details on using hashes here.

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