Skip to main content

A concrete syntax tree with AST-like properties for Python 3.0 through 3.15 programs.

Project description

LibCST

A Concrete Syntax Tree (CST) parser and serializer library for Python

Support Ukraine - Help Provide Humanitarian Aid to Ukraine. Documentation Github Actions PYPI PYPI Download Notebook PYPI - Types

LibCST parses Python 3.0 -> 3.15 source code as a CST tree that keeps all formatting details (comments, whitespaces, parentheses, etc). It’s useful for building automated refactoring (codemod) applications and linters.

LibCST creates a compromise between an Abstract Syntax Tree (AST) and a traditional Concrete Syntax Tree (CST). By carefully reorganizing and naming node types and fields, we’ve created a lossless CST that looks and feels like an AST.

You can learn more about the value that LibCST provides and our motivations for the project in our documentation. Try it out with notebook examples.

Example expression:

1 + 2

CST representation:

BinaryOperation(
    left=Integer(
        value='1',
        lpar=[],
        rpar=[],
    ),
    operator=Add(
        whitespace_before=SimpleWhitespace(
            value=' ',
        ),
        whitespace_after=SimpleWhitespace(
            value=' ',
        ),
    ),
    right=Integer(
        value='2',
        lpar=[],
        rpar=[],
    ),
    lpar=[],
    rpar=[],
)

Getting Started

Examining a sample tree

To examine the tree that is parsed from a particular file, do the following:

python -m libcst.tool print <some_py_file.py>

Alternatively, you can import LibCST into a Python REPL and use the included parser and pretty printing functions:

>>> import libcst as cst
>>> from libcst.tool import dump
>>> print(dump(cst.parse_expression("(1 + 2)")))
BinaryOperation(
  left=Integer(
    value='1',
  ),
  operator=Add(),
  right=Integer(
    value='2',
  ),
  lpar=[
    LeftParen(),
  ],
  rpar=[
    RightParen(),
  ],
)

For a more detailed usage example, see our documentation.

Installation

LibCST requires Python 3.9+ and can be easily installed using most common Python packaging tools. We recommend installing the latest stable release from PyPI with pip:

pip install libcst

For parsing, LibCST ships with a native extension, so releases are distributed as binary wheels as well as the source code. If a binary wheel is not available for your system (Linux/Windows x86/x64 and Mac x64/arm are covered), you’ll need a recent Rust toolchain for installing.

Further Reading

Development

See CONTRIBUTING.md for more details.

Building

In order to build LibCST, which includes a native parser module, you will need to have the Rust build tool cargo on your path. You can usually install cargo using your system package manager, but the most popular way to install cargo is using rustup.

To build just the native parser, do the following from the native directory:

cargo build

The libcst.native module should be rebuilt automatically, but to force it:

uv sync --reinstall-package libcst

Type Checking

We use Pyre for type-checking.

To verify types for the library, do the following in the root:

uv run poe typecheck

Generating Documents

To generate documents, do the following in the root:

uv run --group docs poe docs

Future

  • Advanced full repository facts providers like fully qualified name and call graph.

License

LibCST is MIT licensed, as found in the LICENSE file.

Privacy Policy and Terms of Use

Acknowledgements

  • Guido van Rossum for creating the parser generator pgen2 (originally used in lib2to3 and forked into parso).

  • David Halter for parso which provides the parser and tokenizer that LibCST sits on top of.

  • Zac Hatfield-Dodds for hypothesis integration which continues to help us find bugs.

  • Zach Hammer improved type annotation for Mypy compatibility.

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

libcst-1.9.0.tar.gz (914.7 kB view details)

Uploaded Source

Built Distributions

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

libcst-1.9.0-cp314-cp314t-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14tWindows ARM64

libcst-1.9.0-cp314-cp314t-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

libcst-1.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

libcst-1.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

libcst-1.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

libcst-1.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

libcst-1.9.0-cp314-cp314t-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

libcst-1.9.0-cp314-cp314-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows ARM64

libcst-1.9.0-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

libcst-1.9.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

libcst-1.9.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

libcst-1.9.0-cp314-cp314-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

libcst-1.9.0-cp314-cp314-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

libcst-1.9.0-cp314-cp314-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

libcst-1.9.0-cp313-cp313-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows ARM64

libcst-1.9.0-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

libcst-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

libcst-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

libcst-1.9.0-cp313-cp313-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

libcst-1.9.0-cp313-cp313-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

libcst-1.9.0-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

libcst-1.9.0-cp312-cp312-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows ARM64

libcst-1.9.0-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

libcst-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

libcst-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

libcst-1.9.0-cp312-cp312-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

libcst-1.9.0-cp312-cp312-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

libcst-1.9.0-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

libcst-1.9.0-cp311-cp311-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows ARM64

libcst-1.9.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

libcst-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

libcst-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

libcst-1.9.0-cp311-cp311-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

libcst-1.9.0-cp311-cp311-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

libcst-1.9.0-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

libcst-1.9.0-cp310-cp310-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows ARM64

libcst-1.9.0-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

libcst-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

libcst-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

libcst-1.9.0-cp310-cp310-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

libcst-1.9.0-cp310-cp310-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

libcst-1.9.0-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

libcst-1.9.0-cp39-cp39-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows ARM64

libcst-1.9.0-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86-64

libcst-1.9.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

libcst-1.9.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

libcst-1.9.0-cp39-cp39-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

libcst-1.9.0-cp39-cp39-manylinux_2_28_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

libcst-1.9.0-cp39-cp39-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file libcst-1.9.0.tar.gz.

File metadata

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

File hashes

Hashes for libcst-1.9.0.tar.gz
Algorithm Hash digest
SHA256 087b58a9afe076bb08e2d726478e1f16cb928d67ffa9092817e033c335de522a
MD5 b6ce4b7077a0a89ee8aa47221a962133
BLAKE2b-256 02c0098e5c91ff1537f00c85a6438b6cb1863d17144680cc91f47c87f104a200

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0.tar.gz:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 497d5329345f1f5df84e41b0bbd00204b64a2fd30dfe3cfaeaebca633a31e877
MD5 474f3591b8e9b2fb8088408afe76e201
BLAKE2b-256 fb3d88ad67427c6fd9db929e087912b0a540e5140e5cb77e7ca4170edaac8531

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314t-win_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0c7b548512db25af9c2997a95fa731bd6b6928ecbad6c0915d7482d8bb42d34f
MD5 a8c844bc661d6bb1ba718d906e388cd4
BLAKE2b-256 e294775825b2637f8ab05694b6a4b3802ae6783b4e799f9b58d2400c7e2d4369

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314t-win_amd64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2faaf92500d0226358125630f5aab4758e8aad3f2d70a10892ec3c700781a54
MD5 b9d48543d3b5a7dd829180cc04f49b1a
BLAKE2b-256 a82b6752b28d88c3a19b3bc0b9e1838443b6760d5c862b4f4b37955402659e24

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50ab94bb2524b419056d4003032b8c67102ac800f8d85b3c4260a01746d94dbb
MD5 2e13cc5e1805c43fb2707019bd3a64a4
BLAKE2b-256 d8319d5fe1e43dc3dbcc74f70f3e0e73fcdd8d84effc1059d8b45974f0d0d2eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea490fa8540503db5f321f0268becab46eb50f710e8cec8041e241fd66f6874f
MD5 5bea7f8d55452b6f674440a72f0d8d2c
BLAKE2b-256 cb5b03f4cddce426d005e208b39ea7b2d456e667cdee0f1891360f0fc8430f20

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 496c24e0d3240bc7da45dae543aff3f5b6509978c39262d6b84ed2fb999dded2
MD5 7000316b328a39abaf7bd3d2b64e6049
BLAKE2b-256 4eaf2f5543255b2c7d749b966adeccc6bfb1652cf8b425afb913d0f3f025a865

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6248cb07444ab9a6733a855737a9febed8b9adca51347019348b09a3ac7dfe9
MD5 700af5eaca1fbf059f5d28dfa323d453
BLAKE2b-256 d17fc3f3a0e7a1a2adaa76e815e82a7814d6bfe7d49432276bba652248c68d0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 107593af46945593e7825821793393262bc4fa1d3ea24c3ed487b61269bbbdf8
MD5 5b874a0a530d776bda86ee8e79b03b09
BLAKE2b-256 87804d81577a22e6d535d1a3409f3a1c6903e09036f0e17fc47f92169dbc3501

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314-win_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 568288cdbfe3b4ca3ae4852cb0a439ff053dd54c841bc4995bf2b71238b5de40
MD5 fc0c5c93cd83ac0cf7450228bfa4822b
BLAKE2b-256 8ef7bc49e367d2bc8817213594dd52cf6b2da2dbbda90b5382d60653999274ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314-win_amd64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45808c03528b3ad40b14095348a918e08d98c47b4a125d631cb78e817c0a5b16
MD5 bb6fe030c08c99ba660997b6330974a9
BLAKE2b-256 a3f41bc7aaea03971c45e8a885fed9fc1c73176dbbd00b0296a3cde9529bafd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb5d0946f2b4c6711b5d69fe4f833b364f9e7a1a2b08f88b98619dc18975099a
MD5 69b297f3f84114c245a0f4d51b54e43c
BLAKE2b-256 9003793b9fd96dd52d202f5f2b88d7e54f05ebed767d1bb3b32395a1817bf6ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 444e84c76cd035cd2fe136838c1a524d34b08216521f6f5093df8a6f6cfa5799
MD5 8aacb0d4d9b18177616b09d552583676
BLAKE2b-256 257d2eaa697a80f899bcf2245680bbfcc1e478eb3b3328c21d4b2880bdf00dac

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32395244edfe6538e0ea2bf82051d60103d3f54861274805c4fb3745efb70a85
MD5 f1593f2f71860982ed886c50c1b53b14
BLAKE2b-256 beed1168b98c2a0f338be3a44753647baab051feaf6167cc887bf4447f8fd920

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eccf4c57d273cdd3fe1c67b72cf9bb1bbd4547aa011824e96ccf5b7136057aa4
MD5 02a2cde0e4d489aa0e7b2abeb20326fd
BLAKE2b-256 652a4943c71d90975bc59034a057dea346b365c276f308c1d31f5cf2bd85492d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a621e261990148c1cfbe26c1798bd2375c131cf358a44a7a4659fc41c1a336e1
MD5 7a11fdb40f80d06950e3509eb10cd1ea
BLAKE2b-256 fdffdccb1a55e38b4e47256a97242d61d2bef5366c744faf88fb087d4fa0f995

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp313-cp313-win_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4d382fba04077eb556a1ea4295a4482e192aa93639c5a07ba0885841965ea0c0
MD5 f70d2456d4b256ff38bc5ffa6b44e265
BLAKE2b-256 db136da63f0902ece43bf9d737017251ad7ad06edd9d3c4e1856450403cb4473

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp313-cp313-win_amd64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8d671c39a431c309476099b8ec811e412503ec0f4465f6fc907cb51c70e8e6b
MD5 efa349b2549e49686f2aec2102331d27
BLAKE2b-256 8ab7655e45363b8cf87b91e41e060b21c89e5316c7ef36eb14a1a498b27bb71e

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcb9f9d4fcfe2ec7a40d2c26e03a538d5d9dc189c38551eb3f94ab661afee7c0
MD5 51c4461dc06f43df1b326a24fdd069c5
BLAKE2b-256 34a7474748a27a02fa83e3556b260d5f5236ca48164fa7beffecf3b2cad24dca

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8504b422c95676a8c27b517e1ac01413ece91bf356865c587ca9bdcd5708a2f7
MD5 d5fd0b14c284e21c9549fc4d36eee1cb
BLAKE2b-256 18ff764cd2be1fd99d774fc44039c319dc0ed1d9d9afeaa02759a05121cccd4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e465a7bc9c2b9533eb9e06d2391f8819f811b5112919d4064c9fb8565aaafa08
MD5 9089018d6f4ba9fa0598eeaf019c2f50
BLAKE2b-256 4550fef7c172a8457c95894edf5fb04805024899cdfea41fa01b0636587b79e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8b9df30f524317b097dc53065b25dda33d6a4cc3c7c8bf4fc83ca7559c58cc0
MD5 3bff1f902f57ae0d6cb1a063cfe9cb05
BLAKE2b-256 f2b1befc0544283bb3923a928accf79ed685e5a725524bdb3491826670affc07

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6e50576bad7d56459d9792cd0b0dfe5469dad13646e9a9c0a8b1ba20b269f332
MD5 e7a177f84f77a4a10d60eb202745a438
BLAKE2b-256 f51357cb129093e0d6744b3c914ba6cbbdf51ed1b2c823882936c553a3a0cf1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp312-cp312-win_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b755ed4a4bc2faee849b54820023137d60d4c199e0a0822f0ff0c1bc49e49b48
MD5 6c0a57c238bc78d765accbe1d03ff36e
BLAKE2b-256 e17aa4dba5f11faf12a12ffba06d18019987851aab33b590242a602ffd4fb1bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp312-cp312-win_amd64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03165a264653bb77f6a11b412ae09c08bdb0c25864f3b8d42b816ac64b9d4b9e
MD5 b2f0cbef99bf4b732520f753195096f7
BLAKE2b-256 ed7826881ec466fb70cbc129dca26ccb5a52a0061face2c5822e4b61f00f9699

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bc5351d92ca6ac1cc32e097700e1161ad1ceaa4d9b2cca5abadb1e94576b325
MD5 b00ffa9273e46f29513a052d5bd8fa16
BLAKE2b-256 135f6089a51518cfd2ff40950eb26bcc36951d7b6d4f4213568aa0290265aff7

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d731abe1307720ea1a52d447555e8443a6d130e0e520243c0634a58f6edbc9d
MD5 7f204f4bdf87690bab8a69a2f1954489
BLAKE2b-256 e890e02ac2dad647423f947bb11f8322bfdba8ccfdd380e6c7b695add2d1acd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 611cebd3bbc2014576f4dcc7b845b3c594c96ddc287a3db9b78f22eff156a7d3
MD5 27b98795cdeec13b9f6f9fa5cb6dfe09
BLAKE2b-256 10b82dedef84d72e7271119217503b69ed6dc5d0b2077685e163caae669d9c70

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd1a3500c41784075c4946a995d5ad89f68fa0d226b63ff3c4d78f6ea6dd23e5
MD5 0e95f6483639d79078507039742e671d
BLAKE2b-256 b0bbd22c37c33dfe18084634f5ef89f8f0749ffe7b6e0ad312722aafd86bbbdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4090105fa4ad114766d0f8b34418d9a3b359bc8645da860a447e19770b5705d1
MD5 a8b4442316b192bdc528e4ca9415c2a8
BLAKE2b-256 6da899926865cd3f97c0cffc71cd38152c883b7ae666eb8327d355f01bddb33a

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp311-cp311-win_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 77d9303572cf0fbd0a2eb71aff167a4246541f43bf58b781b35b9d0bbab80ddc
MD5 3f4e3b49817b0323e4315eb71b39ab44
BLAKE2b-256 e759db667f15d62cb22c75b24f6b13c4151292aa1889a64ff9abce92f60d5a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp311-cp311-win_amd64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f101e0bf8638eba80694ecc3c3abb5309eb488f5271427536cb379c5c1e0ba9e
MD5 97a6010503c2fe3b62e45890574b8ee3
BLAKE2b-256 bbb1936d2f17d93fb160579ff56ca671d26154209bbc07ea8645eb11db1f9633

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc6aa3e7f21315dbe9868c0d13ffaac309514e8c816320c5f91230fa5b21df92
MD5 71665f99ad93412349538652814b4152
BLAKE2b-256 71b245ce33c6bca5c1961a90f2999138741daa0dc8cf6fe8b122c0ca2502632d

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 951f13c193e590fc88c9582a5341a130fe53ecece51043cff4bd54e25a5e022d
MD5 6b9e1aa0533610f29ab29855ffd5d758
BLAKE2b-256 84e10d5eaeac4dadd34fcd9ea154d0a6e5ce10c9fec0e02c73f807a16475b8b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f735e3acb3afc75d50803fde1598b467bf05d12d6854025df4398aebd75a14c
MD5 d70fff89ddbdd29414fe47c4fc26b296
BLAKE2b-256 6fd81c1ae22e05fbc763dc5a4e4c3cab356166913ef19d2c2da42e6f1be5c98c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cdbafbc992b38ea005ef37e20243c4177879020c82d414789fbb7fa22d6d3a9
MD5 95971ff6eeb21ae31548cf112dd7bdca
BLAKE2b-256 5336b45e6950878d9143f95db609432031ac688b311aa14450a8df239c648c45

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 dacc583bcd8db56e457ae559b910673c6b5df66f694d1f1154ce0b3982158d17
MD5 3b8077239fa7d7da020791a4946f3e19
BLAKE2b-256 428752c88c7ba873011526aa35b8fa0cf55d50effe967c999e7cb688155c5691

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp310-cp310-win_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a6615b036694f6906e30dc018b5b34898cff7ff760ab549f9dea1ada4f53495b
MD5 5e08fa7c6d1502cfdef3909d9f967dbf
BLAKE2b-256 8f807e48d2fc1afda13a6de50ab6f8340dbd104fd6c9bcd2ff11dec66e320f2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp310-cp310-win_amd64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5302fc698ef863e1a2fb540e95793b3d5a96abc89aa6423ee9c389d7d7ec5eab
MD5 e1d5b10aef37f36e6a81077d9691ee10
BLAKE2b-256 74f50da2b60137a6290ba7dda902b32da64d46c9a5107aa002da578f8b1ff8c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 329ffda6b0ef708ff22876f982ec886a509c8f73ac1ccb0190693d35cb09aa0f
MD5 8558cd5ce8d51b34a48d47a85b9528e0
BLAKE2b-256 ab0f351dcd23629732e35e716e13ad536a193124cda075ac5e59dc866503447b

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc84aee3c293a012db722aa2d6ea87be524646852684a5a4e54c1fb98ea9072f
MD5 319bb1099cea18b6d10444de5b80b436
BLAKE2b-256 1ccbb5aeaefbe471c4225c145c15c3bac96d67b0641a5e3ec9b871c62858c88c

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7dcddfb4905c5ef90a6fdc58dccbc049faf0056b68161042fc1e0526b20cba05
MD5 8fbd465fd71137eb1bc1b228cc28117a
BLAKE2b-256 5d87164a9bac39a817b505d27cf4490e6f66b2a1b8adb6b4e022b1ef4613bcfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5705f664266742b8d9323db714f58cf06a6cde739eb09fd9ca31cd233f9806e5
MD5 63747ddbb8d1a76f352e69f49a093786
BLAKE2b-256 f9b323144dcd9f9cd6f6150058653ecd0357c6b09361656ebd286165a5d76d34

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4fb016ad6ec8485991770dcff3fe072b0296eff6fefe7b3b4e28fb919dea3def
MD5 ee978b6b6fe1553134180a95c09853f9
BLAKE2b-256 7b958530ebd4387de87630b44a7ff6dbb0450e3d85e88d59f7bd0cba7a51c494

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp39-cp39-win_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: libcst-1.9.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for libcst-1.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b18c9d7316f96ab255a9a127289af0b9b7d1ebf8929e81eefdeccd951f4ba58e
MD5 7eda11c4d46659c87cff8ce16bb4cd01
BLAKE2b-256 8dacbbbcc5192fc61b80fd3fe635d2988ee5217221ba27e96eb8d63543bcbc54

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp39-cp39-win_amd64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae8b2abe4d5f52bfcad749350e4483976b7b5142f765ebab69959f2b4f99641c
MD5 b6129b2cc6a2b5c79fdd462ceeac4bc9
BLAKE2b-256 88410fa7f858bcfc33303c16ca3c202a913417e6bec77560a9722c121de679be

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ef45740663d0e6d8159b9eb6db436c4eb8dd0808c30812501542d65cd44c030
MD5 035ce656ebb2eb36c682bb4d61211eb6
BLAKE2b-256 96ccb881e367451e5cfdf16799515f32799d8a1e94059868f77b5f1ed0a418d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fceeaf1a1fd186557973904cfd2bb3c05ad835b01d7d04e9ec1df463c0add966
MD5 9fd660da6c3908fdaa43af80b2c11e58
BLAKE2b-256 acc2688b35bdd3afae0cd77779abbacf682b2e443a30f415680806a3cf4c15e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1879e5bd97f124acc787ae73cf52975cea46ac0282db5e8d9296173fbe87fa21
MD5 4f5a9f9a323af31540596455390a7cb3
BLAKE2b-256 0455d1de5211d9ce6d85e09b322725dd94e59bc5e99ce8ecb843ca2c4933a840

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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

File details

Details for the file libcst-1.9.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libcst-1.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4fa00cb71ffbda877dc4010ae8f3330ca605af859ddc6444bea96c4f294d648
MD5 c155ed4ec1f19094a2330028e0fcee24
BLAKE2b-256 8476b8762ea08967403e7305d98844df81148c03d1bc55bd47425bde424bc7d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for libcst-1.9.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: pypi_upload.yml on Instagram/LibCST

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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page