Skip to main content

Python HCL/Terraform parser via extension for AquaSecurity defsec

Project description

What

A python extension for parsing and evaluating terraform using defsec.

While terraform uses HCL as its configuration format, it requires numerous forms of variable interpolation, function and expression evaluation, which is beyond the typical usage of an hcl parser. To achieve compatibility with the myriad real world usages of terraform, this library uses the canonical implementation from terraform, along with the interpolation and evaluation from defsec to offer a high level interface to parsing terraform modules.

Installation

pip install tfparse

We currently distribute binaries for MacOS (x86_64, arm64) and Linux (x86_64, aarch64) and Windows.

Note on Windows we currently don't free memory allocated on parse results.

Usage

A terraform module root, with terraform init having been performed to resolve module references.

from tfparse import load_from_path
parsed = load_from_path('path_to_terraform_root')
print(parsed.keys())

Developing

  • requires Go >= 1.18
  • requires Python >= 3.10

Installing from source

Installing will build the module and install the local copy of tfparse in to the current Python environment.

> pip install -e .
> python
>>> from tfparse import load_from_path
>>> parsed = load_from_path('<path_to_terraform>')
>>> print(parsed.keys())

Building from source

Building will produce a wheel and a source artifact for distribution or upload to package repositories.

python setup.py bdist_wheel
ls -l dist/

Running the tests

This project uses pytest

pytest

Testing CI Builds for cross compiling

You can test our cross compiling CI/CD builds by running the following:

CIBW_BUILD=cp310* cibuildwheel --platform macos --archs x86_64

This will try to build an intel wheel on python3.10

Credits

aquasecurity/defsec - golang module for parsing and evaluating terraform hcl

Scalr/pygohcl - python bindings for terraform hcl via golang extension

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

tfparse-0.6.17-cp313-cp313-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.13Windows x86-64

tfparse-0.6.17-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tfparse-0.6.17-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

tfparse-0.6.17-cp313-cp313-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tfparse-0.6.17-cp313-cp313-macosx_10_13_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

tfparse-0.6.17-cp312-cp312-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.12Windows x86-64

tfparse-0.6.17-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tfparse-0.6.17-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

tfparse-0.6.17-cp312-cp312-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tfparse-0.6.17-cp312-cp312-macosx_10_13_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

tfparse-0.6.17-cp311-cp311-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.11Windows x86-64

tfparse-0.6.17-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tfparse-0.6.17-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

tfparse-0.6.17-cp311-cp311-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tfparse-0.6.17-cp311-cp311-macosx_10_9_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

tfparse-0.6.17-cp310-cp310-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.10Windows x86-64

tfparse-0.6.17-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (12.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tfparse-0.6.17-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

tfparse-0.6.17-cp310-cp310-macosx_11_0_arm64.whl (11.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tfparse-0.6.17-cp310-cp310-macosx_10_9_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file tfparse-0.6.17-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tfparse-0.6.17-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for tfparse-0.6.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fae9a22d549319b9c0698bdd8277d41927eaeac5df900ddff43d18c897c72ce2
MD5 754b755ae13566aa15dcbde4d194602a
BLAKE2b-256 d2f6c4f2219b87ce46661978ff7e8288abb1966b7140f2f522d4ac6036c3d663

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp313-cp313-win_amd64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfd8533eebc2cf43184356e6a121c0bd33e4a3d1ed24bd5e43fb0c807a329035
MD5 24943917e36a4f43659f91ff826f2ee2
BLAKE2b-256 9e0c9ee5e567246b042ec561f192cb0541b1eddc68128c5122ed0db5bd2cb2bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f2cb4e1ffe17ed8e07787c39cc25823039d2f011f0c21ed3f7240111185cd69
MD5 c4b3023d6ce282e1d523b24a0e73cfa2
BLAKE2b-256 2f3227443f99e3d7714458e79b45df63d7105ef332960dcdfbec5e3f207a1a14

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa9b2367d906399dddb50a6fb18af7979d4e21bcafab15676d518785b6b8ca6e
MD5 d183004399cdbe683393a11d504a9e8e
BLAKE2b-256 dc0931dde67facf11ba7a442e78a4c96ebd3b659beb74001f96bf926e9d0f247

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 54db1a5ee3eb671253ed4e8534578b40cec3e4ab11b202bb3f8bc66f7a709d06
MD5 a76ec90f8f0fab916cdcd88fbc137547
BLAKE2b-256 bd9c895f02fcbfa1f076b259c882a9b376cb5f786d3b5de66b862196380b9577

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tfparse-0.6.17-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for tfparse-0.6.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d29a869f10915579dd5b0692041a4b2a8937fb4c6f87d77068e7d40005f6a1d6
MD5 bc39808f7cc467d6ae4f8f6821d99312
BLAKE2b-256 f626f0c97793b7e1c68d72c0df18082c58b3053063e83b544ff5b0c621427e31

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp312-cp312-win_amd64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f45d6884171a24cf3e7aa8400a53a534e0a440af61f59b299b59c91f0c6f837
MD5 53a80a0d0d5431266d4e5aa60ad73cf9
BLAKE2b-256 2f23797cbea56bc07a571251587242555233e6d50d9d7995a3746fdd25e38705

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87e55364f2c28154e73c89a050d18788bcdb5eaef610f08d725f1160bed173ef
MD5 30798506fddca3630422b5eb3583c3c0
BLAKE2b-256 5fe0472b710542a579d624d191999c3e026b10b5e14f840a1ee11ba65769ef60

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4ce073cbc3dcb1ed6681159583a18778e60178f61b2ba369385ad381238c04d
MD5 0f186fe05b71edab06223f5076d8d8b0
BLAKE2b-256 82ce0debc421c272137787771b81465873b151b024a345d462cb9999d0a9c4f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 33be0a22abb5698725298fb8a4bd425da804189489453f33ba9d7c3e0a818c0e
MD5 f9508d158336e85f173de8b402f479d5
BLAKE2b-256 f610b724b29b53ff92d1d8d8ec6b774fa28c5a36b0c3ce2af9a21ebe71658b3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tfparse-0.6.17-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for tfparse-0.6.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 714cfc03eb70f71dbf4b91ee7f563ff619a857b453a20763441f9113db6cca19
MD5 6610c95b70108380674eb8c2de016f4f
BLAKE2b-256 966c967e280e5d2847ae45910176180882f22456ff0c9a33560c5a8dc695b13d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp311-cp311-win_amd64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0ef701c7be34b203ce8fa9b3dd832358281d05b12fb48fe786ec4de37f2bc80
MD5 55536564e57cc96739a5aae1f95db47c
BLAKE2b-256 c64a7453cfa2d6c722b20b3cf3a0aa8845c2c9325d0f0a1a429d0c690703fa3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c5774fa51cb7acaf36dd5cb155f230b66fd995d83f7abf7eb3e1369e37bc1e4
MD5 881602b3b136570b58ba628384556e34
BLAKE2b-256 4d915a0db934457db484e0f0cf456870d6a32dd441d699849e08a5d4d0c187c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8ada4beac42ecb4d729360ca9afc68f7f60e6fbe3294dd99a8be31f56368c64
MD5 be27849be4e1e522c804f6e588a26c09
BLAKE2b-256 2c41715d5d4854fef13a70e561761775673972c12a55fa41281eb964f9f5f7ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac8199e66ce6cda408630c3b8d28869c6a8e500016ac9b2e2cd652946b190b3c
MD5 46dd74434479d38a497f2b0e85820f11
BLAKE2b-256 ae252c597856398d3254d622bcaae4243c666f4622cabd220f1fea5c011e4a38

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tfparse-0.6.17-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for tfparse-0.6.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1669470fbee591677d1b7d228f00e83bf6931c88fa549f1be90986b6e9e1d360
MD5 874763c1e1ab112c1df4befe65663cff
BLAKE2b-256 14edc97da9f05ae7e2fe9d9c17d710d05f6ff48eb315844e624282d14548bca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp310-cp310-win_amd64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70d8cb1ce4cb671ea060d9782bc4c1b52bd3c9c47a58df132f8f8745b7c3ed31
MD5 820c6f5f4b47766e192d31e46c0f78e9
BLAKE2b-256 55ab11aab5f14cdd90da0341831e31aff9667f29731131eed4118149850346cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2640eb3eaf29aa0000b1377608c63ca40f12090589fe216ccb17a13e04ea99aa
MD5 2099e57908e7f0ae65689955c688168f
BLAKE2b-256 5cc0e937165b17c140123e3a1b8884eb9b43e4083864799791bbc6e41c0c6cdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a7bb7b75771d1c8a7123540cb929eafd3c52c2db401d338db17b4985c643099
MD5 8bce0ccb9c9e8b724f343908e5f17a8d
BLAKE2b-256 674d19847924e63b83beb7a0623574bbbb3a2e8c46cf617d96c6612c8fbd1bbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfparse-0.6.17-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tfparse-0.6.17-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 922db7690aef5bdfd57793908363cfb219a9d38e0b3ed000c5e7b6ce1708e331
MD5 75b646b3f1a6b667cc8475215e8b19fb
BLAKE2b-256 230b4b0a0ca0f8a886cff527874e77d8cd071b89e91ab9f532094a88b8b8f597

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfparse-0.6.17-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on cloud-custodian/tfparse

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page