bc-python-hcl2

Latest version: 0.4.3 registry icon
Maintenance score
34
Safety score
100
Popularity score
9
Check your open source dependency risks. Get immediate insight about security, stability and licensing risks.
Security
  Vulnerabilities
Version Suggest Low Medium High Critical
0.4.3 0 0 0 0 0
0.4.2 0 0 0 0 0
0.4.1 0 0 0 0 0
0.3.51 0 0 0 0 0
0.3.50 0 0 0 0 0
0.3.48 0 0 0 0 0
0.3.47 0 0 0 0 0
0.3.46 0 0 0 0 0
0.3.45 0 0 0 0 0
0.3.44 0 0 0 0 0
0.3.43 0 0 0 0 0
0.3.42 0 0 0 0 0
0.3.41 0 0 0 0 0
0.3.40 0 0 0 0 0
0.3.39 0 0 0 0 0
0.3.38 0 0 0 0 0
0.3.37 0 0 0 0 0
0.3.36 0 0 0 0 0
0.3.33 0 0 0 0 0
0.3.32 0 0 0 0 0
0.3.30 0 0 0 0 0
0.3.29 0 0 0 0 0
0.3.28 0 0 0 0 0
0.3.24 0 0 0 0 0
0.3.23 0 0 0 0 0
0.3.22 0 0 0 0 0
0.3.21 0 0 0 0 0
0.3.20 0 0 0 0 0
0.3.18 0 0 0 0 0
0.3.17 0 0 0 0 0
0.3.16 0 0 0 0 0
0.3.15 0 0 0 0 0
0.3.14 0 0 0 0 0
0.3.13 0 0 0 0 0
0.3.12 0 0 0 0 0
0.3.11 0 0 0 0 0
0.3.10 0 0 0 0 0
0.3.9 0 0 0 0 0
0.3.8 0 0 0 0 0
0.3.7 0 0 0 0 0
0.3.5 0 0 0 0 0
0.3.4 0 0 0 0 0
0.3.3 0 0 0 0 0
0.3.2 0 0 0 0 0
0.3.1 0 0 0 0 0

Stability
Latest release:

0.4.3 - This version may not be safe as it has not been updated for a long time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform

Licensing

Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.

MIT   -   MIT License

Not a wildcard

Not proprietary

OSI Compliant



Build Status License PyPI Python Versions Downloads

Notice

This is a fork of the Python HCL2 repo by Amplify and is officially supported by Bridgecrew. We contributed as much as possible to the upstream project, but the two projects are now deviating in a way that pushing new changes upstream doesn't make sense anymore.

Python HCL2

A parser for HCL2 written in Python using Lark. This parser only supports HCL2 and isn't backwards compatible with HCL v1. It can be used to parse 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.7 or higher to run.

Installing

This package can be installed using pip

pip install bc-python-hcl2

Usage

import hcl2
with open('foo.tf', 'r') as file:
    dict = hcl2.load(file)

Building From Source

For development, tox>=2.9.1 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 py37-unit will run the unit tests for python 3.7

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

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:

  1. For any sizable change, first open a GitHub issue to discuss your idea.
  2. 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.