Skip to main content

py-tree-sitter

Build Status Build status

This module provides Python bindings to the tree-sitter parsing library.

Installation

This package currently only works with Python 3. There are no library dependencies, but you do need to have a C compiler installed.

pip3 install tree_sitter

Usage

Setup

First you'll need a Tree-sitter language implementation for each language that you want to parse. You can clone some of the existing language repos or create your own:

git clone https://github.com/tree-sitter/tree-sitter-go
git clone https://github.com/tree-sitter/tree-sitter-javascript
git clone https://github.com/tree-sitter/tree-sitter-python

Use the Language.build_library method to compile these into a library that's usable from Python. This function will return immediately if the library has already been compiled since the last time its source code was modified:

from tree_sitter import Language

Language.build_library(
    # Store the library in the `build` directory
    "build/my-languages.so",
    # Include one or more languages
    ["vendor/tree-sitter-go", "vendor/tree-sitter-javascript", "vendor/tree-sitter-python"],
)

Load the languages into your app as Language objects:

GO_LANGUAGE = Language("build/my-languages.so", "go")
JS_LANGUAGE = Language("build/my-languages.so", "javascript")
PY_LANGUAGE = Language("build/my-languages.so", "python")

Basic Parsing

Create a Parser and configure it to use one of the languages:

parser = Parser()
parser.set_language(PY_LANGUAGE)

Parse some source code:

tree = parser.parse(
    bytes(
        """
def foo():
    if bar:
        baz()
""",
        "utf8",
    )
)

If you have your source code in some data structure other than a bytes object, you can pass a "read" callable to the parse function.

The read callable can use either the byte offset or point tuple to read from buffer and return source code as bytes object. An empty bytes object or None terminates parsing for that line. The bytes must encode the source as UTF-8.

For example, to use the byte offset:

src = bytes(
    """
def foo():
    if bar:
        baz()
""",
    "utf8",
)


def read_callable(byte_offset, point):
    return src[byte_offset : byte_offset + 1]


tree = parser.parse(read_callable)

And to use the point:

src_lines = ["def foo():\n", "    if bar:\n", "        baz()"]


def read_callable(byte_offset, point):
    row, column = point
    if row >= len(src_lines) or column >= len(src_lines[row]):
        return None
    return src_lines[row][column:].encode("utf8")


tree = parser.parse(read_callable)

Inspect the resulting Tree:

root_node = tree.root_node
assert root_node.type == 'module'
assert root_node.start_point == (1, 0)
assert root_node.end_point == (3, 13)

function_node = root_node.children[0]
assert function_node.type == 'function_definition'
assert function_node.child_by_field_name('name').type == 'identifier'

function_name_node = function_node.children[1]
assert function_name_node.type == 'identifier'
assert function_name_node.start_point == (1, 4)
assert function_name_node.end_point == (1, 7)

assert root_node.sexp() == "(module "
    "(function_definition "
        "name: (identifier) "
        "parameters: (parameters) "
        "body: (block "
            "(if_statement "
                "condition: (identifier) "
                "consequence: (block "
                    "(expression_statement (call "
                        "function: (identifier) "
                        "arguments: (argument_list))))))))"

Walking Syntax Trees

If you need to traverse a large number of nodes efficiently, you can use a TreeCursor:

cursor = tree.walk()

assert cursor.node.type == "module"

assert cursor.goto_first_child()
assert cursor.node.type == "function_definition"

assert cursor.goto_first_child()
assert cursor.node.type == "def"

# Returns `False` because the `def` node has no children
assert not cursor.goto_first_child()

assert cursor.goto_next_sibling()
assert cursor.node.type == "identifier"

assert cursor.goto_next_sibling()
assert cursor.node.type == "parameters"

assert cursor.goto_parent()
assert cursor.node.type == "function_definition"

Editing

When a source file is edited, you can edit the syntax tree to keep it in sync with the source:

tree.edit(
    start_byte=5,
    old_end_byte=5,
    new_end_byte=5 + 2,
    start_point=(0, 5),
    old_end_point=(0, 5),
    new_end_point=(0, 5 + 2),
)

Then, when you're ready to incorporate the changes into a new syntax tree, you can call Parser.parse again, but pass in the old tree:

new_tree = parser.parse(new_source, tree)

This will run much faster than if you were parsing from scratch.

The Tree.get_changed_ranges method can be called on the old tree to return the list of ranges whose syntactic structure has been changed:

for changed_range in tree.get_changed_ranges(new_tree):
    print("Changed range:")
    print(f"  Start point {changed_range.start_point}")
    print(f"  Start byte {changed_range.start_byte}")
    print(f"  End point {changed_range.end_point}")
    print(f"  End byte {changed_range.end_byte}")

Pattern-matching

You can search for patterns in a syntax tree using a tree query:

query = PY_LANGUAGE.query(
    """
(function_definition
  name: (identifier) @function.def)

(call
  function: (identifier) @function.call)
"""
)

captures = query.captures(tree.root_node)
assert len(captures) == 2
assert captures[0][0] == function_name_node
assert captures[0][1] == "function.def"

The Query.captures() method takes optional start_point, end_point, start_byte and end_byte keyword arguments which can be used to restrict the query's range. Only one of the ..._byte or ..._point pairs need to be given to restrict the range. If all are omitted, the entire range of the passed node is used.

Release files for tree-sitter 0.20.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for tree-sitter 0.20.4
File Size Uploaded
tree_sitter-0.20.4.tar.gz 140.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for tree-sitter 0.20.4
File
tree_sitter-0.20.4-pp310-pypy310_pp73-win_amd64.whl PyPy 3.10 PyPy 3.10 7.3 Windows x86-64 Details
tree_sitter-0.20.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64 Details
tree_sitter-0.20.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
tree_sitter-0.20.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 10.9+ x86-64 Details
tree_sitter-0.20.4-pp39-pypy39_pp73-win_amd64.whl PyPy 3.9 PyPy 3.9 7.3 Windows x86-64 Details
tree_sitter-0.20.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
tree_sitter-0.20.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
tree_sitter-0.20.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 10.9+ x86-64 Details
tree_sitter-0.20.4-pp38-pypy38_pp73-win_amd64.whl PyPy 3.8 PyPy 3.8 7.3 Windows x86-64 Details
tree_sitter-0.20.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-64 Details
tree_sitter-0.20.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARM64 Details
tree_sitter-0.20.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64 Details
tree_sitter-0.20.4-pp37-pypy37_pp73-win_amd64.whl PyPy 3.7 PyPy 3.7 7.3 Windows x86-64 Details
tree_sitter-0.20.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ x86-64 Details
tree_sitter-0.20.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ ARM64 Details
tree_sitter-0.20.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64 Details
tree_sitter-0.20.4-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
tree_sitter-0.20.4-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
tree_sitter-0.20.4-cp312-cp312-musllinux_1_1_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-64 Details
tree_sitter-0.20.4-cp312-cp312-musllinux_1_1_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ ARM64 Details
tree_sitter-0.20.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
tree_sitter-0.20.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
tree_sitter-0.20.4-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
tree_sitter-0.20.4-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
tree_sitter-0.20.4-cp312-cp312-macosx_10_9_universal2.whl CPython 3.12 CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64) Details
tree_sitter-0.20.4-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
tree_sitter-0.20.4-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
tree_sitter-0.20.4-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
tree_sitter-0.20.4-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
tree_sitter-0.20.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
tree_sitter-0.20.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
tree_sitter-0.20.4-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
tree_sitter-0.20.4-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
tree_sitter-0.20.4-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
tree_sitter-0.20.4-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
tree_sitter-0.20.4-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
tree_sitter-0.20.4-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
tree_sitter-0.20.4-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
tree_sitter-0.20.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
tree_sitter-0.20.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
tree_sitter-0.20.4-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
tree_sitter-0.20.4-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
tree_sitter-0.20.4-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
tree_sitter-0.20.4-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
tree_sitter-0.20.4-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
tree_sitter-0.20.4-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
tree_sitter-0.20.4-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
tree_sitter-0.20.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
tree_sitter-0.20.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
tree_sitter-0.20.4-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
tree_sitter-0.20.4-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
tree_sitter-0.20.4-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
tree_sitter-0.20.4-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
tree_sitter-0.20.4-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
tree_sitter-0.20.4-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
tree_sitter-0.20.4-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
tree_sitter-0.20.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
tree_sitter-0.20.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
tree_sitter-0.20.4-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
tree_sitter-0.20.4-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
tree_sitter-0.20.4-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
tree_sitter-0.20.4-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
tree_sitter-0.20.4-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
tree_sitter-0.20.4-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
tree_sitter-0.20.4-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
tree_sitter-0.20.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
tree_sitter-0.20.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
tree_sitter-0.20.4-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
tree_sitter-0.20.4-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
tree_sitter-0.20.4-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
tree_sitter-0.20.4-cp36-cp36m-musllinux_1_1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64 Details
tree_sitter-0.20.4-cp36-cp36m-musllinux_1_1_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64 Details
tree_sitter-0.20.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
tree_sitter-0.20.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
tree_sitter-0.20.4-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 19.9 MB

Release files / tree_sitter-0.20.4.tar.gz

Download URL tree_sitter-0.20.4.tar.gz
Size 140.7 kB
Tags Source
SHA-256 checksum
How to use checksums
6adb123e2f3e56399bbf2359924633c882cc40ee8344885200bca0922f713be5
BLAKE2b-256 checksum
How to use checksums
4a6471b3a0ff7d0d89cb333caeca01992099c165bdd663e7990ea723615e60f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp310-pypy310_pp73-win_amd64.whl

Download URL tree_sitter-0.20.4-pp310-pypy310_pp73-win_amd64.whl
Size 107.7 kB
Tags PyPy 3.10 PyPy 3.10 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
d933a942fde39876b99c36f12aa3764e4a555ae9366c10ce6cca8c16341c1bbf
BLAKE2b-256 checksum
How to use checksums
3dd5e7cc0077647855708d50e8edb780330bcc7c429ce4da031e23ba570248c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter-0.20.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 127.1 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
5ec46355bf3ff23f54d5e365871ffd3e05cfbc65d1b36a8be7c0bcbda30a1d43
BLAKE2b-256 checksum
How to use checksums
2ff1e7014276dce702ccfa20dc122bd2772dcaf614d63ea42699214cb3f0b11d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter-0.20.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 124.6 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
0dfc14be73cf46126660a3aecdd0396e69562ad1a902245225ca7bd29649594e
BLAKE2b-256 checksum
How to use checksums
9e23e68cb8b65f1e058922c8bae777042b5e43041ef58ebd20c850e98c1d6e9d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl

Download URL tree_sitter-0.20.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Size 126.6 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
859260b90f0e3867ae840e39f54e830f607b3bc531bc21deeeeaa8a30cbb89ad
BLAKE2b-256 checksum
How to use checksums
11fe1e6e9118384cf70bfc9e69bf36dc79c64731da2e532c640b37ba4d0387bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp39-pypy39_pp73-win_amd64.whl

Download URL tree_sitter-0.20.4-pp39-pypy39_pp73-win_amd64.whl
Size 107.8 kB
Tags PyPy 3.9 PyPy 3.9 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
a25b1087e4f7825b2458dacf5f4b0be2938f78e850e822edca1ff4994b56081a
BLAKE2b-256 checksum
How to use checksums
0b293b86bfa49d16a89e2408d835dab06a0a3f8b570e83787d6f16f7af9c38a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter-0.20.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 127.1 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
a66d95bbf92175cdc295d6d77f330942811f02e3aaf3fc64431cb749683b2f7d
BLAKE2b-256 checksum
How to use checksums
189777cec95a2294b536f930565ad333a1562aecfe8382e7dd503472bd2e250e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter-0.20.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 124.6 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
4992dd226055b6cd0a4f5661c66b799a73d3eff716302e0f7ab06594ee12d49f
BLAKE2b-256 checksum
How to use checksums
4ebea2afacde7f846c74a811282cdd8c0fdc2bf52265682121a73ed72b21703e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl

Download URL tree_sitter-0.20.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Size 126.6 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
72830dc85a10430eca3d56739b7efcd7a05459c8d425f08c1aee6179ab7f13a9
BLAKE2b-256 checksum
How to use checksums
5c2bd226a6b7e68cdb684601ee69deaf33d4596cfe86966b1f4ee6119c69ce70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp38-pypy38_pp73-win_amd64.whl

Download URL tree_sitter-0.20.4-pp38-pypy38_pp73-win_amd64.whl
Size 107.8 kB
Tags PyPy 3.8 PyPy 3.8 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
99a3c2824d4cfcffd9f961176891426bde2cb36ece5280c61480be93319c23c4
BLAKE2b-256 checksum
How to use checksums
ece03f12d8e9f2d49ed1d40bc1a9645714c521b512dfd4322298044a760fdf10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter-0.20.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 127.1 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
2051e8a70fd8426f27a43dad71d11929a62ce30a9b1eb65bba0ed79e82481592
BLAKE2b-256 checksum
How to use checksums
828fbb22c9fdd95b2b4967d6b94902f559645792151138827f4046cbcf8b72d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter-0.20.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 124.6 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
841efb40c116ab0a066924925409a8a4dcffeb39a151c0b2a1c2abe56ad4fb42
BLAKE2b-256 checksum
How to use checksums
bef57af3a567ef7d8088cd7c4051672297868df7d0e9a42e2694197214e7694e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl

Download URL tree_sitter-0.20.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Size 126.6 kB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
36f8adf2126f496cf376b6e4b707cba061c25beb17841727eef6f0e083e53e1f
BLAKE2b-256 checksum
How to use checksums
7dcdc6a0fc2c9817fdffdb271933cff266711cbecd45d1aea00e2ac9da61ecb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp37-pypy37_pp73-win_amd64.whl

Download URL tree_sitter-0.20.4-pp37-pypy37_pp73-win_amd64.whl
Size 107.8 kB
Tags PyPy 3.7 PyPy 3.7 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
a15fbabd3bc8e29c48289c156d743e69f5ec72bb125cf44f7adbdaa1937c3da6
BLAKE2b-256 checksum
How to use checksums
bc307fed5eaa119f9d42b9fa2ac162520cce9cf949461ef1e9646e36ab096028
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter-0.20.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 129.8 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
ccf0396e47efffc0b528959a8f2e2346a98297579f867e9e1834c2aad4be829c
BLAKE2b-256 checksum
How to use checksums
50bc9898610a61e889b54df702e651f9236b8abca28952d09d8c0c674a22cba7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter-0.20.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 126.1 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
dfc76225529ee14a53e84413480ce81ec3c44eaa0455c140e961c90ac3118ead
BLAKE2b-256 checksum
How to use checksums
f941eed9fe8beac6f3724f487ec5acc316977214a8095b625f8ff939cdc80c1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl

Download URL tree_sitter-0.20.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Size 126.6 kB
Tags PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a7eec3b55135fe851a38fa248c9fd75fc3d58ceb6e1865b795e416e4d598c2a1
BLAKE2b-256 checksum
How to use checksums
91d8f81468e99cedc1a3a2f7dbf3a2606d7cdd03a29ee62be9781bda2326ef32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp312-cp312-win_amd64.whl

Download URL tree_sitter-0.20.4-cp312-cp312-win_amd64.whl
Size 107.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
973e871167079a1b1d7304d361449253efbe2a6974728ad563cf407bd02ddccb
BLAKE2b-256 checksum
How to use checksums
7a473e8491b14d0b6aa671a34a60c9347702f276fc4967e4c92273d5bcfd5c2e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp312-cp312-win32.whl

Download URL tree_sitter-0.20.4-cp312-cp312-win32.whl
Size 95.3 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
c16b48378041fc9702b6aa3480f2ffa49ca8ea58141a862acd569e5a0679655f
BLAKE2b-256 checksum
How to use checksums
bae94797c420e71946040f44a88e095f2dbd2c20cf517eca59a3c79a0e10adf6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp312-cp312-musllinux_1_1_x86_64.whl

Download URL tree_sitter-0.20.4-cp312-cp312-musllinux_1_1_x86_64.whl
Size 487.9 kB
Tags CPython 3.12 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
bf47047420021d50aec529cb66387c90562350b499ddf56ecef1fc8255439e30
BLAKE2b-256 checksum
How to use checksums
5b4d9ca258188c19e5588e30c2862879c6a061d17a33cd1c24321d3d9b029591
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp312-cp312-musllinux_1_1_aarch64.whl

Download URL tree_sitter-0.20.4-cp312-cp312-musllinux_1_1_aarch64.whl
Size 476.6 kB
Tags CPython 3.12 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
b6fd1c881ab0de5faa67168db2d001eee32be5482cb4e0b21b217689a05b6fe4
BLAKE2b-256 checksum
How to use checksums
1028a6ccb6484ee7af1587f82e91a94dc2d9502108b43a7a51b8ab19d9d603fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter-0.20.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 493.9 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
20ef2ee6d9bb8e21713949e5ff769ed670fe1217f95b7eeb6c675788438c1e6e
BLAKE2b-256 checksum
How to use checksums
ea2e82c394b3fb46ca0879a66837c917b0856c612c71ea0d8301a2cd659498bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter-0.20.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 481.9 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9b1c0f8c0e3e50267566f5116cdceedf4e23e8c08b55ef3becbe954a11b16e84
BLAKE2b-256 checksum
How to use checksums
04a5a49254e0314df03d1c368ac80bff8f1307a41844ee0d55161ab68862ea93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp312-cp312-macosx_11_0_arm64.whl

Download URL tree_sitter-0.20.4-cp312-cp312-macosx_11_0_arm64.whl
Size 128.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6de537bca0641775d8d175d37303d54998980fc0d997dd9aa89e16b415bf0cc3
BLAKE2b-256 checksum
How to use checksums
2081a908c7acf36fdd01cd7277e34d7e26c72252cd99eacb84123824a52d1267
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp312-cp312-macosx_10_9_x86_64.whl

Download URL tree_sitter-0.20.4-cp312-cp312-macosx_10_9_x86_64.whl
Size 138.1 kB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9d70bfa550cf22c9cea9b3c0d18b889fc4f2a7e9dcf1d6cc93f49fa9d4a94954
BLAKE2b-256 checksum
How to use checksums
dde3e028aab9e571646f1e8b5b4297f41a90d88f2b6c275989053d2d73a588aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp312-cp312-macosx_10_9_universal2.whl

Download URL tree_sitter-0.20.4-cp312-cp312-macosx_10_9_universal2.whl
Size 257.4 kB
Tags CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
c4c1af5ed4306071d30970c83ec882520a7bf5d8053996dbc4aa5c59238d4990
BLAKE2b-256 checksum
How to use checksums
ac17cd3fe4ea74a33a1737e42cab20dc48f13b7fc855af99301d43679bc124ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp311-cp311-win_amd64.whl

Download URL tree_sitter-0.20.4-cp311-cp311-win_amd64.whl
Size 107.6 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
ba9215c0e7529d9eb370528e5d99b7389d14a7eae94f07d14fa9dab18f267c62
BLAKE2b-256 checksum
How to use checksums
2e413c1534be0d0fce9ea6ccebd1855ef500afa05c54bbbce397988c6b592fb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp311-cp311-win32.whl

Download URL tree_sitter-0.20.4-cp311-cp311-win32.whl
Size 95.1 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
8d04c75a389b2de94952d602264852acff8cd3ed1ccf8a2492a080973d5ddd58
BLAKE2b-256 checksum
How to use checksums
bf14fd7302314acd1fdc38ffb19fa5d0779ff53a333cf4e5226fab36eaba4cce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL tree_sitter-0.20.4-cp311-cp311-musllinux_1_1_x86_64.whl
Size 484.4 kB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
08c3ba2561b61a83c28ca06a0bce2a5ffcfb6b39f9d27a45e5ebd9cad2bedb7f
BLAKE2b-256 checksum
How to use checksums
9148b3a8e2566256e18da3094b42288cb3e00ed5f6e2078aff04bfaba85776f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL tree_sitter-0.20.4-cp311-cp311-musllinux_1_1_aarch64.whl
Size 473.5 kB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
a418ca71309ea7052e076f08d623f33f58eae01a8e8cdc1e6d3a01b5b8ddebfe
BLAKE2b-256 checksum
How to use checksums
98a461236fe6303890ff7a2d23f8e05eb4aa372741de2e0bd65baa4f2961c359
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter-0.20.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 490.5 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
527ca72c6a8f60fa719af37fa86f58b7ad0e07b8f74d1c1c7e926c5c888a7e6b
BLAKE2b-256 checksum
How to use checksums
3fce80b12e0e470bf939dd57507fedad5cdc30e92391703031561e829d6a1819
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter-0.20.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 479.5 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
822e02366dbf223697b2b56b8f91aa5b60571f9fe7c998988a381db1c69604e9
BLAKE2b-256 checksum
How to use checksums
7bc636a6a08eaef5cf7f8beef91666c9f1f45ec0771fa5f9a67f1de86f2d0ec8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp311-cp311-macosx_11_0_arm64.whl

Download URL tree_sitter-0.20.4-cp311-cp311-macosx_11_0_arm64.whl
Size 128.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
060d4e5b803be0975f1ac46e54a292eab0701296ccd912f6cdac3f7331e29143
BLAKE2b-256 checksum
How to use checksums
f45b7a060f566389ea65614ae40464ff275473282cefb316b3c1865b4c684af8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp311-cp311-macosx_10_9_x86_64.whl

Download URL tree_sitter-0.20.4-cp311-cp311-macosx_10_9_x86_64.whl
Size 138.0 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2a0ffd76dd991ba745bb5d0ba1d583bec85726d3ddef8c9685dc8636a619adde
BLAKE2b-256 checksum
How to use checksums
af0aa6e47c589b671ea1b48c314ca5fe9f40a77d0c3054d5117435fa8c15f372
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp311-cp311-macosx_10_9_universal2.whl

Download URL tree_sitter-0.20.4-cp311-cp311-macosx_10_9_universal2.whl
Size 257.5 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
9d22ee75f45836554ee6a11e50dd8f9827941e67c49fce9a0790245b899811a9
BLAKE2b-256 checksum
How to use checksums
aba7ec261bea29ca9078759253cb352ef5f6e559b8a23a4ae7330f6c40082807
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp310-cp310-win_amd64.whl

Download URL tree_sitter-0.20.4-cp310-cp310-win_amd64.whl
Size 107.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
f792684cee8a46d9194d9f4223810e54ccc704470c5777538d59fbde0a4c91bf
BLAKE2b-256 checksum
How to use checksums
91ddb10f5ad674a61d557883997ca8db641a3be2325831c36d6c2d44b15a6610
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp310-cp310-win32.whl

Download URL tree_sitter-0.20.4-cp310-cp310-win32.whl
Size 95.1 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
b4755229dc18644fe48bcab974bde09b171fcb6ef625d3cb5ece5c6198f4223e
BLAKE2b-256 checksum
How to use checksums
1c14209398d8932083171b72ab1cb094ce42beea60da0ea08622f90aee033600
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL tree_sitter-0.20.4-cp310-cp310-musllinux_1_1_x86_64.whl
Size 483.1 kB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
e9e9e594bbefb76ad9ea256f5c87eba7591b4758854d3df83ce4df415933a006
BLAKE2b-256 checksum
How to use checksums
1b476fc30db3ede826301117eae5347a9f5ee9d21f685678868fab050f3c88a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL tree_sitter-0.20.4-cp310-cp310-musllinux_1_1_aarch64.whl
Size 472.3 kB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
7c18c64ddd44b75b7e1660b9793753eda427e4b145b6216d4b2d2e9b200c74f2
BLAKE2b-256 checksum
How to use checksums
624c38914d44c4ef1625de248812363c198623502d08e71feeedf182ce814362
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter-0.20.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 488.2 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
36b10c9c69e825ba65cf9b0f77668bf33e70d2a5764b64ad6f133f8cc9220f09
BLAKE2b-256 checksum
How to use checksums
64168a4b1f8884967be6e9c68dd1019a1809acc6339a60b84d179ed0bd707d14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter-0.20.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 477.1 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ae28e25d551f406807011487bdfb9728041e656b30b554fa7f3391ab64ed69f9
BLAKE2b-256 checksum
How to use checksums
7d67091589b7c40fafb3990db35d32129071631915bf5f48dcdd8ce70fe3c74d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp310-cp310-macosx_11_0_arm64.whl

Download URL tree_sitter-0.20.4-cp310-cp310-macosx_11_0_arm64.whl
Size 128.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
66a68b156ba131e9d8dff4a1f72037f4b368cc50c58f18905a91743ae1d1c795
BLAKE2b-256 checksum
How to use checksums
7a1fbfa3b262b336f69559711a658bbea28fc8b70d1a2136307ef82f72f07eb4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp310-cp310-macosx_10_9_x86_64.whl

Download URL tree_sitter-0.20.4-cp310-cp310-macosx_10_9_x86_64.whl
Size 138.0 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
88da7e2e4c69881cd63916cc24ae0b809f96aae331da45b418ae6b2d1ed2ca19
BLAKE2b-256 checksum
How to use checksums
7383721fc2b95a03b88248cd3c1d5d12688c4119c66937a28f8c791b350d561f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp310-cp310-macosx_10_9_universal2.whl

Download URL tree_sitter-0.20.4-cp310-cp310-macosx_10_9_universal2.whl
Size 257.5 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
c259b9bcb596e54f54713eb3951226fc834d65289940f4bfdcdf519f08e8e876
BLAKE2b-256 checksum
How to use checksums
ba0556d53a682a9a00874a7d6985fc37d872238b154e19263c15a638698784d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp39-cp39-win_amd64.whl

Download URL tree_sitter-0.20.4-cp39-cp39-win_amd64.whl
Size 107.8 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
7095bb9aff297fa9c6026bf8914fd295997d714d1a6ee9a1edf7282c772f9f64
BLAKE2b-256 checksum
How to use checksums
d0170195323d376bf23e43377c210b445a60c46c83313709e471abded59972eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp39-cp39-win32.whl

Download URL tree_sitter-0.20.4-cp39-cp39-win32.whl
Size 95.2 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
427a9a39360cc1816e28f8182550e478e4ba983595a2565ab9dfe32ea1b03fd7
BLAKE2b-256 checksum
How to use checksums
e6b4fae0ddd75a342024d81deb35ab7f2f32983d24e05a5b7a42c88e3fcd4322
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL tree_sitter-0.20.4-cp39-cp39-musllinux_1_1_x86_64.whl
Size 482.4 kB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
21a937942e4729abbe778a609d2c218574436cb351c36fba89ef3c8c6066ec78
BLAKE2b-256 checksum
How to use checksums
784fa9aedcaa6472d529081cd08a470cc28f1d73fc7266e5b2f806126972fabe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL tree_sitter-0.20.4-cp39-cp39-musllinux_1_1_aarch64.whl
Size 471.8 kB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
0f2422c9ee70ba972dfc3943746e6cf7fc03725a866908950245bda9ccfc7301
BLAKE2b-256 checksum
How to use checksums
4317fbb1bc611e258f547c04725e69f0aeefa1f2664be481b0a82aa2c4468854
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter-0.20.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 487.6 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d404a8ca9de9b0843844f0cd4d423f46bc46375ab8afb63b1d8ec01201457ac8
BLAKE2b-256 checksum
How to use checksums
90050d5c894daf7136c333518919e485501ded65ddbd7dea30aa97076286bcf0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter-0.20.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 476.4 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8250725c5f78929aeb2c71db5dca76f1ef448389ca16f9439161f90978bb8478
BLAKE2b-256 checksum
How to use checksums
46011da76434037cdf05148ebd08dd08454589f59fdb5ec9a98b7fed1bff71a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp39-cp39-macosx_11_0_arm64.whl

Download URL tree_sitter-0.20.4-cp39-cp39-macosx_11_0_arm64.whl
Size 128.7 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
11e93f8b4bbae04070416a82257a7ab2eb0afb76e093ae3ea73bd63b792f6846
BLAKE2b-256 checksum
How to use checksums
ed718aaa4e1921875d15cf1b00558f05bba01bcb40737452d2be972cd90291fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp39-cp39-macosx_10_9_x86_64.whl

Download URL tree_sitter-0.20.4-cp39-cp39-macosx_10_9_x86_64.whl
Size 138.0 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7fb6286bb1fae663c45ff0700ec88fb9b50a81eed2bae8a291f95fcf8cc19547
BLAKE2b-256 checksum
How to use checksums
15b8c376e34b956067ae7a6e21bdd0fbd451db0cc1154d3246e9f38238ef06b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp39-cp39-macosx_10_9_universal2.whl

Download URL tree_sitter-0.20.4-cp39-cp39-macosx_10_9_universal2.whl
Size 257.5 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e89f6508e30fce05e2c724725d022db30d877817b9d64f933506ffb3a3f4a2c2
BLAKE2b-256 checksum
How to use checksums
d8f5955c42068c00064cf9dea44e82332920304a26ce8e50973be35bfd07a078
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp38-cp38-win_amd64.whl

Download URL tree_sitter-0.20.4-cp38-cp38-win_amd64.whl
Size 107.8 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
8eee8adf54033dc48eab84b040f4d7b32355a964c4ae0aae5dfbdc4dbc3364ca
BLAKE2b-256 checksum
How to use checksums
9a572f1295482ab62c0f3e680c92d73a9dccf41975220518ecf93ebdba0d795b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp38-cp38-win32.whl

Download URL tree_sitter-0.20.4-cp38-cp38-win32.whl
Size 95.1 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
6a77ac3cdcddd80cdd1fd394318bff99f94f37e08d235aaefccb87e1224946e5
BLAKE2b-256 checksum
How to use checksums
312e4aba9c2ce846354033ddad44fc86ac3dcb58d57eaaf3fa93d9080fad28dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL tree_sitter-0.20.4-cp38-cp38-musllinux_1_1_x86_64.whl
Size 487.7 kB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
281f3e5382d1bd7fccc88d1afe68c915565bc24f8b8dd4844079d46c7815b8a7
BLAKE2b-256 checksum
How to use checksums
c01b9c01dfc19c87101e8ddde99ee001fbdbf0a7033bad801eee4d243849d49f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL tree_sitter-0.20.4-cp38-cp38-musllinux_1_1_aarch64.whl
Size 478.5 kB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
dd8c352f4577f61098d06cf3feb7fd214259f41b5036b81003860ed54d16b448
BLAKE2b-256 checksum
How to use checksums
26aa1cb203cdbf0798151811812a9857853ac109f1fce9eaf3efa240321e3f97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter-0.20.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 492.4 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
78e76307f05aca6cde72f3307b4d53701f34ae45f2248ceb83d1626051e201fd
BLAKE2b-256 checksum
How to use checksums
650b9fc79b4df91a4afcc6ba2829bc7f1cd48c194cce8f6ad52cd3987f3bb127
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter-0.20.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 482.3 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9b8d7539075606027b67764543463ff2bc4e52f4158ef6dc419c9f5625aa5383
BLAKE2b-256 checksum
How to use checksums
779ecb46b11abb6f8786cd554f496000c12d2446445046b138e6049f0ff16140
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp38-cp38-macosx_11_0_arm64.whl

Download URL tree_sitter-0.20.4-cp38-cp38-macosx_11_0_arm64.whl
Size 128.7 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fdd361fe1cc68db68b4d85165641275e34b86cc26b2bab932790204fa14824dc
BLAKE2b-256 checksum
How to use checksums
e9c7441229a9f90614b042e4d5a2a1bb5986aea0b98e495ddb9dbbdae3ee8dd2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp38-cp38-macosx_10_9_x86_64.whl

Download URL tree_sitter-0.20.4-cp38-cp38-macosx_10_9_x86_64.whl
Size 138.0 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7859717c5d62ee386b3d036cab8ed0f88f8c027b6b4ae476a55a8c5fb8aab713
BLAKE2b-256 checksum
How to use checksums
be7908b08e1a82d9e5f78d2b7598c3f246aa0643299377a94e4139d0acf08c35
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp38-cp38-macosx_10_9_universal2.whl

Download URL tree_sitter-0.20.4-cp38-cp38-macosx_10_9_universal2.whl
Size 257.4 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
f42fd1104efaad8151370f1936e2a488b7337a5d24544a9ab59ba4c4010b1272
BLAKE2b-256 checksum
How to use checksums
17862f9da3757ca7cc4919f244a273e6cee5cb138233644f43699ce7db31aac3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp37-cp37m-win_amd64.whl

Download URL tree_sitter-0.20.4-cp37-cp37m-win_amd64.whl
Size 107.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
6140d037239a41046f5d34fba5e0374ee697adb4b48b90579c618b5402781c11
BLAKE2b-256 checksum
How to use checksums
eca0d8a0263095a08fd3abb284a7f39336695b401e6c98a1d2630077ce62aa4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp37-cp37m-win32.whl

Download URL tree_sitter-0.20.4-cp37-cp37m-win32.whl
Size 95.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
1b7c1d95f006b3de42fbf4045bd00c273d113e372fcb6a5378e74ed120c12032
BLAKE2b-256 checksum
How to use checksums
e330d223338eec6449e065a118fc1397c69e85a6d6f709ad9ed67085239ef634
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL tree_sitter-0.20.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 480.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
327c40f439c6155e4eee54c4657e4701a04f5f4816d9defdcb836bf65bf83d21
BLAKE2b-256 checksum
How to use checksums
bcd9a0000799bdc680d874ffa1f3ce7c96278ad628e9399d362863b3e97935b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp37-cp37m-musllinux_1_1_aarch64.whl

Download URL tree_sitter-0.20.4-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 471.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
b641e88a97eab002a1736d93ef5a4beac90ea4fd6e25affd1831319b99f456c9
BLAKE2b-256 checksum
How to use checksums
9d77b699bfb97019ff9087133e696fe3009a979b09498facf7998a936f78e5e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter-0.20.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 485.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ecaed46241e071752195a628bb97d2b740f2fde9e34f8a74456a4ea8bb26df88
BLAKE2b-256 checksum
How to use checksums
5418eb04ae7706d95369f0a325aa8f51042b6cd4975488dff217c69606298be7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter-0.20.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 474.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6c913b65cbe10996116988ac436748f24883b5097e58274223e89bb2c5d1bb1a
BLAKE2b-256 checksum
How to use checksums
9d848b242f2356d42fca8772bb3edbdfade7a265a61d0bd7af23bae913c0692d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL tree_sitter-0.20.4-cp37-cp37m-macosx_10_9_x86_64.whl
Size 137.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
28d5f84e34e276887e3a240b60906ca7e2b51e975f3145c3149ceed977a69508
BLAKE2b-256 checksum
How to use checksums
010846f6e18e717daf95f10b54ad7725bf86e540629d46d443a7e5fe0e0c025b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp36-cp36m-win_amd64.whl

Download URL tree_sitter-0.20.4-cp36-cp36m-win_amd64.whl
Size 122.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
fe10779347a6c067af29cb37fd4b75fa96c5cb68f587cc9530b70fe3f2a51a55
BLAKE2b-256 checksum
How to use checksums
6fb91b9dfc541d33a4fcecafafb795956d28fe8e63b7285931f13233c4a0e41e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp36-cp36m-win32.whl

Download URL tree_sitter-0.20.4-cp36-cp36m-win32.whl
Size 105.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
ce6a85027c66fa3f09d482cc6d41927ea40955f7f33b86aedd26dd932709a2c9
BLAKE2b-256 checksum
How to use checksums
afe970bc67a45079962016ea09e9be962e181691db9a691c12cb3d933b49a6d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp36-cp36m-musllinux_1_1_x86_64.whl

Download URL tree_sitter-0.20.4-cp36-cp36m-musllinux_1_1_x86_64.whl
Size 479.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
0e83f641fe6f27d91bd4d259fff5d35de1567d3f581b9efe9bbd5be50fe4ddc7
BLAKE2b-256 checksum
How to use checksums
a8388b6fe4b951a03f81affe71540000b8a7b849a6221900b7502f9274562907
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp36-cp36m-musllinux_1_1_aarch64.whl

Download URL tree_sitter-0.20.4-cp36-cp36m-musllinux_1_1_aarch64.whl
Size 469.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
640f60a5b966f0990338f1bf559455c3dcb822bc4329d82b3d42f32a48374dfe
BLAKE2b-256 checksum
How to use checksums
936cb02fb7b57d57abf591214e9a58891eff1dfadb962c5e613ad6ff83b16209
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter-0.20.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 485.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5022bea67e479ad212be7c05b983a72e297a013efb4e8ea5b5b4d7da79a9fdef
BLAKE2b-256 checksum
How to use checksums
e2d03f7c48929ca434c423a49e380ebdc0568efacc6dd36f05c9fd8a25acf632
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter-0.20.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 474.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
7cee6955c2c97fc5927a41c7a8b06647c4b4d9b99b8a1581bf1183435c8cec3e
BLAKE2b-256 checksum
How to use checksums
5fb0ddc8b366e26456d70e110aa15063a6c7ceff2f181c7ebdd310dd60651bef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / tree_sitter-0.20.4-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL tree_sitter-0.20.4-cp36-cp36m-macosx_10_9_x86_64.whl
Size 137.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9d33a55598dd18a4d8b869a3417de82a4812c3a7dc7e61cb025ece3e9c3e4e96
BLAKE2b-256 checksum
How to use checksums
493fd48ab120262e3190cf73c1da67bec458e7420a4ff09005ab39452c5f2aa3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.6
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