Skip to main content

json-comments

A Rust-backed JSON comment and trailing comma stripper for Python.

json-comments provides a single, simple utility to clean JSON-like strings before parsing them. It removes C-style (//), block (/* */), and shell-style (#) comments, as well as trailing commas from objects and arrays.

Installation

pip install json-comments

Usage

import json
import json_comments

raw_data = """
{
    "foo": "bar", // c-style comment
    "baz": "qux", # shell-style comment
    "key": "value", /* block comment */
    "number": 123, // trailing comma
}
"""

# Strip comments and commas with `json_comments`
clean_json = json_comments.strip_json(raw_data)

# Parse with a JSON parser (e.g., `json` from the standard library)
data = json.loads(clean_json)
print(data)
# {'foo': 'bar', 'baz': 'qux', 'key': 'value', 'number': 123}

Acknowledgements

This project is a Python wrapper around the json-strip-comments Rust crate (a fork of the original json-comments-rs).

Special thanks to:

License

MIT. See LICENSE for details including upstream copyright notices.

Download files

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

Source Distribution

json_comments-0.1.1.tar.gz (10.1 kB view details)

Uploaded Source

Built Distributions

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

json_comments-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (205.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

json_comments-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (204.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

json_comments-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (203.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

json_comments-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (201.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

json_comments-0.1.1-cp314-cp314-win_amd64.whl (92.3 kB view details)

Uploaded CPython 3.14Windows x86-64

json_comments-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (203.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

json_comments-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (203.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

json_comments-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (186.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

json_comments-0.1.1-cp313-cp313-win_amd64.whl (92.3 kB view details)

Uploaded CPython 3.13Windows x86-64

json_comments-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (203.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

json_comments-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (202.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

json_comments-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (185.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

json_comments-0.1.1-cp312-cp312-win_amd64.whl (92.1 kB view details)

Uploaded CPython 3.12Windows x86-64

json_comments-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (203.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

json_comments-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (202.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

json_comments-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (185.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

json_comments-0.1.1-cp311-cp311-win_amd64.whl (94.3 kB view details)

Uploaded CPython 3.11Windows x86-64

json_comments-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (203.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

json_comments-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (203.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

json_comments-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (187.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

json_comments-0.1.1-cp310-cp310-win_amd64.whl (94.5 kB view details)

Uploaded CPython 3.10Windows x86-64

json_comments-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (204.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

json_comments-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (203.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file json_comments-0.1.1.tar.gz.

File metadata

  • Download URL: json_comments-0.1.1.tar.gz
  • Upload date:
  • Size: 10.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for json_comments-0.1.1.tar.gz
Algorithm Hash digest
SHA256 69085c2a89b0f371e7ec079509109e4503376d8534b443419243d4ee776dca86
MD5 6d8c3951ae3fbd463b39bc28c1e4ab29
BLAKE2b-256 c0fe5441295056b02f2f8081d7d9a0bca2e479b4ca8a1d230d98d45259a68388

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1.tar.gz:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d39a56e993ec2e2d903b39857548a75651d8a9dc00edac9cadd77c348677adc5
MD5 b2f0de02b3bf2c9824259cce85e9dc6a
BLAKE2b-256 a31a0a6db12bd1beac09c19cc19a91733f583d6176bb9451143f023e04a85a9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60d301f3b186ce462992b113773defa56fd9f0fba59bb7e8252f33d039b37c0f
MD5 27659548a7f0400cf4fe47f40767724c
BLAKE2b-256 d3de0eb9ddf748e8797103390450b81e2a5968b4e4e55d8e55d55f1c77df7429

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aac057af012d840f43b678719719ec13a65f577ffb639728e5426d611efb299d
MD5 5395829c01bc0801191d18dc35dc00f9
BLAKE2b-256 e8201b984cd671694465f182ecc5e005c63eb70a82226f645ac7d87d9ef771d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e0571d276b453ef0172922cc0ffd26102c6554742d1a464c79433cd4df84a49
MD5 169f94ab6d0fea8834f415870fb51071
BLAKE2b-256 5aacb4ab5b494bedd54904fceda79eb494f8829e66728ffde55dab99e19c0e4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0c8cf75f3c61e7912cab51294463b153ca7ba4cb15cf91646bad705f883ee9bc
MD5 5163a4e769f46b9d9bbc825aec484376
BLAKE2b-256 88d36dc18d60736ec49aaa20b96611be998663be72eff81ea0d243906f8cf997

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fd066a673db4bc2919d441b2ffd85887680c46007bd6ed2cb46ee553c2cc093
MD5 1d96cc1c1df080f44a91e44faeb1981d
BLAKE2b-256 b5af9c055ccd2244ec7226058f8daed0919d75906f7fe98f70d4e585e2fd1541

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f0ce152f6afc4d9e8020ea86a97b58a48912b827033678b5c5822a8a5942d68
MD5 1c6eb903cd363c8cad9029d76ea5e905
BLAKE2b-256 05350df175fa809b01f3e38dd2a0349b7d92e5f760159b3aea284f658814750e

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e44521c7876c619a0620092e3d4ae6a190415737a5283c1c6d7fdec2fd6c6c64
MD5 234f418e3236a81906c7e7e6ad7d855c
BLAKE2b-256 2272f4a7350109d646e1fad2457d091f35e8a7a68ddbb8445b3f6791a3ea0337

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 393e05e42e62e0dec196a23dcabe9356ea62f533d12fcb46773637219c05a873
MD5 e65d1135d3b61987ab1110241a4156cd
BLAKE2b-256 b33c9c26bcfe3047728865edf48e1713d02dd33f1d499ee94857454044735fc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 597fc5569338e96cbb861953c610f8bcefb399750adeb62da625ebbbeff9eb74
MD5 bd05a45489e399949707f9a94abe9c9d
BLAKE2b-256 1db2417b82dbf995e7027d8dc773aa9d93f7832237a90282422b8630d7316990

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9417f32096755639a1563b280f6ae879b8c1cbd16b1c4ef89e8bc1ddb4b94602
MD5 99b38e17b5ee3359d0b63d6d2a5d3e31
BLAKE2b-256 42f42cb9b3e788abf6b67c20efcdbcda1ff0adc4082b4e64e263570dd3f3331a

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fabac2f2e2b8031a9bfc6cbd2ccd3ccd51c972d12c8d03665fe19777b434cfa3
MD5 9776b3c5d5611f160d95d263eae62a90
BLAKE2b-256 129bf685303aa54bf639afba25485d5fccd7e572ec20a2e7be236ce276481042

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cdd276d22668307055d1d8fdb6d84dcdc46f1b3ea3d8e66198f859560b0a2342
MD5 296fcb199dbcda5313d1828729e897eb
BLAKE2b-256 bf48b3b0596f535bc65083d1c5b12ccf13a622d97ae6a03f4a687fc240694237

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7156130ef859e3dc209dada41e61ad7fe9690704acaea16bd356a39dbf05bff
MD5 b59a48a1f289bdda2a8f49f4974a7917
BLAKE2b-256 14e8406d8e3c3a70ea61e6d808ed15f511acd7b12dea32a6c1fb0604c02a9499

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88803855d9b0e81b3adfd8d0dc9da6eeb5355b8c71a2ffa9a64e4be3cc9a9b0e
MD5 9384c9a9467edb46288c1a9595d994ff
BLAKE2b-256 16684e1ff14fd8b655a445655b154264450240e0577e503cd93122443a807e9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a872627a4ff8696c77955b519f8349c97cd88925c92abefea7af5d5835c5dc6f
MD5 98d23d90780e2788a5be416e8627bbe5
BLAKE2b-256 c7a0ee1d3f846006943b25b0494fb5c6a4d431702123a75bcae76de92de4b4d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 211fbaa3b8920e2a0f7ea94422397d9bbc25a1ca062941668ff9ff0ab6e6b104
MD5 17a844fbd11402357d44c992b12750c3
BLAKE2b-256 6a2200a6776e51c3ecd1f7f7c38fd1f5f06f3809fff2f460fc836aae923aafbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd25d9924af0d513acf747c5de009232e274da654e6e9d4438ba12e33c1cd00d
MD5 b7f81eeedc28050da7bdb98dccb261f8
BLAKE2b-256 6af460a63d5e44312d027d8e70f2fa77d1d5c72c29999299ee9693c6275bc71a

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a214fd9e335ab925b6152a1f3b9bf4c8f1febe38cb8a17be8f90c310d05199c8
MD5 fa2421718c74f49010f70f7c58471d9e
BLAKE2b-256 20fe5f20e893bd10164f7dd196d7cb4c8c14c3a0b36c4a5e845a91b959535b87

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea130593a8926c1eb50732221521218ad9892b44b4a42be0cf407d8e7e21c0d4
MD5 790db769fe3c10fb24ee11e87fff2488
BLAKE2b-256 62c760a0ff9356198c97efdc7dc2d321aeb7c8f4de9e4acea700b2fc331db0ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5fc79cc87679ad5f867f2b32cda9ef84ea7cbe3fcd9783ba1a10162fe96598a0
MD5 159581be25bbcde7253aca4644aca67a
BLAKE2b-256 fbed2176eeea21c9db64e759bc1f98fa1ac507b7aacda749e25f94ab85a9f06c

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b64373f61d1bd8d9e404665014ce7bfbf26ca68ac8bb71bd117ac427f52131a5
MD5 0ee92d3586070edd4693c527082788a0
BLAKE2b-256 ebc283b54e2ff5976eeffc3409258560767269dcad0f4285833c743bd9bd4708

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on audivir/json-comments

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

File details

Details for the file json_comments-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for json_comments-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bcd9e8cafa87e138c0bd3e0795fcafad5f54a8642f345fa69321affe46fd1926
MD5 3535e02605b6cd33b4a8988e8ea571e8
BLAKE2b-256 70889fbfcab8a33f51a3618fb51f6e19910299b9a380e41c28791b5087941d60

See more details on using hashes here.

Provenance

The following attestation bundles were made for json_comments-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on audivir/json-comments

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

Release history Release notifications | RSS feed

This release

0.1.1 This release

24 files

0.1.0

26 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page