Skip to main content

Binary Python wheels for all tree sitter languages.

Project description

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:

Project details


Download files

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

Source Distributions

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

Built Distributions

tree_sitter_languages-1.10.2-cp312-cp312-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.12 Windows x86-64

tree_sitter_languages-1.10.2-cp312-cp312-win32.whl (8.4 MB view details)

Uploaded CPython 3.12 Windows x86

tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_i686.whl (9.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (8.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

tree_sitter_languages-1.10.2-cp312-cp312-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

tree_sitter_languages-1.10.2-cp312-cp312-macosx_10_9_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

tree_sitter_languages-1.10.2-cp311-cp311-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.11 Windows x86-64

tree_sitter_languages-1.10.2-cp311-cp311-win32.whl (8.4 MB view details)

Uploaded CPython 3.11 Windows x86

tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_i686.whl (9.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (8.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

tree_sitter_languages-1.10.2-cp311-cp311-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

tree_sitter_languages-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

tree_sitter_languages-1.10.2-cp310-cp310-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.10 Windows x86-64

tree_sitter_languages-1.10.2-cp310-cp310-win32.whl (8.4 MB view details)

Uploaded CPython 3.10 Windows x86

tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_i686.whl (9.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (8.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

tree_sitter_languages-1.10.2-cp310-cp310-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

tree_sitter_languages-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

tree_sitter_languages-1.10.2-cp39-cp39-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.9 Windows x86-64

tree_sitter_languages-1.10.2-cp39-cp39-win32.whl (8.4 MB view details)

Uploaded CPython 3.9 Windows x86

tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_i686.whl (9.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (8.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

tree_sitter_languages-1.10.2-cp39-cp39-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

tree_sitter_languages-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

tree_sitter_languages-1.10.2-cp38-cp38-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

tree_sitter_languages-1.10.2-cp38-cp38-win32.whl (8.4 MB view details)

Uploaded CPython 3.8 Windows x86

tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_i686.whl (9.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (8.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

tree_sitter_languages-1.10.2-cp38-cp38-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

tree_sitter_languages-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

tree_sitter_languages-1.10.2-cp37-cp37m-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

tree_sitter_languages-1.10.2-cp37-cp37m-win32.whl (8.4 MB view details)

Uploaded CPython 3.7m Windows x86

tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_i686.whl (9.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (8.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

tree_sitter_languages-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file tree_sitter_languages-1.10.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5e606430d736367e5787fa5a7a0c5a1ec9b85eded0b3596bbc0d83532a40810b
MD5 17a782b8369ecb6c7b411453afca9af0
BLAKE2b-256 47580262e875dd899447476a8ffde7829df3716ffa772990095c65d6de1f053c

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fab8ee641914098e8933b87ea3d657bea4dd00723c1ee7038b847b12eeeef4f5
MD5 3dfcc3b96d51d95bc62b884891292b21
BLAKE2b-256 52018e2f97a444d25dde1380ec20b338722f733b6cc290524357b1be3dd452ab

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1aeabd3d60d6d276b73cd8f3739d595b1299d123cc079a317f1a5b3c5461e2ca
MD5 b7eeae2bb685929f55241d71fd7a66f7
BLAKE2b-256 197625bb32a9be1c476e388835d5c8de5af2920af055e295770003683896cfe2

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 dafbbdf16bf668a580902e1620f4baa1913e79438abcce721a50647564c687b9
MD5 1a9492408ee3bd3577451f8c150d9321
BLAKE2b-256 ec139e5cb03914d60dd51047ecbfab5400309fbab14bb25014af388f492da044

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 976c8039165b8e12f17a01ddee9f4e23ec6e352b165ad29b44d2bf04e2fbe77e
MD5 8bf8fcf09bf73258f5166391214924f3
BLAKE2b-256 0695a13da048c33a876d0475974484bf66b1fae07226e8654b1365ab549309cd

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d2f1cd1d1bdd65332f9c2b67d49dcf148cf1ded752851d159ac3e5ee4f4d260
MD5 9f78c0b20fcfc4caf971b7b180190a89
BLAKE2b-256 f2e6eddc76ad899d77adcb5fca6cdf651eb1d33b4a799456bf303540f6cf8204

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92c6487a6feea683154d3e06e6db68c30e0ae749a7ce4ce90b9e4e46b78c85c7
MD5 ab001bf30cb572f0112706b761b15022
BLAKE2b-256 d075eff180f187ce4dc3e5177b3f8508e0061ea786ac44f409cf69cf24bf31a6

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15db3c8510bc39a80147ee7421bf4782c15c09581c1dc2237ea89cefbd95b846
MD5 b6a2128eba9fe9550e5551e382a65cfb
BLAKE2b-256 206c1855a65c9d6b50600f7a68e0182153db7cb12ff81fdebd93e87851dfdd8f

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eecd3c1244ac3425b7a82ba9125b4ddb45d953bbe61de114c0334fd89b7fe782
MD5 b72dc025b9f561c2427f13653d87ca26
BLAKE2b-256 14fb1f6fe5903aeb7435cc66d4b56621e9a30a4de64420555b999de65b31fcae

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0f4c8b2734c45859edc7fcaaeaab97a074114111b5ba51ab4ec7ed52104763c
MD5 4a61a5264e5fc56d2704c867366f0dca
BLAKE2b-256 8dbfa9bd2d6ecbd053de0a5a50c150105b69c90eb49089f9e1d4fc4937e86adc

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f3fdd468a577f04db3b63454d939e26e360229b53c80361920aa1ebf2cd7491
MD5 b97a3472b12350243ba4f4eb632bcc62
BLAKE2b-256 d952e122dfc6739664c963a62f4b6717853e86295659c8531e2f1842bad9aba5

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 049276343962f4696390ee555acc2c1a65873270c66a6cbe5cb0bca83bcdf3c6
MD5 f7917b96f267d83a338d18f14db403d6
BLAKE2b-256 6d805e9679325e260cce2893b4a97a3914d5ed729024bb9b08a32d9b0d83ef7a

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0b1149e7467a4e92b8a70e6005fe762f880f493cf811fc003554b29f04f5e7c8
MD5 f6089a944866bf901b01ac7f6b2fe5f5
BLAKE2b-256 f2817792b474916541081533942598feaabc6e1df993892375a1a3d8f7100483

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ab1cbc46244d34fd16f21edaa20231b2a57f09f092a06ee3d469f3117e6eb954
MD5 4c2269d2213dee6dc2804f2dadd3e51b
BLAKE2b-256 a7243e3d5a83578f9942ab882c9c89e757fd3e98ca7d68f7608c9702d8608a1c

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 01b5742d5f5bd675489486b582bd482215880b26dde042c067f8265a6e925d9c
MD5 58e466238295a98932d3a6a5046defd5
BLAKE2b-256 80359af34d7259399179ecc2a9f8e73a795c1caf3220b01d566c3ddd20ed5e1c

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ae34ac314a7170be24998a0f994c1ac80761d8d4bd126af27ee53a023d3b849
MD5 71a4da76405552f6e8e29462b6e7fd71
BLAKE2b-256 9681ab4eda8dbd3f736fcc9a508bc69232d3b9076cd46b932d9bf9d49b9a1ec9

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1dc195c88ef4c72607e112a809a69190e096a2e5ebc6201548b3e05fdd169ad
MD5 f0d6b69a6bcdc2a5dc2dae710bae3267
BLAKE2b-256 a6972c72765a807ea226759a827324ed6a74382b4ae1b18321c67333199a4622

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f370cd7845c6c81df05680d5bd96db8a99d32b56f4728c5d05978911130a853
MD5 9423cb6c8a8a93ada02e11d7d2b0bef3
BLAKE2b-256 baa2e8272617901f896ae36459ed2a2ff06d9b1ff5e6157d034c5e2c9885c741

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b41bcb00974b1c8a1800c7f1bb476a1d15a0463e760ee24872f2d53b08ee424
MD5 b0c50094e3734135589aaa621a846073
BLAKE2b-256 6582183b039abe46d6753357019b4f0484d5b74973ee4675da2f26af5ba8dfdf

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7eb7d7542b2091c875fe52719209631fca36f8c10fa66970d2c576ae6a1b8289
MD5 1324d88805bf575992dc187a46363bf2
BLAKE2b-256 246cc310e958296ce12076bec846c0bb779bc114897b33901c4c51c09bb6b695

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6dd75851c41d0c3c4987a9b7692d90fa8848706c23115669d8224ffd6571e357
MD5 a5464a63152ac0d041cf22bbf9ca0775
BLAKE2b-256 52983d862efe888da3f414ef050b0e25932f6ebf1ab2149bbdd68c94391e814e

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c9731cf745f135d9770eeba9bb4e2ff4dabc107b5ae9b8211e919f6b9100ea6d
MD5 314eb7e423dc8a462aa86638c96003d2
BLAKE2b-256 e5a1e9eb4f520b5892bc8527592c0b3faba5fd1bf9203fc28a10999a612b1087

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2de330e2ac6d7426ca025a3ec0f10d5640c3682c1d0c7702e812dcfb44b58120
MD5 6fb7b6002f856976994aeeb9a354ac5d
BLAKE2b-256 145ba1611f43d5fc599fc66d1458481e12a35d181515220737d8b14444687dfb

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9f195155acf47f8bc5de7cee46ecd07b2f5697f007ba89435b51ef4c0b953ea5
MD5 d4f6c54db92b404f4117112ef8751dba
BLAKE2b-256 65c5479e8a365cf0e075fc6d867b29299159af272ae470452a4034220c20bf53

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dfa3f38cc5381c5aba01dd7494f59b8a9050e82ff6e06e1233e3a0cbae297e3c
MD5 11990b078e23cccf310491fabda1429c
BLAKE2b-256 75538f8dc25352d05e875502dc976bfd52d6779e58546307161d214a0d24edde

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c6385e033e460ceb8f33f3f940335f422ef2b763700a04f0089391a68b56153
MD5 f64e12da5cfdca7131eac7e5e739e645
BLAKE2b-256 f486b50a1a5cc7058bf572acceb8b005c77e2f43b06a13fdb7a52c38b0f8e6fa

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 57adfa32be7e465b54aa72f915f6c78a2b66b227df4f656b5d4fbd1ca7a92b3f
MD5 2739574ff98fd19e3a8d684ce56232d6
BLAKE2b-256 00d29c545781301d70eadd9d71971b81302e00a532d48118fa989bf8ed06edbc

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d13db84511c6f1a7dc40383b66deafa74dabd8b877e3d65ab253f3719eccafd6
MD5 78287d99a72317fc94c0b5e2f96ba6b7
BLAKE2b-256 2a75232f09adfc28a4ce15187e4fc6be897dcebdd674644e40d9851a0d001f9f

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 103c7466644486b1e9e03850df46fc6aa12f13ca636c74f173270276220ac80b
MD5 9ee4b65a6d7d657a76e238cd373eb9c8
BLAKE2b-256 62efe5a182b77574b7512207687fce7798ecbfb3f53ed77714aae8a7d6da93de

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5580348f0b20233b1d5431fa178ccd3d07423ca4a3275df02a44608fd72344b9
MD5 dcfb935bdc86cd60ea72ad331c38c0f8
BLAKE2b-256 389c2f92455805ce8e236c5e5f5b5bc9ef158da798dea575ab3e835d8c17a202

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1b944af3ee729fa70fc8ae82224a9ff597cdb63addea084e0ea2fa2b0ec39bb7
MD5 375fe3af704a79666ea9d52906580ece
BLAKE2b-256 ab7e0b00bda8e15f4b0c0138322368e5890f72631870542011d45cbaa6a515c6

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 33f7d584d01a7a3c893072f34cfc64ec031f3cfe57eebc32da2f8ac046e101a7
MD5 500993d3168baec4d4605baf6c20c346
BLAKE2b-256 b32f1eb3877084a186762334d3e0a592126c89fd3b7278a6057e35c7fb837d96

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3657a491a7f96cc75a3568ddd062d25f3be82b6a942c68801a7b226ff7130181
MD5 6edaaeffa68edcde31356f2474a889c1
BLAKE2b-256 8cf8448d54ab446cf687d5cb00cc993ce5fdd7b6f3a6639701cbe30aef0ff6dc

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8fed27319957458340f24fe14daad467cd45021da034eef583519f83113a8c5e
MD5 2c24b973247fd23708c6c04314a0687c
BLAKE2b-256 66daefce44fafb643f8986f4e8f1167a308d4e29a473c81fd285c2e00e7cd162

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 26fe7c9c412e4141dea87ea4b3592fd12e385465b5bdab106b0d5125754d4f60
MD5 fb71f8aa3e736c85b18ee0740ae3aae5
BLAKE2b-256 6d45257380801d953edcb276d90c1d807565f3ec381279fec3ea4325b5a9829d

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 475ff53203d8a43ccb19bb322fa2fb200d764001cc037793f1fadd714bb343da
MD5 8e10305be99a3a88f474487e5bc1b77a
BLAKE2b-256 ccef4cdd2fe08c7bf772672d865054c4cee478100186e63c4eb06af2a5af6cad

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c00069f9575bd831eabcce2cdfab158dde1ed151e7e5614c2d985ff7d78a7de1
MD5 74b9bb650114193af162cb431d829213
BLAKE2b-256 735947d57bd555a6a47fbab6326f1a476e1e80d2501113b0f40f1d6cbec5ce3c

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76e60be6bdcff923386a54a5edcb6ff33fc38ab0118636a762024fa2bc98de55
MD5 a2a9bcb37d1195bdb77c8e1a945e366d
BLAKE2b-256 3d2fb55dfe77cfc215b2fc35e00736488329cab7adcdbaddd5372592614e8d38

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c283a61423f49cdfa7b5a5dfbb39221e3bd126fca33479cd80749d4d7a6b7349
MD5 5b6ac77df72dd39ece4541b84033356e
BLAKE2b-256 ea44a94f321dd2af716bbc9090485294382c237823ff16315ec0c7e8f77bdbcc

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8c6a936ae99fdd8857e91f86c11c2f5e507ff30631d141d98132bb7ab2c8638
MD5 768c3b60b052e87d209244e1042138a4
BLAKE2b-256 53c9762cf517c5b5c0c51c72f0275068627fe83851828e0d7291d18eabcff920

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 46a13f7d38f2eeb75f7cf127d1201346093748c270d686131f0cbc50e42870a1
MD5 9943d582c4f39952b3bfb3d95d87b67b
BLAKE2b-256 0ac644ecfc00af25136106b64e929fcd5df370f77cf9af03b360d8c4b982c743

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 92d734fb968fe3927a7596d9f0459f81a8fa7b07e16569476b28e27d0d753348
MD5 1b938c3a022e67964bf483b08f8db9a3
BLAKE2b-256 e78596bc04cb2f0cf40a71d87eb1867f150e4cb579160c10f5713e2d917eb1eb

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9b4dd2b6b3d24c85dffe33d6c343448869eaf4f41c19ddba662eb5d65d8808f4
MD5 38e9d2ec6b4a2e1aeede295bd31a6ec9
BLAKE2b-256 d1df4947aba6b0ff651beb874bef858593132a5ac38fa632a29066d565f25553

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ce74eab0e430370d5e15a96b6c6205f93405c177a8b2e71e1526643b2fb9bab1
MD5 1032d5414ffa60a0d82e48b6687e8efa
BLAKE2b-256 9fb581146037667e732f0882e25bdb64283faba7345b4d91b618750f2f67a57d

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 59a4450f262a55148fb7e68681522f0c2a2f6b7d89666312a2b32708d8f416e1
MD5 d99da82b7ac6bd6db52a2c944b3d9927
BLAKE2b-256 8a55533d278da21a2809e4b23b17ede6721d4306b8bd29001c6bcba96f32dcbd

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99d3249beaef2c9fe558ecc9a97853c260433a849dcc68266d9770d196c2e102
MD5 44a24df795a6b6333bb93a1a5672807e
BLAKE2b-256 34e850cfb3613e00fd3106b2b0cb78558671913b61b2c4ed39b803f0fa6b6093

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1031ea440dafb72237437d754eff8940153a3b051e3d18932ac25e75ce060a15
MD5 ea3023dc4c7a5afe7b61e5dc7c824770
BLAKE2b-256 e82f40759247ad21ae1028005210f20b13c2954a375b994137639f97319e698b

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da1aca27531f9dd5308637d76643372856f0f65d0d28677d1bcf4211e8ed1ad0
MD5 6f129aefb39dfcc2255722ac76bf8928
BLAKE2b-256 7298bf3cb6edb05d3b02d1854f8a37932071f0842caca2b10c22c0435966a215

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d78feed4a764ef3141cb54bf00fe94d514d8b6e26e09423e23b4c616fcb7938c
MD5 842eafc947000171ddc0c92692cfdc2c
BLAKE2b-256 658841ad37577218be07651aac92ef4ab371c5a4895a4d86ded088b014febdd4

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f85d1edaa2d22d80d4ea5b6d12b95cf3644017b6c227d0d42854439e02e8893
MD5 0d3ef9b93ce61f1cd7081c58d736c685
BLAKE2b-256 ab0993570ecbd8bba8f7e81d607e2fd0eb47afc300fcf862f6084e7b240c2245

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 55649d3f254585a064121513627cf9788c1cfdadbc5f097f33d5ba750685a4c0
MD5 a87a890c7d921085fa464985211c4669
BLAKE2b-256 fe80bf29eba244ff48aa874e2800c9b11f2a35e1bf8cdb9ac6db53b44b0c22da

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fa6391a3a5d83d32db80815161237b67d70576f090ce5f38339206e917a6f8bd
MD5 3dc470d37e406dc482f4b84e255db424
BLAKE2b-256 726936595890995c79d359c747c77c9d9a029bbcabf8fad466d9f8ce707b35b2

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5a4076c921f7a4d31e643843de7dfe040b65b63a238a5aa8d31d93aabe6572aa
MD5 b632e861e628319d30ece9eb157cd226
BLAKE2b-256 8f727acfe829d6c5bf484165014fefcae37ed82df5a5fd89a561adeb2593cd16

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c0f1b9af9cb67f0b942b020da9fdd000aad5e92f2383ae0ba7a330b318d31912
MD5 e9b2be8586e903e01d2c3c11fc9ebd9b
BLAKE2b-256 c69fea027c19d0bd5b1733abfbc813e53b3bd9b5961d8aacc7c16428711ae1fe

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8f0b87cf1a7b03174ba18dfd81582be82bfed26803aebfe222bd20e444aba003
MD5 7f09e727f1153a7e3dd4f95c85f40ea7
BLAKE2b-256 b98dd59abd8807d121df488378df10105ae1d186cf069bff618cf8b91941b05b

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e102fbbf02322d9201a86a814e79a9734ac80679fdb9682144479044f401a73
MD5 537a5a728fcc26db318ead2315bad6fc
BLAKE2b-256 18c908977bee272f403b500fe2ff44bcc40a0b9d7d4925b410129c2b36928dd8

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 faa00abcb2c819027df58472da055d22fa7dfcb77c77413d8500c32ebe24d38b
MD5 a15691dab06293999708523257613e09
BLAKE2b-256 1910c92795d4404b0347122a792202577dd27d4da246a6f590de6a60787c09b3

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 987b3c71b1d278c2889e018ee77b8ee05c384e2e3334dec798f8b611c4ab2d1e
MD5 e412d9b3387453856b32ae79cb44e39e
BLAKE2b-256 89c14b82c9b6cfb0124b9406af41a319a034dd15b91818dde71ce9a511404794

See more details on using hashes here.

File details

Details for the file tree_sitter_languages-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tree_sitter_languages-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 838d5b48a7ed7a17658721952c77fda4570d2a069f933502653b17e15a9c39c9
MD5 107787639208e1c6c7089ff0afe6be1c
BLAKE2b-256 1601a35edb8673dc5a8a07a9f09a0a969e5633042231ba43a855f01d17541c29

See more details on using hashes here.

Supported by

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