Skip to main content

Binary Python wheels for all tree sitter languages.

py-tree-sitter is a fantastic library that provides Python bindings for the even more fantastic tree-sitter parsing library.

py-tree-sitter-languages provides binary Python wheels for all tree sitter languages. The binary wheels remove the need to download and compile support for individual languages.

Install

pip install tree_sitter_languages

Source installs are not supported. To see how the binary wheels are built, look at:

  1. setup.py — Python package setup.

  2. repos.txt — Text file that contains a list of included language repositories and their commit hashes.

  3. build.py — Python script to download and build the language repositories.

  4. .github/workflows/release.yml — GitHub action to invoke cibuildwheel and release to PyPI.

Usage

from tree_sitter_languages import get_language, get_parser

language = get_language('python')
parser = get_parser('python')

That’s the whole API!

Refer to py-tree-sitter for the language and parser API. Notice the Language.build_library(...) step can be skipped! The binary wheel includes the language binary.

Demo

Want to know something crazy? Python lacks multi-line comments. Whhaaa!?!

It’s really not such a big deal. Instead of writing

"""
My awesome
multi-line
comment.
"""

Simply write

# My awesome
# multi-line
# comment.

So multi-line comments are made by putting multiple single-line comments in sequence. Amazing!

Now, how to find all the strings being used as comments?

Start with some example Python code

example = """
#!shebang
# License blah blah (Apache 2.0)
"This is a module docstring."

a = 1

'''This
is
not
a
multiline
comment.'''

b = 2

class Test:
    "This is a class docstring."

    'This is bogus.'

    def test(self):
        "This is a function docstring."

        "Please, no."

        return 1

c = 3
"""

Notice a couple things:

  1. Python has module, class, and function docstrings that bare a striking resemblance to the phony string comments.

  2. Python supports single-quoted, double-quoted, triple-single-quoted, and triple-double-quoted strings (not to mention prefixes for raw strings, unicode strings, and more).

Creating a regular expression to capture the phony string comments would be exceedingly difficult!

Enter tree-sitter

from tree_sitter_languages import get_language, get_parser

language = get_language('python')
parser = get_parser('python')

Tree-sitter creates an abstract syntax tree (actually, a concrete syntax tree) and supports queries

tree = parser.parse(example.encode())
node = tree.root_node
print(node.sexp())

Look for statements that are a single string expression

stmt_str_pattern = '(expression_statement (string)) @stmt_str'
stmt_str_query = language.query(stmt_str_pattern)
stmt_strs = stmt_str_query.captures(node)
stmt_str_points = set(
    (node.start_point, node.end_point) for node, _ in stmt_strs
)
print(stmt_str_points)

Now, find those statement string expressions that are actually module, class, or function docstrings

doc_str_pattern = """
    (module . (comment)* . (expression_statement (string)) @module_doc_str)

    (class_definition
        body: (block . (expression_statement (string)) @class_doc_str))

    (function_definition
        body: (block . (expression_statement (string)) @function_doc_str))
"""
doc_str_query = language.query(doc_str_pattern)
doc_strs = doc_str_query.captures(node)
doc_str_points = set(
    (node.start_point, node.end_point) for node, _ in doc_strs
)

With the set of string expression statements and the set of docstring statements, the locations of all phony string comments is

comment_strs = stmt_str_points - doc_str_points
print(sorted(comment_strs))

License

Copyright 2022-2023 Grant Jenks

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

The project also includes the following other projects distributed in binary form:

Release files for tree-sitter-languages 1.10.2

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

Built distributions (wheels)

Table of built distributions (wheels) for tree-sitter-languages 1.10.2
File
tree_sitter_languages-1.10.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
tree_sitter_languages-1.10.2-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-64 Details
tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-32 Details
tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ ARM64 Details
tree_sitter_languages-1.10.2-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_languages-1.10.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
tree_sitter_languages-1.10.2-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
tree_sitter_languages-1.10.2-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
tree_sitter_languages-1.10.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
tree_sitter_languages-1.10.2-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
tree_sitter_languages-1.10.2-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_languages-1.10.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
tree_sitter_languages-1.10.2-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
tree_sitter_languages-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
tree_sitter_languages-1.10.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
tree_sitter_languages-1.10.2-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
tree_sitter_languages-1.10.2-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_languages-1.10.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
tree_sitter_languages-1.10.2-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
tree_sitter_languages-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
tree_sitter_languages-1.10.2-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
tree_sitter_languages-1.10.2-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
tree_sitter_languages-1.10.2-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_languages-1.10.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
tree_sitter_languages-1.10.2-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
tree_sitter_languages-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
tree_sitter_languages-1.10.2-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
tree_sitter_languages-1.10.2-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
tree_sitter_languages-1.10.2-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_languages-1.10.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
tree_sitter_languages-1.10.2-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
tree_sitter_languages-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
tree_sitter_languages-1.10.2-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
tree_sitter_languages-1.10.2-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
tree_sitter_languages-1.10.2-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_languages-1.10.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
tree_sitter_languages-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 519.4 MB

Release files / tree_sitter_languages-1.10.2-cp312-cp312-win_amd64.whl

Download URL tree_sitter_languages-1.10.2-cp312-cp312-win_amd64.whl
Size 8.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
5e606430d736367e5787fa5a7a0c5a1ec9b85eded0b3596bbc0d83532a40810b
BLAKE2b-256 checksum
How to use checksums
47580262e875dd899447476a8ffde7829df3716ffa772990095c65d6de1f053c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp312-cp312-win32.whl

Download URL tree_sitter_languages-1.10.2-cp312-cp312-win32.whl
Size 8.4 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
fab8ee641914098e8933b87ea3d657bea4dd00723c1ee7038b847b12eeeef4f5
BLAKE2b-256 checksum
How to use checksums
52018e2f97a444d25dde1380ec20b338722f733b6cc290524357b1be3dd452ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_x86_64.whl
Size 9.0 MB
Tags CPython 3.12 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
1aeabd3d60d6d276b73cd8f3739d595b1299d123cc079a317f1a5b3c5461e2ca
BLAKE2b-256 checksum
How to use checksums
197625bb32a9be1c476e388835d5c8de5af2920af055e295770003683896cfe2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_i686.whl

Download URL tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_i686.whl
Size 9.2 MB
Tags CPython 3.12 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
dafbbdf16bf668a580902e1620f4baa1913e79438abcce721a50647564c687b9
BLAKE2b-256 checksum
How to use checksums
ec139e5cb03914d60dd51047ecbfab5400309fbab14bb25014af388f492da044
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_aarch64.whl

Download URL tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_aarch64.whl
Size 9.2 MB
Tags CPython 3.12 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
976c8039165b8e12f17a01ddee9f4e23ec6e352b165ad29b44d2bf04e2fbe77e
BLAKE2b-256 checksum
How to use checksums
0695a13da048c33a876d0475974484bf66b1fae07226e8654b1365ab549309cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.4 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6d2f1cd1d1bdd65332f9c2b67d49dcf148cf1ded752851d159ac3e5ee4f4d260
BLAKE2b-256 checksum
How to use checksums
f2e6eddc76ad899d77adcb5fca6cdf651eb1d33b4a799456bf303540f6cf8204
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 8.6 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
92c6487a6feea683154d3e06e6db68c30e0ae749a7ce4ce90b9e4e46b78c85c7
BLAKE2b-256 checksum
How to use checksums
d075eff180f187ce4dc3e5177b3f8508e0061ea786ac44f409cf69cf24bf31a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.7 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
15db3c8510bc39a80147ee7421bf4782c15c09581c1dc2237ea89cefbd95b846
BLAKE2b-256 checksum
How to use checksums
206c1855a65c9d6b50600f7a68e0182153db7cb12ff81fdebd93e87851dfdd8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp312-cp312-macosx_11_0_arm64.whl

Download URL tree_sitter_languages-1.10.2-cp312-cp312-macosx_11_0_arm64.whl
Size 9.7 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
eecd3c1244ac3425b7a82ba9125b4ddb45d953bbe61de114c0334fd89b7fe782
BLAKE2b-256 checksum
How to use checksums
14fb1f6fe5903aeb7435cc66d4b56621e9a30a4de64420555b999de65b31fcae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp312-cp312-macosx_10_9_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp312-cp312-macosx_10_9_x86_64.whl
Size 8.9 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c0f4c8b2734c45859edc7fcaaeaab97a074114111b5ba51ab4ec7ed52104763c
BLAKE2b-256 checksum
How to use checksums
8dbfa9bd2d6ecbd053de0a5a50c150105b69c90eb49089f9e1d4fc4937e86adc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp311-cp311-win_amd64.whl

Download URL tree_sitter_languages-1.10.2-cp311-cp311-win_amd64.whl
Size 8.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
7f3fdd468a577f04db3b63454d939e26e360229b53c80361920aa1ebf2cd7491
BLAKE2b-256 checksum
How to use checksums
d952e122dfc6739664c963a62f4b6717853e86295659c8531e2f1842bad9aba5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp311-cp311-win32.whl

Download URL tree_sitter_languages-1.10.2-cp311-cp311-win32.whl
Size 8.4 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
049276343962f4696390ee555acc2c1a65873270c66a6cbe5cb0bca83bcdf3c6
BLAKE2b-256 checksum
How to use checksums
6d805e9679325e260cce2893b4a97a3914d5ed729024bb9b08a32d9b0d83ef7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl
Size 8.9 MB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
0b1149e7467a4e92b8a70e6005fe762f880f493cf811fc003554b29f04f5e7c8
BLAKE2b-256 checksum
How to use checksums
f2817792b474916541081533942598feaabc6e1df993892375a1a3d8f7100483
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_i686.whl

Download URL tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_i686.whl
Size 9.2 MB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
ab1cbc46244d34fd16f21edaa20231b2a57f09f092a06ee3d469f3117e6eb954
BLAKE2b-256 checksum
How to use checksums
a7243e3d5a83578f9942ab882c9c89e757fd3e98ca7d68f7608c9702d8608a1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_aarch64.whl
Size 9.2 MB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
01b5742d5f5bd675489486b582bd482215880b26dde042c067f8265a6e925d9c
BLAKE2b-256 checksum
How to use checksums
80359af34d7259399179ecc2a9f8e73a795c1caf3220b01d566c3ddd20ed5e1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.4 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9ae34ac314a7170be24998a0f994c1ac80761d8d4bd126af27ee53a023d3b849
BLAKE2b-256 checksum
How to use checksums
9681ab4eda8dbd3f736fcc9a508bc69232d3b9076cd46b932d9bf9d49b9a1ec9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 8.6 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
a1dc195c88ef4c72607e112a809a69190e096a2e5ebc6201548b3e05fdd169ad
BLAKE2b-256 checksum
How to use checksums
a6972c72765a807ea226759a827324ed6a74382b4ae1b18321c67333199a4622
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.7 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6f370cd7845c6c81df05680d5bd96db8a99d32b56f4728c5d05978911130a853
BLAKE2b-256 checksum
How to use checksums
baa2e8272617901f896ae36459ed2a2ff06d9b1ff5e6157d034c5e2c9885c741
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp311-cp311-macosx_11_0_arm64.whl

Download URL tree_sitter_languages-1.10.2-cp311-cp311-macosx_11_0_arm64.whl
Size 9.7 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6b41bcb00974b1c8a1800c7f1bb476a1d15a0463e760ee24872f2d53b08ee424
BLAKE2b-256 checksum
How to use checksums
6582183b039abe46d6753357019b4f0484d5b74973ee4675da2f26af5ba8dfdf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl
Size 8.9 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7eb7d7542b2091c875fe52719209631fca36f8c10fa66970d2c576ae6a1b8289
BLAKE2b-256 checksum
How to use checksums
246cc310e958296ce12076bec846c0bb779bc114897b33901c4c51c09bb6b695
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp310-cp310-win_amd64.whl

Download URL tree_sitter_languages-1.10.2-cp310-cp310-win_amd64.whl
Size 8.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
6dd75851c41d0c3c4987a9b7692d90fa8848706c23115669d8224ffd6571e357
BLAKE2b-256 checksum
How to use checksums
52983d862efe888da3f414ef050b0e25932f6ebf1ab2149bbdd68c94391e814e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp310-cp310-win32.whl

Download URL tree_sitter_languages-1.10.2-cp310-cp310-win32.whl
Size 8.4 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
c9731cf745f135d9770eeba9bb4e2ff4dabc107b5ae9b8211e919f6b9100ea6d
BLAKE2b-256 checksum
How to use checksums
e5a1e9eb4f520b5892bc8527592c0b3faba5fd1bf9203fc28a10999a612b1087
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl
Size 8.9 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
2de330e2ac6d7426ca025a3ec0f10d5640c3682c1d0c7702e812dcfb44b58120
BLAKE2b-256 checksum
How to use checksums
145ba1611f43d5fc599fc66d1458481e12a35d181515220737d8b14444687dfb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_i686.whl

Download URL tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_i686.whl
Size 9.2 MB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
9f195155acf47f8bc5de7cee46ecd07b2f5697f007ba89435b51ef4c0b953ea5
BLAKE2b-256 checksum
How to use checksums
65c5479e8a365cf0e075fc6d867b29299159af272ae470452a4034220c20bf53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_aarch64.whl
Size 9.2 MB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
dfa3f38cc5381c5aba01dd7494f59b8a9050e82ff6e06e1233e3a0cbae297e3c
BLAKE2b-256 checksum
How to use checksums
75538f8dc25352d05e875502dc976bfd52d6779e58546307161d214a0d24edde
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.4 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1c6385e033e460ceb8f33f3f940335f422ef2b763700a04f0089391a68b56153
BLAKE2b-256 checksum
How to use checksums
f486b50a1a5cc7058bf572acceb8b005c77e2f43b06a13fdb7a52c38b0f8e6fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 8.6 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
57adfa32be7e465b54aa72f915f6c78a2b66b227df4f656b5d4fbd1ca7a92b3f
BLAKE2b-256 checksum
How to use checksums
00d29c545781301d70eadd9d71971b81302e00a532d48118fa989bf8ed06edbc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.7 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d13db84511c6f1a7dc40383b66deafa74dabd8b877e3d65ab253f3719eccafd6
BLAKE2b-256 checksum
How to use checksums
2a75232f09adfc28a4ce15187e4fc6be897dcebdd674644e40d9851a0d001f9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp310-cp310-macosx_11_0_arm64.whl

Download URL tree_sitter_languages-1.10.2-cp310-cp310-macosx_11_0_arm64.whl
Size 9.7 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
103c7466644486b1e9e03850df46fc6aa12f13ca636c74f173270276220ac80b
BLAKE2b-256 checksum
How to use checksums
62efe5a182b77574b7512207687fce7798ecbfb3f53ed77714aae8a7d6da93de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl
Size 8.9 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5580348f0b20233b1d5431fa178ccd3d07423ca4a3275df02a44608fd72344b9
BLAKE2b-256 checksum
How to use checksums
389c2f92455805ce8e236c5e5f5b5bc9ef158da798dea575ab3e835d8c17a202
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp39-cp39-win_amd64.whl

Download URL tree_sitter_languages-1.10.2-cp39-cp39-win_amd64.whl
Size 8.3 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
1b944af3ee729fa70fc8ae82224a9ff597cdb63addea084e0ea2fa2b0ec39bb7
BLAKE2b-256 checksum
How to use checksums
ab7e0b00bda8e15f4b0c0138322368e5890f72631870542011d45cbaa6a515c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp39-cp39-win32.whl

Download URL tree_sitter_languages-1.10.2-cp39-cp39-win32.whl
Size 8.4 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
33f7d584d01a7a3c893072f34cfc64ec031f3cfe57eebc32da2f8ac046e101a7
BLAKE2b-256 checksum
How to use checksums
b32f1eb3877084a186762334d3e0a592126c89fd3b7278a6057e35c7fb837d96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl
Size 8.9 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
3657a491a7f96cc75a3568ddd062d25f3be82b6a942c68801a7b226ff7130181
BLAKE2b-256 checksum
How to use checksums
8cf8448d54ab446cf687d5cb00cc993ce5fdd7b6f3a6639701cbe30aef0ff6dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_i686.whl

Download URL tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_i686.whl
Size 9.2 MB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
8fed27319957458340f24fe14daad467cd45021da034eef583519f83113a8c5e
BLAKE2b-256 checksum
How to use checksums
66daefce44fafb643f8986f4e8f1167a308d4e29a473c81fd285c2e00e7cd162
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_aarch64.whl
Size 9.2 MB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
26fe7c9c412e4141dea87ea4b3592fd12e385465b5bdab106b0d5125754d4f60
BLAKE2b-256 checksum
How to use checksums
6d45257380801d953edcb276d90c1d807565f3ec381279fec3ea4325b5a9829d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.4 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
475ff53203d8a43ccb19bb322fa2fb200d764001cc037793f1fadd714bb343da
BLAKE2b-256 checksum
How to use checksums
ccef4cdd2fe08c7bf772672d865054c4cee478100186e63c4eb06af2a5af6cad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 8.6 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
c00069f9575bd831eabcce2cdfab158dde1ed151e7e5614c2d985ff7d78a7de1
BLAKE2b-256 checksum
How to use checksums
735947d57bd555a6a47fbab6326f1a476e1e80d2501113b0f40f1d6cbec5ce3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.7 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
76e60be6bdcff923386a54a5edcb6ff33fc38ab0118636a762024fa2bc98de55
BLAKE2b-256 checksum
How to use checksums
3d2fb55dfe77cfc215b2fc35e00736488329cab7adcdbaddd5372592614e8d38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp39-cp39-macosx_11_0_arm64.whl

Download URL tree_sitter_languages-1.10.2-cp39-cp39-macosx_11_0_arm64.whl
Size 9.7 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c283a61423f49cdfa7b5a5dfbb39221e3bd126fca33479cd80749d4d7a6b7349
BLAKE2b-256 checksum
How to use checksums
ea44a94f321dd2af716bbc9090485294382c237823ff16315ec0c7e8f77bdbcc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl
Size 8.9 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f8c6a936ae99fdd8857e91f86c11c2f5e507ff30631d141d98132bb7ab2c8638
BLAKE2b-256 checksum
How to use checksums
53c9762cf517c5b5c0c51c72f0275068627fe83851828e0d7291d18eabcff920
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp38-cp38-win_amd64.whl

Download URL tree_sitter_languages-1.10.2-cp38-cp38-win_amd64.whl
Size 8.3 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
46a13f7d38f2eeb75f7cf127d1201346093748c270d686131f0cbc50e42870a1
BLAKE2b-256 checksum
How to use checksums
0ac644ecfc00af25136106b64e929fcd5df370f77cf9af03b360d8c4b982c743
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp38-cp38-win32.whl

Download URL tree_sitter_languages-1.10.2-cp38-cp38-win32.whl
Size 8.4 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
92d734fb968fe3927a7596d9f0459f81a8fa7b07e16569476b28e27d0d753348
BLAKE2b-256 checksum
How to use checksums
e78596bc04cb2f0cf40a71d87eb1867f150e4cb579160c10f5713e2d917eb1eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl
Size 8.9 MB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
9b4dd2b6b3d24c85dffe33d6c343448869eaf4f41c19ddba662eb5d65d8808f4
BLAKE2b-256 checksum
How to use checksums
d1df4947aba6b0ff651beb874bef858593132a5ac38fa632a29066d565f25553
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_i686.whl

Download URL tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_i686.whl
Size 9.2 MB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
ce74eab0e430370d5e15a96b6c6205f93405c177a8b2e71e1526643b2fb9bab1
BLAKE2b-256 checksum
How to use checksums
9fb581146037667e732f0882e25bdb64283faba7345b4d91b618750f2f67a57d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_aarch64.whl
Size 9.2 MB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
59a4450f262a55148fb7e68681522f0c2a2f6b7d89666312a2b32708d8f416e1
BLAKE2b-256 checksum
How to use checksums
8a55533d278da21a2809e4b23b17ede6721d4306b8bd29001c6bcba96f32dcbd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.4 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
99d3249beaef2c9fe558ecc9a97853c260433a849dcc68266d9770d196c2e102
BLAKE2b-256 checksum
How to use checksums
34e850cfb3613e00fd3106b2b0cb78558671913b61b2c4ed39b803f0fa6b6093
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 8.6 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
1031ea440dafb72237437d754eff8940153a3b051e3d18932ac25e75ce060a15
BLAKE2b-256 checksum
How to use checksums
e82f40759247ad21ae1028005210f20b13c2954a375b994137639f97319e698b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.7 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
da1aca27531f9dd5308637d76643372856f0f65d0d28677d1bcf4211e8ed1ad0
BLAKE2b-256 checksum
How to use checksums
7298bf3cb6edb05d3b02d1854f8a37932071f0842caca2b10c22c0435966a215
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp38-cp38-macosx_11_0_arm64.whl

Download URL tree_sitter_languages-1.10.2-cp38-cp38-macosx_11_0_arm64.whl
Size 9.7 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d78feed4a764ef3141cb54bf00fe94d514d8b6e26e09423e23b4c616fcb7938c
BLAKE2b-256 checksum
How to use checksums
658841ad37577218be07651aac92ef4ab371c5a4895a4d86ded088b014febdd4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl
Size 8.9 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
6f85d1edaa2d22d80d4ea5b6d12b95cf3644017b6c227d0d42854439e02e8893
BLAKE2b-256 checksum
How to use checksums
ab0993570ecbd8bba8f7e81d607e2fd0eb47afc300fcf862f6084e7b240c2245
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp37-cp37m-win_amd64.whl

Download URL tree_sitter_languages-1.10.2-cp37-cp37m-win_amd64.whl
Size 8.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
55649d3f254585a064121513627cf9788c1cfdadbc5f097f33d5ba750685a4c0
BLAKE2b-256 checksum
How to use checksums
fe80bf29eba244ff48aa874e2800c9b11f2a35e1bf8cdb9ac6db53b44b0c22da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp37-cp37m-win32.whl

Download URL tree_sitter_languages-1.10.2-cp37-cp37m-win32.whl
Size 8.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
fa6391a3a5d83d32db80815161237b67d70576f090ce5f38339206e917a6f8bd
BLAKE2b-256 checksum
How to use checksums
726936595890995c79d359c747c77c9d9a029bbcabf8fad466d9f8ce707b35b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 8.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
5a4076c921f7a4d31e643843de7dfe040b65b63a238a5aa8d31d93aabe6572aa
BLAKE2b-256 checksum
How to use checksums
8f727acfe829d6c5bf484165014fefcae37ed82df5a5fd89a561adeb2593cd16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_i686.whl

Download URL tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_i686.whl
Size 9.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
c0f1b9af9cb67f0b942b020da9fdd000aad5e92f2383ae0ba7a330b318d31912
BLAKE2b-256 checksum
How to use checksums
c69fea027c19d0bd5b1733abfbc813e53b3bd9b5961d8aacc7c16428711ae1fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_aarch64.whl

Download URL tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 9.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
8f0b87cf1a7b03174ba18dfd81582be82bfed26803aebfe222bd20e444aba003
BLAKE2b-256 checksum
How to use checksums
b98dd59abd8807d121df488378df10105ae1d186cf069bff618cf8b91941b05b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0e102fbbf02322d9201a86a814e79a9734ac80679fdb9682144479044f401a73
BLAKE2b-256 checksum
How to use checksums
18c908977bee272f403b500fe2ff44bcc40a0b9d7d4925b410129c2b36928dd8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 8.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
faa00abcb2c819027df58472da055d22fa7dfcb77c77413d8500c32ebe24d38b
BLAKE2b-256 checksum
How to use checksums
1910c92795d4404b0347122a792202577dd27d4da246a6f590de6a60787c09b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
987b3c71b1d278c2889e018ee77b8ee05c384e2e3334dec798f8b611c4ab2d1e
BLAKE2b-256 checksum
How to use checksums
89c14b82c9b6cfb0124b9406af41a319a034dd15b91818dde71ce9a511404794
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / tree_sitter_languages-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL tree_sitter_languages-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl
Size 8.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
838d5b48a7ed7a17658721952c77fda4570d2a069f933502653b17e15a9c39c9
BLAKE2b-256 checksum
How to use checksums
1601a35edb8673dc5a8a07a9f09a0a969e5633042231ba43a855f01d17541c29
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release history Release notifications | RSS feed

This release

1.10.2 This release

59 release files

1.8.0

58 release files

1.7.0

46 release files

1.6.1

46 release files

1.5.0

46 release files

1.4.0

35 release files

1.3.0

25 release files

1.2.2

25 release files

1.2.0

25 release files

1.1.0

25 release files

0.1.0

25 release files

0.0.0

1 release file

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