Skip to main content

A parser for HCL2

Project description

Codacy Badge License PyPI Python Versions Downloads

Python HCL2

A parser for HCL2 written in Python using Lark. It can be used as a Python library or through its CLI tools: hcl2tojson, jsontohcl2, and hq — a jq-like query tool for HCL files. Supports HCL2 only (not backwards compatible with HCL v1) and works with any HCL2 config file such as Terraform.

About Amplify

Amplify builds innovative and compelling digital educational products that empower teachers and students across the country. We have a long history as the leading innovator in K-12 education - and have been described as the best tech company in education and the best education company in tech. While others try to shrink the learning experience into the technology, we use technology to expand what is possible in real classrooms with real students and teachers.

Learn more at https://www.amplify.com

Getting Started

Prerequisites

python-hcl2 requires Python 3.8 or higher to run.

Installing

This package can be installed using pip

pip3 install python-hcl2

To install the CLI tools (hcl2tojson, jsontohcl2, hq) globally without affecting your project environments, use pipx:

pipx install python-hcl2

Usage

HCL2 to Python dict:

import hcl2

with open("main.tf") as f:
    data = hcl2.load(f)

Python dict to HCL2:

import hcl2

hcl_string = hcl2.dumps(data)

with open("output.tf", "w") as f:
    hcl2.dump(data, f)

Building HCL from scratch:

import hcl2

doc = hcl2.Builder()
res = doc.block("resource", labels=["aws_instance", "web"], ami="abc-123", instance_type="t2.micro")
res.block("tags", Name="HelloWorld")

hcl_string = hcl2.dumps(doc.build())

Documentation

Guide Contents
Getting Started Installation, load/dump, options, CLI converters
Querying HCL (Python) DocumentView, BlockView, tree walking, view hierarchy
Advanced API Pipeline stages, Builder
hq Reference hq CLI — structural queries, hybrid/eval, introspection
hq Examples Real-world queries for discovery, compliance, extraction
Migrating to v8 Breaking changes, updated API patterns, v7-compat options

CLI Tools

python-hcl2 ships three command-line tools:

# HCL2 → JSON
hcl2tojson main.tf                     # prints JSON to stdout
hcl2tojson main.tf output.json         # writes to file
hcl2tojson terraform/ output/          # converts a directory

# JSON → HCL2
jsontohcl2 output.json                 # prints HCL2 to stdout
jsontohcl2 output.json main.tf         # writes to file
jsontohcl2 output/ terraform/          # converts a directory

# Query HCL2 files
hq 'resource.aws_instance.main.ami' main.tf
hq 'variable[*]' variables.tf --json

All commands accept - as PATH to read from stdin. Run --help on any command for the full list of flags.

Building From Source

For development, tox>=4.0.9 is recommended.

Running Tests

python-hcl2 uses tox. You will need to install tox with pip install tox. Running tox will automatically execute linters as well as the unit tests.

You can also run them individually with the -e argument.

For example, tox -e py310-unit will run the unit tests for python 3.10

To see all the available options, run tox -l.

Releasing

To create a new release go to Releases page, press 'Draft a new release', create a tag with a version you want to be released, fill the release notes and press 'Publish release'. Github actions will take care of publishing it to PyPi.

Roadmap

Planned features, roughly in priority order:

  • MCP server — expose parsing, querying, and formatting as MCP tools for AI agents
  • Predictable formatting — source-derived formatting heuristics and stable whitespace defaults
  • In-place tree editshq set, hq delete for programmatic HCL modification
  • Comment deserialization — comments survive JSON round-trips and tree edits
  • Expression intelligence — variable reference tracking, unused variable detection, cross-file analysis
  • Refactoring operationshq rename, hq extract-module, hq sort for high-level code transforms

Responsible Disclosure

If you have any security issue to report, contact project maintainers privately. You can reach us at mailto:github@amplify.com

Contributing

We welcome pull requests! For your pull request to be accepted smoothly, we suggest that you:

  • For any sizable change, first open a GitHub issue to discuss your idea.
  • Create a pull request. Explain why you want to make the change and what it's for.

We'll try to answer any PR's promptly.

Limitations

None that are known.

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

python_hcl2-8.1.2.tar.gz (114.7 kB view details)

Uploaded Source

Built Distribution

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

python_hcl2-8.1.2-py3-none-any.whl (99.0 kB view details)

Uploaded Python 3

File details

Details for the file python_hcl2-8.1.2.tar.gz.

File metadata

  • Download URL: python_hcl2-8.1.2.tar.gz
  • Upload date:
  • Size: 114.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_hcl2-8.1.2.tar.gz
Algorithm Hash digest
SHA256 ae809c7e6e39e8c3c3555e7b7f389082207929591fcba062c9f76afb1abe972d
MD5 f2b1b2a322cbfa992a3ed661a0dc56ce
BLAKE2b-256 397b6c9c973484a482f833a1b88ab69e078e05cc1f761af1839d5cbe7e7fad92

See more details on using hashes here.

File details

Details for the file python_hcl2-8.1.2-py3-none-any.whl.

File metadata

  • Download URL: python_hcl2-8.1.2-py3-none-any.whl
  • Upload date:
  • Size: 99.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_hcl2-8.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ac3d16dc6501d4f24db348b3a634afdfb5c10a6715b27cd105a5b77071b84ee3
MD5 e4883a2e5b6141d8d66746fc2fb99a67
BLAKE2b-256 5dc710c7832ec3050a191c756f4a591c9033fbfb8e10688e979efb5c4ca4265c

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