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.

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.111.tar.gz (41.3 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.111-py3-none-any.whl (56.2 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for pyvider_cty-0.0.111.tar.gz
Algorithm Hash digest
SHA256 ad49cf1f5f34bab34c559160131b6e5fbf953acda26ffc1f0f5185f59305f5a3
MD5 776618e6529381dc1614457e6b072361
BLAKE2b-256 2d389a7e78e69fe5efa8ad666c9d8ef859a0cc6a6651ac994d7fa139c29ac00b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyvider_cty-0.0.111-py3-none-any.whl
Algorithm Hash digest
SHA256 151de8eedda400d38780608f4e71fece442991271789bb329d00cdbda25b36ff
MD5 d3cfe43c4e80f644b099886544c9015e
BLAKE2b-256 34fbf876d9d7fbb5f8e9b5f65326fb00714ad9304e0fd868fa3d095c735d5be5

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