A Python library for defining CostFormation dimensions as classes and generating production-ready YAML output.
📖 Guide: Author CostFormation in Python on docs.cloudzero.com.
Full reference documentation for every class lives in docs/.
Logical:
And/Or— Logical operators with overloading support (&,|)Not— Logical negation
String Comparison:
Equals— Equality matching (single value or list)Contains— Substring or list membershipBeginsWith— Prefix matchingEndsWith— Suffix matchingMatches— Regular expression matching
Value Checking:
HasValue— Check if dimension has a value
Alphabetical Comparison:
Before/BeforeOrEquals— Less than (or equal) alphabeticallyAfter/AfterOrEquals— Greater than (or equal) alphabetically
Date:
ForDateRange— Check if data exists in a date range
CoreDimension— Cloud provider primitives (Account, Service, Region, etc.)- Class names with underscores convert to colons (e.g.
K8s_Cluster→K8s:Cluster) - Cannot be serialized to YAML (only referenced)
- Class names with underscores convert to colons (e.g.
GlobalDimension— CloudZero-managed dimensions (CZ:Defined:prefix)- Cannot be serialized to YAML (only referenced)
- Inherits from
CoreDimension
GroupDimension— User-defined grouping dimensionsAllocationDimension— Telemetry and proportional allocations
name— Display name (defaults to class name)source— Source dimension(s), single or listrules— List ofGroupRule,GroupByRule, orMetadataRuleobjectstransforms— Dimension-level transforms applied before rulesdefault_value— Fallback when no rules matchchild— Hierarchical dimension relationshipsoverride— Override another dimensionhide— Hide from UIdisable— Disable dimension from processing
GroupRule— Static grouping with conditions, optional rule-level source (overrides dimension source)GroupByRule— Dynamic grouping based on source values; supports transforms, conditions, and plural sources withCoalesceSourcesfor fallback logicMetadataRule— Pattern matching with substring search; supports hierarchical value patterns and optional format string for output
Lower,Upper,Title— Case conversionSplit— Split by delimiter and extract index (optionalmaxsplit)Trim— Remove leading/trailing whitespaceClean— Remove whitespace and convert special chars to dashesNormalize— Combined lowercase + whitespace removal + normalization
- Telemetry —
AllocateByStreamswith stream names - Rule-based —
AllocateByRuleswith anAllocationMethodofProportionalorEven
Install the library from PyPI with uv:
uv add cloudzero-costformationOr with pip:
pip install cloudzero-costformationThe package installs as cloudzero-costformation; the import name is costformation.
The library includes all core cloud provider, Kubernetes, and CloudZero-managed global dimensions from the official CFDL specification:
from costformation import (
# Core cloud provider dimensions
Account, Service, Region, Operation, UsageType,
CloudProvider, Resource,
# Kubernetes dimensions
Tag, K8s_Cluster, K8s_Namespace, K8s_Workload, K8s_Label,
# Global dimensions (CloudZero-managed)
ServiceDisplay, ResourceType, Category, InstanceType,
)Core and global dimensions are never defined in CostFormation YAML, only referenced. Attempting to serialize them will raise a TypeError.
Cloud Provider Dimensions:
Account, BillingConnectionID, CloudProvider, CommittedUseSubscription, Description, InvoiceID, LineItemType, Operation, PayerAccount, PricingTerm, PricingUnit, PricingUnits, ProductFamily, Region, Resource, RequestType, Service, TransferType, UsageDay, UsageFamily, UsageType
Kubernetes Dimensions:
K8s_Cluster, K8s_Namespace, K8s_Workload
Dynamic Dimensions:
Tag(key)— Cloud resource tags with any key, e.g.Tag('Environment'),Tag('aws:cloudformation:stack-name')K8s_Label(name)— Kubernetes labels with any name, e.g.K8s_Label('app'),K8s_Label('node:instance-type')
Global Dimensions (CloudZero-managed):
BillingLineItem, Category, Elasticity, InstanceType, NetworkingCategory, NetworkingSubCategory, PaymentOption, ResourceDisplay, ResourceNameOnly, ResourceSummaryDisplay, ResourceSummaryID, ResourceType, ServiceDisplay, ServiceDetail, TaggableVsUntaggable
from costformation import (
Service,
GroupDimension,
GroupRule,
Equals,
)
class MyServices(GroupDimension):
name = 'My Services'
source = Service()
default_value = 'Other'
rules = [
GroupRule(
name='Compute',
condition=Equals(['EC2', 'Lambda', 'ECS'])
),
GroupRule(
name='Storage',
condition=Equals(['S3', 'EBS'])
),
]
dimension = MyServices()
yaml_dict = dimension.to_dict()Output:
{
"Name": "My Services",
"Type": "Group",
"Source": "Service",
"Rules": [
{
"Type": "Group",
"Name": "Compute",
"Conditions": [{"Equals": ["EC2", "Lambda", "ECS"]}]
},
{
"Type": "Group",
"Name": "Storage",
"Conditions": [{"Equals": ["S3", "EBS"]}]
}
],
"DefaultValue": "Other"
}from costformation import (
Category,
Contains,
GroupDimension,
GroupRule,
Lower,
Operation,
)
class AI_Operations(GroupDimension):
name = 'AI Operations'
source = Operation()
transforms = [Lower()]
default_value = 'Non-AI'
rules = [
GroupRule(
name='Input',
condition=(
Category().equals('AI') &
Contains(['input', 'prompt'])
)
),
]class ResourceName(GroupDimension):
name = 'Resource Name'
source = None
override = ResourceNameOnly()
rules = [
GroupByRule(
source=ResourceDisplay(),
conditions=[Not(BeginsWith('billingitem-'))]
),
]# CustomerNames_Allocation and Customer are user-defined dimensions
# (definitions omitted for brevity)
class Customer_Names(GroupDimension):
name = 'Customer Names'
source = None
rules = [
GroupByRule(source=CustomerNames_Allocation()),
GroupRule(
name='CloudZero',
source=Customer(),
condition=Equals('00000000-0000-0000-0000-000000000000')
),
]class AI_Telemetry(AllocationDimension):
name = 'AI Telemetry'
hide = True
streams = ['cost-per-ai-call', 'ai-token-metrics']
class RuleBasedAlloc(AllocationDimension):
name = 'Rule-based Allocation'
allocation_method = AllocationMethod.PROPORTIONAL
spend_to_allocate = [Service().equals('AmazonEC2')]
across_elements = [
GroupRule(name='by-account', condition=Account().begins_with('prod-')),
]Dimensions can be evaluated against test data:
test_data = {
'Service': 'Lambda',
'Category': 'AI',
'Operation': 'RunInput'
}
result = MyServices.evaluate(test_data)
# Returns: 'Compute' (matches the Lambda rule)to_yaml() produces CostFormation (CFDL) YAML — the same format you'd write by hand — which you then apply to your CloudZero account. First serialize your dimensions to a file:
from costformation import CostFormation
with open('my-costformation.yaml', 'w') as f:
f.write(CostFormation([MyServices()]).to_yaml())Then publish it with any of:
-
CloudZero API (ideal for CI/CD) —
POSTthe YAML with your CloudZero API key. Add?validate_only=trueto check it without publishing:curl -X POST "https://api.cloudzero.com/v2/costformation/definition/versions" \ -H "Authorization: <YOUR_API_KEY>" \ -H "Content-Type: text/plain" \ --data-binary @my-costformation.yaml
-
CloudZero app — paste the YAML into the CostFormation editor and publish.
-
CostFormation Toolkit for VS Code — download the target namespace (this links the file to CloudZero), replace its contents with your generated YAML, then publish.
For the full guide, see Author CostFormation in Python in the CloudZero docs.
With uv installed, create the virtual environment at ./.venv and install all dependencies with:
make initThere's no need to activate the environment — uv run and the make targets below use it automatically. To pin a specific Python version, run uv venv -p 3.12 ./.venv first.
We uv lock requested dependencies from the pyproject.toml file into a deterministic uv.lock file.
For more information about managing dependencies with uv, see the official docs.
Library Dependencies
These are dependencies your library needs when a client installs it.
If you want to edit library dependencies, simply edit the project.dependencies value in pyproject.toml, or use the uv add command to do it for you, eg. uv add "pydantic~=2.0".
Development Dependencies
Development dependencies are dependencies needed for development only, eg tests or linting.
If you want to edit development dependencies, then add the dependency to the appropriate dependency-group in pyproject.toml.
Alternatively, you can use uv add to edit the file for you eg, run uv add --group lint ruff.
Locking Dependencies
Whenever you update dependencies, you should be sure to run make lock-requirements in order to ensure reproducible development environments.
Whenever dependencies are updated, make sure to run make init to sync your virtual environment.
You can run all the python linting (mypy, ruff) with:
make lintThen auto-fix linting errors with:
make lint-fixYou can run all the python tests with pytest:
make testYou can run both linting and testing with:
make checkPublishing to PyPI is done by the publish-to-pypi.yml workflow (using Trusted Publishing) whenever a GitHub Release is published:
- Open a PR that bumps
__version__incostformation/__init__.pyand adds a matching section toCHANGELOG.md(CI enforces both). - Merge it, then create a GitHub Release from
mainwith a tag matching the new version. - The workflow builds the package with uv and publishes it to PyPI.
This project is licensed under the Apache License, Version 2.0 — see the LICENSE file for details.
"CloudZero" and the CloudZero logo are trademarks of CloudZero, Inc. Use of these trademarks is limited to identification and attribution as required by the Apache License. You may not use CloudZero trademarks in a way that suggests endorsement or affiliation without written permission.