==================================================
Python Bindings for Tree Sitter with All Languages
==================================================
This is a fork!
===============
It is based on `@Freed_Wu's pull request`_ which adds support for many additional
tree-sitter language parsers beyond the original.
As the package seems unmaintained, I decided to fork it based on the PR. Note that
this version may not see additional support and you should switch back to the
original once it gets going again.
The package has been renamed to avoid collision with the original.
The Windows and ARM Arch64 packages still only get the original languages, for
Windows because the extended commandline busted the `link.exe` command line length
limit, and for ARM Arch64 because the Github action uses QEMU to build on ARM,
which is slow, so the additional languages cause the Github runner to time out.
Original README
===============
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.
This package is based on
.. _`py-tree-sitter-languages`: https://github.com/grantjenks/py-tree-sitter-languages
.. _`@Freed_Wu's pull request`: https://github.com/grantjenks/py-tree-sitter-languages/pull/53
Install
=======
::
pip install tree_sitter_languages_freed_wu_pr
Source installs are not supported. To see how the binary wheels are built, look
at:
1. `setup.py` — Python package setup.
2. `parsers.json`, `lockfile.json` — Json files that contain 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.
.. _`cibuildwheel`: https://github.com/pypa/cibuildwheel
Usage
=====
.. code:: python
from tree_sitter_languages_freed_wu_pr 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.
.. _`py-tree-sitter`: https://github.com/tree-sitter/py-tree-sitter
Demo
====
Want to know something crazy? Python lacks multi-line comments. Whhaaa!?!
It's really not such a big deal. Instead of writing
.. code:: python
"""
My awesome
multi-line
comment.
"""
Simply write
.. code:: python
# 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
.. code:: python
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`_
.. code:: python
from tree_sitter_languages_freed_wu_pr 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
.. code:: python
tree = parser.parse(example.encode())
node = tree.root_node
print(node.sexp())
.. _`concrete syntax tree`: https://stackoverflow.com/q/1888854/232571
Look for statements that are a single string expression
.. code:: python
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
.. code:: python
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
.. code:: python
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:
* https://github.com/tree-sitter/tree-sitter — licensed under the MIT License.
* https://github.com/WhatsApp/tree-sitter-erlang — licensed under
the Apache License, Version 2.0.
* https://github.com/Azganoth/tree-sitter-lua — licensed under the MIT
License.
* https://github.com/Wilfred/tree-sitter-elisp — licensed under the MIT
License.
* https://github.com/alemuller/tree-sitter-make — licensed under the MIT
License.
* https://github.com/camdencheek/tree-sitter-dockerfile — licensed under the
MIT License.
* https://github.com/camdencheek/tree-sitter-go-mod — licensed under the MIT
License.
* https://github.com/elixir-lang/tree-sitter-elixir — licensed under the
Apache License, Version 2.0.
* https://github.com/elm-tooling/tree-sitter-elm — licensed under the MIT
License.
* https://github.com/fwcd/tree-sitter-kotlin — licensed under the MIT License.
* https://github.com/ganezdragon/tree-sitter-perl — licensed under the MIT
License.
* https://github.com/ikatyang/tree-sitter-markdown — licensed under the MIT
License.
* https://github.com/ikatyang/tree-sitter-yaml — licensed under the MIT
License.
* https://github.com/jiyee/tree-sitter-objc — licensed under the MIT License.
* https://github.com/m-novikov/tree-sitter-sql — licensed under the MIT
License.
* https://github.com/r-lib/tree-sitter-r — licensed under the MIT License.
* https://github.com/rydesun/tree-sitter-dot — licensed under the MIT License.
* https://github.com/slackhq/tree-sitter-hack — licensed under the MIT
License.
* https://github.com/theHamsta/tree-sitter-commonlisp — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-bash — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-c — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-c-sharp — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-cpp — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-css — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-embedded-template — licensed
under the MIT License.
* https://github.com/tree-sitter/tree-sitter-go — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-haskell — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-html — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-java — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-javascript — licensed under the
MIT License.
* https://github.com/tree-sitter/tree-sitter-jsdoc — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-json — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-julia — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-ocaml — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-php — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-python — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-ql — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-regex — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-ruby — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-rust — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-scala — licensed under the MIT
License.
* https://github.com/dhcmrlchtdj/tree-sitter-sqlite - licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-toml — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-tsq — licensed under the MIT
License.
* https://github.com/tree-sitter/tree-sitter-typescript — licensed under the
MIT License.
* https://github.com/stsewd/tree-sitter-rst - licensed under the MIT License.
* https://github.com/MichaHoffmann/tree-sitter-hcl - licensed under the
Apache License, Version 2.0.
* https://github.com/stadelmanma/tree-sitter-fortran - licensed under the MIT
License.
* https://github.com/stadelmanma/tree-sitter-fixed-form-fortran - licensed under
the MIT License.
.. _`tree-sitter`: https://tree-sitter.github.io/
Raw data
{
"_id": null,
"home_page": "https://github.com/grantjenks/py-tree-sitter-languages/pull/53",
"name": "tree-sitter-languages-freed-wu-pr",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Grant Jenks",
"author_email": "contact@grantjenks.com",
"download_url": null,
"platform": null,
"description": "==================================================\nPython Bindings for Tree Sitter with All Languages\n==================================================\n\nThis is a fork!\n===============\n\nIt is based on `@Freed_Wu's pull request`_ which adds support for many additional\ntree-sitter language parsers beyond the original.\n\nAs the package seems unmaintained, I decided to fork it based on the PR. Note that\nthis version may not see additional support and you should switch back to the\noriginal once it gets going again.\n\nThe package has been renamed to avoid collision with the original.\n\nThe Windows and ARM Arch64 packages still only get the original languages, for\nWindows because the extended commandline busted the `link.exe` command line length\nlimit, and for ARM Arch64 because the Github action uses QEMU to build on ARM,\nwhich is slow, so the additional languages cause the Github runner to time out.\n\nOriginal README\n===============\n\nBinary Python wheels for all tree sitter languages.\n\n`py-tree-sitter`_ is a fantastic library that provides Python bindings for the\neven more fantastic `tree-sitter`_ parsing library.\n\n`py-tree-sitter-languages`_ provides binary Python wheels for all tree sitter\nlanguages. The binary wheels remove the need to download and compile support\nfor individual languages.\n\nThis package is based on\n\n.. _`py-tree-sitter-languages`: https://github.com/grantjenks/py-tree-sitter-languages\n.. _`@Freed_Wu's pull request`: https://github.com/grantjenks/py-tree-sitter-languages/pull/53\n\n\nInstall\n=======\n\n::\n\n pip install tree_sitter_languages_freed_wu_pr\n\nSource installs are not supported. To see how the binary wheels are built, look\nat:\n\n1. `setup.py` \u2014 Python package setup.\n\n2. `parsers.json`, `lockfile.json` \u2014 Json files that contain a list of included language repositories and their commit hashes.\n\n3. `build.py` \u2014 Python script to download and build the language repositories.\n\n4. `.github/workflows/release.yml` \u2014 GitHub action to invoke `cibuildwheel`_ and\n release to PyPI.\n\n.. _`cibuildwheel`: https://github.com/pypa/cibuildwheel\n\n\nUsage\n=====\n\n.. code:: python\n\n from tree_sitter_languages_freed_wu_pr import get_language, get_parser\n\n language = get_language('python')\n parser = get_parser('python')\n\nThat's the whole API!\n\nRefer to `py-tree-sitter`_ for the language and parser API. Notice the\n``Language.build_library(...)`` step can be skipped! The binary wheel includes\nthe language binary.\n\n.. _`py-tree-sitter`: https://github.com/tree-sitter/py-tree-sitter\n\n\nDemo\n====\n\nWant to know something crazy? Python lacks multi-line comments. Whhaaa!?!\n\nIt's really not such a big deal. Instead of writing\n\n.. code:: python\n\n \"\"\"\n My awesome\n multi-line\n comment.\n \"\"\"\n\nSimply write\n\n.. code:: python\n\n # My awesome\n # multi-line\n # comment.\n\nSo multi-line comments are made by putting multiple single-line comments in\nsequence. Amazing!\n\nNow, how to find all the strings being used as comments?\n\nStart with some example Python code\n\n.. code:: python\n\n example = \"\"\"\n #!shebang\n # License blah blah (Apache 2.0)\n \"This is a module docstring.\"\n\n a = 1\n\n '''This\n is\n not\n a\n multiline\n comment.'''\n\n b = 2\n\n class Test:\n \"This is a class docstring.\"\n\n 'This is bogus.'\n\n def test(self):\n \"This is a function docstring.\"\n\n \"Please, no.\"\n\n return 1\n\n c = 3\n \"\"\"\n\nNotice a couple things:\n\n1. Python has module, class, and function docstrings that bare a striking\n resemblance to the phony string comments.\n\n2. Python supports single-quoted, double-quoted, triple-single-quoted, and\n triple-double-quoted strings (not to mention prefixes for raw strings,\n unicode strings, and more).\n\nCreating a regular expression to capture the phony string comments would be\nexceedingly difficult!\n\nEnter `tree-sitter`_\n\n.. code:: python\n\n from tree_sitter_languages_freed_wu_pr import get_language, get_parser\n\n language = get_language('python')\n parser = get_parser('python')\n\nTree-sitter creates an abstract syntax tree (actually, a `concrete syntax\ntree`_) and supports queries\n\n.. code:: python\n\n tree = parser.parse(example.encode())\n node = tree.root_node\n print(node.sexp())\n\n.. _`concrete syntax tree`: https://stackoverflow.com/q/1888854/232571\n\nLook for statements that are a single string expression\n\n.. code:: python\n\n stmt_str_pattern = '(expression_statement (string)) @stmt_str'\n stmt_str_query = language.query(stmt_str_pattern)\n stmt_strs = stmt_str_query.captures(node)\n stmt_str_points = set(\n (node.start_point, node.end_point) for node, _ in stmt_strs\n )\n print(stmt_str_points)\n\nNow, find those statement string expressions that are actually module, class,\nor function docstrings\n\n.. code:: python\n\n doc_str_pattern = \"\"\"\n (module . (comment)* . (expression_statement (string)) @module_doc_str)\n\n (class_definition\n body: (block . (expression_statement (string)) @class_doc_str))\n\n (function_definition\n body: (block . (expression_statement (string)) @function_doc_str))\n \"\"\"\n doc_str_query = language.query(doc_str_pattern)\n doc_strs = doc_str_query.captures(node)\n doc_str_points = set(\n (node.start_point, node.end_point) for node, _ in doc_strs\n )\n\nWith the set of string expression statements and the set of docstring\nstatements, the locations of all phony string comments is\n\n.. code:: python\n\n comment_strs = stmt_str_points - doc_str_points\n print(sorted(comment_strs))\n\n\nLicense\n=======\n\nCopyright 2022-2023 Grant Jenks\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed\nunder the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\nCONDITIONS OF ANY KIND, either express or implied. See the License for the\nspecific language governing permissions and limitations under the License.\n\nThe project also includes the following other projects distributed in binary\nform:\n\n* https://github.com/tree-sitter/tree-sitter \u2014 licensed under the MIT License.\n\n* https://github.com/WhatsApp/tree-sitter-erlang \u2014 licensed under\n the Apache License, Version 2.0.\n\n* https://github.com/Azganoth/tree-sitter-lua \u2014 licensed under the MIT\n License.\n\n* https://github.com/Wilfred/tree-sitter-elisp \u2014 licensed under the MIT\n License.\n\n* https://github.com/alemuller/tree-sitter-make \u2014 licensed under the MIT\n License.\n\n* https://github.com/camdencheek/tree-sitter-dockerfile \u2014 licensed under the\n MIT License.\n\n* https://github.com/camdencheek/tree-sitter-go-mod \u2014 licensed under the MIT\n License.\n\n* https://github.com/elixir-lang/tree-sitter-elixir \u2014 licensed under the\n Apache License, Version 2.0.\n\n* https://github.com/elm-tooling/tree-sitter-elm \u2014 licensed under the MIT\n License.\n\n* https://github.com/fwcd/tree-sitter-kotlin \u2014 licensed under the MIT License.\n\n* https://github.com/ganezdragon/tree-sitter-perl \u2014 licensed under the MIT\n License.\n\n* https://github.com/ikatyang/tree-sitter-markdown \u2014 licensed under the MIT\n License.\n\n* https://github.com/ikatyang/tree-sitter-yaml \u2014 licensed under the MIT\n License.\n\n* https://github.com/jiyee/tree-sitter-objc \u2014 licensed under the MIT License.\n\n* https://github.com/m-novikov/tree-sitter-sql \u2014 licensed under the MIT\n License.\n\n* https://github.com/r-lib/tree-sitter-r \u2014 licensed under the MIT License.\n\n* https://github.com/rydesun/tree-sitter-dot \u2014 licensed under the MIT License.\n\n* https://github.com/slackhq/tree-sitter-hack \u2014 licensed under the MIT\n License.\n\n* https://github.com/theHamsta/tree-sitter-commonlisp \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-bash \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-c \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-c-sharp \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-cpp \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-css \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-embedded-template \u2014 licensed\n under the MIT License.\n\n* https://github.com/tree-sitter/tree-sitter-go \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-haskell \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-html \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-java \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-javascript \u2014 licensed under the\n MIT License.\n\n* https://github.com/tree-sitter/tree-sitter-jsdoc \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-json \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-julia \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-ocaml \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-php \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-python \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-ql \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-regex \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-ruby \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-rust \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-scala \u2014 licensed under the MIT\n License.\n\n* https://github.com/dhcmrlchtdj/tree-sitter-sqlite - licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-toml \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-tsq \u2014 licensed under the MIT\n License.\n\n* https://github.com/tree-sitter/tree-sitter-typescript \u2014 licensed under the\n MIT License.\n\n* https://github.com/stsewd/tree-sitter-rst - licensed under the MIT License.\n\n* https://github.com/MichaHoffmann/tree-sitter-hcl - licensed under the\n Apache License, Version 2.0.\n\n* https://github.com/stadelmanma/tree-sitter-fortran - licensed under the MIT\n License.\n\n* https://github.com/stadelmanma/tree-sitter-fixed-form-fortran - licensed under\n the MIT License.\n\n.. _`tree-sitter`: https://tree-sitter.github.io/\n",
"bugtrack_url": null,
"license": "Apache 2.0",
"summary": "Binary Python wheels for all tree sitter languages (Freed-Wu PR).",
"version": "1.11.1",
"project_urls": {
"Documentation": "https://github.com/grantjenks/py-tree-sitter-languages",
"Homepage": "https://github.com/grantjenks/py-tree-sitter-languages/pull/53",
"Source": "https://github.com/grantjenks/py-tree-sitter-languages",
"Tracker": "https://github.com/grantjenks/py-tree-sitter-languages/issues"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "2da0d4b5a72ce650bc7885e04725db00be3d9eaa27eb3e65c3d5a3ea9e47aa92",
"md5": "612144ae8e564640ce5b300395993e6c",
"sha256": "ee3953a223a5b06fdeaba7e83a00ea21dd7df708b1fb1d0dc45f59d4d95a7f28"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "612144ae8e564640ce5b300395993e6c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 22729067,
"upload_time": "2024-10-28T01:44:00",
"upload_time_iso_8601": "2024-10-28T01:44:00.393586Z",
"url": "https://files.pythonhosted.org/packages/2d/a0/d4b5a72ce650bc7885e04725db00be3d9eaa27eb3e65c3d5a3ea9e47aa92/tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f871b58d9848997ae281c48123149ff89682ea3395309015eaa7e5eeb098458b",
"md5": "b79c99c0f9a65fa9b4ec54d65efb7579",
"sha256": "45518dba2f711010e5026501a220b9d24118993d329743e9ef957436be8d154d"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b79c99c0f9a65fa9b4ec54d65efb7579",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 25263361,
"upload_time": "2024-10-28T01:44:03",
"upload_time_iso_8601": "2024-10-28T01:44:03.974466Z",
"url": "https://files.pythonhosted.org/packages/f8/71/b58d9848997ae281c48123149ff89682ea3395309015eaa7e5eeb098458b/tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6129fecce8486a4b8c0536acdcc5103f8b6174825bf98f3313c56db41f2990e2",
"md5": "de0477a2dc52f0d09623558fec2dc7c4",
"sha256": "0db4efac2b14e0c763d67eb18d72581f136827dc6a4a211c3f180944527eb8ee"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "de0477a2dc52f0d09623558fec2dc7c4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 6879239,
"upload_time": "2024-10-28T01:44:07",
"upload_time_iso_8601": "2024-10-28T01:44:07.061271Z",
"url": "https://files.pythonhosted.org/packages/61/29/fecce8486a4b8c0536acdcc5103f8b6174825bf98f3313c56db41f2990e2/tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64d9e20b03d18be58b2119747ca80e8634602f100bae85a539c6d0e055bdc977",
"md5": "18322f04ba388345b4b4a326364e0395",
"sha256": "e5947e4182f1194766d5711c2a6ad6f93e600aebc01e2a966b1f6001307de60a"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "18322f04ba388345b4b4a326364e0395",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 19159339,
"upload_time": "2024-10-28T01:44:08",
"upload_time_iso_8601": "2024-10-28T01:44:08.871308Z",
"url": "https://files.pythonhosted.org/packages/64/d9/e20b03d18be58b2119747ca80e8634602f100bae85a539c6d0e055bdc977/tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "341f2c931510da036ec811c2d53949a8ab1911b8c550f29bf880bc28fcecc2ad",
"md5": "98fbe77d7b55f7fb703a04d92f001b47",
"sha256": "20547930dff7f4f2f501902478aef5842ae35c39623119776c096f5222d3d0ba"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "98fbe77d7b55f7fb703a04d92f001b47",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 19774260,
"upload_time": "2024-10-28T01:44:11",
"upload_time_iso_8601": "2024-10-28T01:44:11.798155Z",
"url": "https://files.pythonhosted.org/packages/34/1f/2c931510da036ec811c2d53949a8ab1911b8c550f29bf880bc28fcecc2ad/tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac343b4dc7b56d47bb24179cf6bc3a201ca0752069bcc5a078c3a00c6cc0f5c5",
"md5": "e0957783f5ad26349afef05b50584505",
"sha256": "ffe1cace373b7323765515cf10cbc900efec06439ed98044f8886a354dbba318"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "e0957783f5ad26349afef05b50584505",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 6887835,
"upload_time": "2024-10-28T01:44:14",
"upload_time_iso_8601": "2024-10-28T01:44:14.643122Z",
"url": "https://files.pythonhosted.org/packages/ac/34/3b4dc7b56d47bb24179cf6bc3a201ca0752069bcc5a078c3a00c6cc0f5c5/tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15e9baca0090b813476e08593c0f9d29193058a705a1b31b1896beb89510379c",
"md5": "e3de4b3742a9364a8a05d34c7c06b6fd",
"sha256": "070329342ecfeaad8bf8d701182cc1db0dbfd619250c39cf8d460b6a0d4443ed"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "e3de4b3742a9364a8a05d34c7c06b6fd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 19791582,
"upload_time": "2024-10-28T01:44:17",
"upload_time_iso_8601": "2024-10-28T01:44:17.289598Z",
"url": "https://files.pythonhosted.org/packages/15/e9/baca0090b813476e08593c0f9d29193058a705a1b31b1896beb89510379c/tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c1b4cfd3b4f4056299c6e73b90c00c9feb7bc33564adcf8a2cc84506ba62f989",
"md5": "0cc7fa3027eb795d7dadf09fcca201f7",
"sha256": "04966880c64f6838ab290d66e837c53ece61ec23601f3d3b197bacbf181975a7"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "0cc7fa3027eb795d7dadf09fcca201f7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 19169293,
"upload_time": "2024-10-28T01:44:20",
"upload_time_iso_8601": "2024-10-28T01:44:20.313177Z",
"url": "https://files.pythonhosted.org/packages/c1/b4/cfd3b4f4056299c6e73b90c00c9feb7bc33564adcf8a2cc84506ba62f989/tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab99ef5943d2f1e32a881b41608a28284aaa5afec7047fd7cb1daccfb8b23dc8",
"md5": "05f84f9f6c3d473e74af999d49e550a4",
"sha256": "c53467846d6b0376acb94a86339a297b71e6372566d2d925078066ab31801521"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "05f84f9f6c3d473e74af999d49e550a4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7002505,
"upload_time": "2024-10-28T01:44:22",
"upload_time_iso_8601": "2024-10-28T01:44:22.928081Z",
"url": "https://files.pythonhosted.org/packages/ab/99/ef5943d2f1e32a881b41608a28284aaa5afec7047fd7cb1daccfb8b23dc8/tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a88d795c2f6fa3421eae96dadc36dc1f4cc21adb3ac83369de2a2981b8d2d0e",
"md5": "ea5d46408692eabe71428d42790305c7",
"sha256": "0766ac7ae21846b18496041592f1aceefb5b144d351e4e3a20d9132852273542"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "ea5d46408692eabe71428d42790305c7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 6919366,
"upload_time": "2024-10-28T01:44:25",
"upload_time_iso_8601": "2024-10-28T01:44:25.181082Z",
"url": "https://files.pythonhosted.org/packages/3a/88/d795c2f6fa3421eae96dadc36dc1f4cc21adb3ac83369de2a2981b8d2d0e/tree_sitter_languages_freed_wu_pr-1.11.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd89eceaaeee0fc6a6a844fc38072ca36e9aebaf90cfa6a40124356a7a8a6ffb",
"md5": "23b9a9378bf548962db80441cc3f7651",
"sha256": "48848e9e7d790db354d163418fc92119deccd3f3b6edc330aad141e35fb072e7"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "23b9a9378bf548962db80441cc3f7651",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 22729000,
"upload_time": "2024-10-28T01:44:26",
"upload_time_iso_8601": "2024-10-28T01:44:26.976462Z",
"url": "https://files.pythonhosted.org/packages/cd/89/eceaaeee0fc6a6a844fc38072ca36e9aebaf90cfa6a40124356a7a8a6ffb/tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d16c479a9379597707d3429b72eb68db4ffe5c1e2326313470db175c61eddda",
"md5": "6ff0ff6ecb02eac634f7920ebd3cd8e1",
"sha256": "993cecc494d0a833ca982717c1cd80dc24b059086d4bece72771464ae93e295f"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6ff0ff6ecb02eac634f7920ebd3cd8e1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 25263289,
"upload_time": "2024-10-28T01:44:29",
"upload_time_iso_8601": "2024-10-28T01:44:29.380654Z",
"url": "https://files.pythonhosted.org/packages/3d/16/c479a9379597707d3429b72eb68db4ffe5c1e2326313470db175c61eddda/tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "42ba98fb41969cbb4795b3600c93e118a9e45d807a4cea00282bc6d769aa8315",
"md5": "477854c66a232b09432276375a398679",
"sha256": "50e64a4d505ab1e8550f0e651d61b26779c645d94bcd62e39d66ab9620d5fa22"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "477854c66a232b09432276375a398679",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 6890923,
"upload_time": "2024-10-28T01:44:32",
"upload_time_iso_8601": "2024-10-28T01:44:32.278414Z",
"url": "https://files.pythonhosted.org/packages/42/ba/98fb41969cbb4795b3600c93e118a9e45d807a4cea00282bc6d769aa8315/tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54956b431b64d7caa1c35e61462c4030902b179308fd5e3f4d715c7722470a6f",
"md5": "7d630f4a1253689689463bccc6d42e9d",
"sha256": "1cb0ecfcc298d4c8ebb76aa2989ce5992788dfa5db8554b2742c7a7fa9805d6c"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7d630f4a1253689689463bccc6d42e9d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 19170076,
"upload_time": "2024-10-28T01:44:35",
"upload_time_iso_8601": "2024-10-28T01:44:35.416546Z",
"url": "https://files.pythonhosted.org/packages/54/95/6b431b64d7caa1c35e61462c4030902b179308fd5e3f4d715c7722470a6f/tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b58e92d1b7e3ebee1bc92c059acd44d935b478c5a9c5a1cb722c57e1145a0291",
"md5": "0404879de4021a24283ac7f95ac6f2ad",
"sha256": "847634d0d8beeb31da06a9970110c832a9509b9997b5ffd073e4e27671a29359"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0404879de4021a24283ac7f95ac6f2ad",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 19784761,
"upload_time": "2024-10-28T01:44:37",
"upload_time_iso_8601": "2024-10-28T01:44:37.676260Z",
"url": "https://files.pythonhosted.org/packages/b5/8e/92d1b7e3ebee1bc92c059acd44d935b478c5a9c5a1cb722c57e1145a0291/tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd46df872d1b0686d45560df50e949f8db8ad7e174c30cb85f1a2dbec38cb533",
"md5": "4edb577c7301e78027e914a2af96abf4",
"sha256": "c2fc03d2caa1a8f19cb6cc01dff422c5b6b556ba49418f99e90a222fc0f3447c"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "4edb577c7301e78027e914a2af96abf4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 6894466,
"upload_time": "2024-10-28T01:44:40",
"upload_time_iso_8601": "2024-10-28T01:44:40.516420Z",
"url": "https://files.pythonhosted.org/packages/bd/46/df872d1b0686d45560df50e949f8db8ad7e174c30cb85f1a2dbec38cb533/tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c35e7f00b52e10c98d9f9998ab0b353ceb69ac7c241523660e7149c5c838549",
"md5": "09eae84d0ec35d7a6e719d37696a6fbe",
"sha256": "d87c10ae996c90c649e6741d6dbf901525c6e73bf8e26c6924dab94ae5f8da3b"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "09eae84d0ec35d7a6e719d37696a6fbe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 19796971,
"upload_time": "2024-10-28T01:44:42",
"upload_time_iso_8601": "2024-10-28T01:44:42.329127Z",
"url": "https://files.pythonhosted.org/packages/5c/35/e7f00b52e10c98d9f9998ab0b353ceb69ac7c241523660e7149c5c838549/tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3f4f5d3d8e3866536bd9b196f5a8801bf9c3c65e700983dc58e215fc1f58f4aa",
"md5": "3188fbd11576b4bff080d50fb3512d0f",
"sha256": "ab8ef68bd2ef0ebbb979efbe3c04b58d1343caf93839b879e772d19cd93bf3a5"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "3188fbd11576b4bff080d50fb3512d0f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 19174956,
"upload_time": "2024-10-28T01:44:44",
"upload_time_iso_8601": "2024-10-28T01:44:44.719955Z",
"url": "https://files.pythonhosted.org/packages/3f/4f/5d3d8e3866536bd9b196f5a8801bf9c3c65e700983dc58e215fc1f58f4aa/tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e20f8c62db55620b92a4bd9d27eabf0c5746025fb65420a157f661c91259aca3",
"md5": "3d73d44fefcf69f5da1392598a6f2ef9",
"sha256": "127f7596ee9a31501fd9cc79e5f6227339d10a9d541765077d4a79ab4ddb8093"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "3d73d44fefcf69f5da1392598a6f2ef9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7002439,
"upload_time": "2024-10-28T01:44:47",
"upload_time_iso_8601": "2024-10-28T01:44:47.108932Z",
"url": "https://files.pythonhosted.org/packages/e2/0f/8c62db55620b92a4bd9d27eabf0c5746025fb65420a157f661c91259aca3/tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "58ea40536a9bf4cb6da85e2d46ba54df6636f361db15b80cd5e97d56aa8b0c67",
"md5": "56f53e5dd18e18a1001900dc4824cbd5",
"sha256": "108925b7170a5fe7d3a4b6379c0cfc413d83845af3def673f0bd833a9d096bed"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "56f53e5dd18e18a1001900dc4824cbd5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 6919443,
"upload_time": "2024-10-28T01:44:48",
"upload_time_iso_8601": "2024-10-28T01:44:48.596768Z",
"url": "https://files.pythonhosted.org/packages/58/ea/40536a9bf4cb6da85e2d46ba54df6636f361db15b80cd5e97d56aa8b0c67/tree_sitter_languages_freed_wu_pr-1.11.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc926e2609b6e95e37aad8846051ba37d98137ad7a2d9729dcf42f871d4fd868",
"md5": "e2df1b61fce7bc1d1ce2fccc0a3dc107",
"sha256": "3ed959d372d17f0b9f796808dac90d8bb7e05177194f5cd3d4390fff71313791"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e2df1b61fce7bc1d1ce2fccc0a3dc107",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 22728904,
"upload_time": "2024-10-28T01:44:50",
"upload_time_iso_8601": "2024-10-28T01:44:50.434937Z",
"url": "https://files.pythonhosted.org/packages/bc/92/6e2609b6e95e37aad8846051ba37d98137ad7a2d9729dcf42f871d4fd868/tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "82586f86b626a4ad3e5702e0fdebd9ff1be7c1aa195539045aeac28513589587",
"md5": "e3fa886ffb25620681c1ce49e2261f56",
"sha256": "cfafb6d30d58107a53dd60df51581c3dae36fb675c181276de97e1ca66fa8a95"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e3fa886ffb25620681c1ce49e2261f56",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 25263381,
"upload_time": "2024-10-28T01:44:53",
"upload_time_iso_8601": "2024-10-28T01:44:53.130090Z",
"url": "https://files.pythonhosted.org/packages/82/58/6f86b626a4ad3e5702e0fdebd9ff1be7c1aa195539045aeac28513589587/tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4dda4adbcb7213c3535fe1a9b93adffbeaf6e7042965f065188446d7fd620aa6",
"md5": "e599fe1993a5d094206c2120e33fe69e",
"sha256": "f781e6248e42d9078656b091d801e7fbf9d8a80e6e07dea72ec9b05c2707528a"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e599fe1993a5d094206c2120e33fe69e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 6900527,
"upload_time": "2024-10-28T01:44:55",
"upload_time_iso_8601": "2024-10-28T01:44:55.697156Z",
"url": "https://files.pythonhosted.org/packages/4d/da/4adbcb7213c3535fe1a9b93adffbeaf6e7042965f065188446d7fd620aa6/tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e98b696508e3027babcaa6b173de2ab976cef9d425b44a7a83e8c37f7240c0e",
"md5": "de37bd59464588645a25a82400ec57ea",
"sha256": "fe792e5fd1aee0ee63e3fa0a726b28becdaae4affba8efa8d9e8b9fc05ab2c16"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "de37bd59464588645a25a82400ec57ea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 19181121,
"upload_time": "2024-10-28T01:44:59",
"upload_time_iso_8601": "2024-10-28T01:44:59.740884Z",
"url": "https://files.pythonhosted.org/packages/1e/98/b696508e3027babcaa6b173de2ab976cef9d425b44a7a83e8c37f7240c0e/tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e545d0c70b9f06a9673e5f85196c7ee1ae7ec5ac156430c0d89783b1c258ab5",
"md5": "2e3552d381b830fa334039ea0e680ece",
"sha256": "fa492af4ebfc8bb88a768d9fb7a93260c1987920bf5df819c08c26cfdc5cbe73"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2e3552d381b830fa334039ea0e680ece",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 19795857,
"upload_time": "2024-10-28T01:45:01",
"upload_time_iso_8601": "2024-10-28T01:45:01.986918Z",
"url": "https://files.pythonhosted.org/packages/0e/54/5d0c70b9f06a9673e5f85196c7ee1ae7ec5ac156430c0d89783b1c258ab5/tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4936c7aeddc441df7273d16d02cb56494dd2347d71304b06cfb98e80eba36c75",
"md5": "83b1ae64733901d924aa86b60428fc35",
"sha256": "72fdf9309becca55482ed93b3ff999feb3fc31b7478eb39da21ba8edcc75043d"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "83b1ae64733901d924aa86b60428fc35",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 6903946,
"upload_time": "2024-10-28T01:45:05",
"upload_time_iso_8601": "2024-10-28T01:45:05.856672Z",
"url": "https://files.pythonhosted.org/packages/49/36/c7aeddc441df7273d16d02cb56494dd2347d71304b06cfb98e80eba36c75/tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b6f8d4a80098992aac210320becaba1d60e66a65fe06e22dd8449304b082da0",
"md5": "064a7015f00147bb18a801a951a9620a",
"sha256": "2d6440fa97fc8636ac7b9cd104ed3d56af992365381123b4e24ef48fdbe04113"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "064a7015f00147bb18a801a951a9620a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 19806188,
"upload_time": "2024-10-28T01:45:08",
"upload_time_iso_8601": "2024-10-28T01:45:08.692465Z",
"url": "https://files.pythonhosted.org/packages/8b/6f/8d4a80098992aac210320becaba1d60e66a65fe06e22dd8449304b082da0/tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a0c86ac6bcdf40d4f353c9595c75b3357fcbf59dca1575da7cd3b2bf5b9cdab",
"md5": "4fc49276adf57b16b817fd40aa464ef6",
"sha256": "d33810134ac702cc0ea11af41c58b3b6c45182bab8d82fa658585aeff63b4ad1"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4fc49276adf57b16b817fd40aa464ef6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 19185859,
"upload_time": "2024-10-28T01:45:10",
"upload_time_iso_8601": "2024-10-28T01:45:10.996958Z",
"url": "https://files.pythonhosted.org/packages/4a/0c/86ac6bcdf40d4f353c9595c75b3357fcbf59dca1575da7cd3b2bf5b9cdab/tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4139b70de5d5910ca987c1dab6251966ad21ba6034b9139aaad29be719933b62",
"md5": "0bd890f100c27081050e129741e6b196",
"sha256": "17e974da7896af1ae8c535866f0eafabb2cd0686d5facbbc600f9b3adef18e01"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "0bd890f100c27081050e129741e6b196",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7002130,
"upload_time": "2024-10-28T01:45:13",
"upload_time_iso_8601": "2024-10-28T01:45:13.236583Z",
"url": "https://files.pythonhosted.org/packages/41/39/b70de5d5910ca987c1dab6251966ad21ba6034b9139aaad29be719933b62/tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3e46ecdedc0ed4dd19b70379e231a1746bf48ea0e49954ff194dfa10a76ee81",
"md5": "94708f5d91988fe215a1789c580784d3",
"sha256": "1bb945a47ce5d7f41f42e00922c731ef6700c7b3296045f12c2db5e12a278430"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "94708f5d91988fe215a1789c580784d3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 6919330,
"upload_time": "2024-10-28T01:45:14",
"upload_time_iso_8601": "2024-10-28T01:45:14.733044Z",
"url": "https://files.pythonhosted.org/packages/d3/e4/6ecdedc0ed4dd19b70379e231a1746bf48ea0e49954ff194dfa10a76ee81/tree_sitter_languages_freed_wu_pr-1.11.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "faf9a1e06b7e4bbd9814cddcc8495d346df7405beeba44cd140debac150d2459",
"md5": "88c0c11261bd0d4ddeca2eefc09d9dcf",
"sha256": "c9ef04a9e1eeb46aca74f3fb9927ba1f68a2041470106b98bc85a7bf6cf49eb2"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "88c0c11261bd0d4ddeca2eefc09d9dcf",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 22729740,
"upload_time": "2024-10-28T01:45:16",
"upload_time_iso_8601": "2024-10-28T01:45:16.541177Z",
"url": "https://files.pythonhosted.org/packages/fa/f9/a1e06b7e4bbd9814cddcc8495d346df7405beeba44cd140debac150d2459/tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f8dc200d8855d5a80149a12e79ff28ff2267ad46d348b1a420c33787752aa4b",
"md5": "14878d79aeee04660bc10f7d13dafbfb",
"sha256": "b5a73b6139740d23abf8cc38937f20917848bf02d94a691766c53d464438becf"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "14878d79aeee04660bc10f7d13dafbfb",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 6875747,
"upload_time": "2024-10-28T01:45:19",
"upload_time_iso_8601": "2024-10-28T01:45:19.656686Z",
"url": "https://files.pythonhosted.org/packages/5f/8d/c200d8855d5a80149a12e79ff28ff2267ad46d348b1a420c33787752aa4b/tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a44d2d635003030cd02a432dc65e77729af69b5580c5d6741558ea60ef475a87",
"md5": "87140f216bd49df5d1829b001dc01c60",
"sha256": "ba0d8b017e4e5209577a82e153a006e98b542c52f4e3ddb0552d6e74b7841a47"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "87140f216bd49df5d1829b001dc01c60",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 19155982,
"upload_time": "2024-10-28T01:45:22",
"upload_time_iso_8601": "2024-10-28T01:45:22.198565Z",
"url": "https://files.pythonhosted.org/packages/a4/4d/2d635003030cd02a432dc65e77729af69b5580c5d6741558ea60ef475a87/tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a785cec19a63ff3503e519531d634f94509475435e0f9314934cda98fb6372c",
"md5": "d907774087d7d346208b9ac8419a5a91",
"sha256": "7aa4d455cdaa289451f4788b7dc2437c5abef5aeeec7a16c0b47801a8d4ecc7a"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d907774087d7d346208b9ac8419a5a91",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 19770595,
"upload_time": "2024-10-28T01:45:24",
"upload_time_iso_8601": "2024-10-28T01:45:24.482846Z",
"url": "https://files.pythonhosted.org/packages/7a/78/5cec19a63ff3503e519531d634f94509475435e0f9314934cda98fb6372c/tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce0c1202a1ce1541db81a4f059a2f6faf6bb77db016fe7982d661dca69ec34cd",
"md5": "bd1dbb84fceeddafa7a5b05f4475d8af",
"sha256": "9505f85e06b9a6b479d9aff9adefed470b5e7e94fe08ae5303349d5dfeeee1dd"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "bd1dbb84fceeddafa7a5b05f4475d8af",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 6878945,
"upload_time": "2024-10-28T01:45:26",
"upload_time_iso_8601": "2024-10-28T01:45:26.724303Z",
"url": "https://files.pythonhosted.org/packages/ce/0c/1202a1ce1541db81a4f059a2f6faf6bb77db016fe7982d661dca69ec34cd/tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b3f72c18d3eb200f40773c51069caae10b9cbd67982f4dd07eb82955c2e2b481",
"md5": "6fac8287f7f09ab94861dedf160d1224",
"sha256": "25311f3ec3c7116b5f59d1bcd56aaf2b788c7811a6efdc49f4fcb277642076c1"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "6fac8287f7f09ab94861dedf160d1224",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 19782295,
"upload_time": "2024-10-28T01:45:28",
"upload_time_iso_8601": "2024-10-28T01:45:28.785227Z",
"url": "https://files.pythonhosted.org/packages/b3/f7/2c18d3eb200f40773c51069caae10b9cbd67982f4dd07eb82955c2e2b481/tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "01f6671ac9e7de43216845e70f73dced16c647b55f517f036ae0c8b1558a47df",
"md5": "32e9c1e6753cd3082cb7a2a6a2ad5d26",
"sha256": "ea079418763bd50e66c448e1ef3a129175b53e9db2953fc1cfbc8edfa97eabe3"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "32e9c1e6753cd3082cb7a2a6a2ad5d26",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 19160724,
"upload_time": "2024-10-28T01:45:31",
"upload_time_iso_8601": "2024-10-28T01:45:31.059517Z",
"url": "https://files.pythonhosted.org/packages/01/f6/671ac9e7de43216845e70f73dced16c647b55f517f036ae0c8b1558a47df/tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1dfac503e67ed29d9b79453f5c37ba247b3fadcc9fb13e7abe1181d94bc0af74",
"md5": "401155890b51c78bb7f41b2a49b91a86",
"sha256": "b18a095b071f18ef3d8cbf242868cc8251cfde2c3633ca27251499dcd3445ef6"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "401155890b51c78bb7f41b2a49b91a86",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 7002745,
"upload_time": "2024-10-28T01:45:33",
"upload_time_iso_8601": "2024-10-28T01:45:33.963845Z",
"url": "https://files.pythonhosted.org/packages/1d/fa/c503e67ed29d9b79453f5c37ba247b3fadcc9fb13e7abe1181d94bc0af74/tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3f6525ffad085728aaf35a7d17c36a8fb3bba76715a7b9d00bb842bb2e7e70aa",
"md5": "07cd833a367787785c71b742c2d8e706",
"sha256": "7363115adfdc355cb3a4b9198ab879e49d1923a452586307bb771df9cc9ac97f"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "07cd833a367787785c71b742c2d8e706",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 6919842,
"upload_time": "2024-10-28T01:45:35",
"upload_time_iso_8601": "2024-10-28T01:45:35.492578Z",
"url": "https://files.pythonhosted.org/packages/3f/65/25ffad085728aaf35a7d17c36a8fb3bba76715a7b9d00bb842bb2e7e70aa/tree_sitter_languages_freed_wu_pr-1.11.1-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6a961f6c64eb45f988f5c6bd767eb56ddba82ffbcd10488414319a7196a7716",
"md5": "41ca2e9088130faa22a10a91a4809f81",
"sha256": "0bb9232e7c6c59a632f6bb6472a1588058b5c9e490c604f038ff93811795af1f"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "41ca2e9088130faa22a10a91a4809f81",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 22729279,
"upload_time": "2024-10-28T01:45:37",
"upload_time_iso_8601": "2024-10-28T01:45:37.266100Z",
"url": "https://files.pythonhosted.org/packages/d6/a9/61f6c64eb45f988f5c6bd767eb56ddba82ffbcd10488414319a7196a7716/tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44f37ef2e7b194b1070801416df147e48e37e2bcb894148bfdbd1724e757db3c",
"md5": "722a86a318e26674cef1b6694d1859d1",
"sha256": "d65b6ac318bf81f30852f01a10e5767f1b538ec351ea8ba6b5e373f400707afe"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "722a86a318e26674cef1b6694d1859d1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 25263514,
"upload_time": "2024-10-28T01:45:39",
"upload_time_iso_8601": "2024-10-28T01:45:39.662376Z",
"url": "https://files.pythonhosted.org/packages/44/f3/7ef2e7b194b1070801416df147e48e37e2bcb894148bfdbd1724e757db3c/tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "117476c995d14bccdc8a11b60cf7156064be586c6e4d2f0f61ff9515c47eeeba",
"md5": "5f8ec34a808b45c81cc570f719bab97e",
"sha256": "bab07440e34dc73ec8155234d1270d96360c86ea45ad2fa27b9b1b763dcc6669"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5f8ec34a808b45c81cc570f719bab97e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 6881527,
"upload_time": "2024-10-28T01:45:42",
"upload_time_iso_8601": "2024-10-28T01:45:42.351069Z",
"url": "https://files.pythonhosted.org/packages/11/74/76c995d14bccdc8a11b60cf7156064be586c6e4d2f0f61ff9515c47eeeba/tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3630a81a5d115b002a5e280a13eab57ee52b246216427478e747a8759f555b68",
"md5": "2bc3c4417dd431883fa144dc17d983d7",
"sha256": "cdb08c1ce4681b7b0af08c44478dc085a3fec0d30a785b4dbc2fb805cbf5d003"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2bc3c4417dd431883fa144dc17d983d7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 19161377,
"upload_time": "2024-10-28T01:45:44",
"upload_time_iso_8601": "2024-10-28T01:45:44.228204Z",
"url": "https://files.pythonhosted.org/packages/36/30/a81a5d115b002a5e280a13eab57ee52b246216427478e747a8759f555b68/tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cebe840f48a6a5414f55314958377e7a29e57a8fd6923968d002e46a76737ef8",
"md5": "748fca6814e7f5ff01ed4f1da03b4836",
"sha256": "03c27dc999b79f58893b2425d12dce378a876995a778b841e61327529847289a"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "748fca6814e7f5ff01ed4f1da03b4836",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 19776633,
"upload_time": "2024-10-28T01:45:47",
"upload_time_iso_8601": "2024-10-28T01:45:47.285160Z",
"url": "https://files.pythonhosted.org/packages/ce/be/840f48a6a5414f55314958377e7a29e57a8fd6923968d002e46a76737ef8/tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5533fd2afaf44af2048da1eb26ea96d2453acafe8f7dbc84983a7eeb286ec0a2",
"md5": "680ef6ba3daa90c6a1458a329139dec2",
"sha256": "4a841fc967f0c936a02c805f375cc31284edf47d7f97ff5652c3fed5cba47c27"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "680ef6ba3daa90c6a1458a329139dec2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 6886697,
"upload_time": "2024-10-28T01:45:50",
"upload_time_iso_8601": "2024-10-28T01:45:50.128181Z",
"url": "https://files.pythonhosted.org/packages/55/33/fd2afaf44af2048da1eb26ea96d2453acafe8f7dbc84983a7eeb286ec0a2/tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "98b18a4bb68c3b69a78dbdd9945c0e511f7f0ab2390ea4338ee8697acc35b569",
"md5": "e8eb24ac3ae2361bd35747a24fe86a35",
"sha256": "a591cbd989e17d9996c13fe35f17b68c30b4da2d787fd80de6d103a34db0b74c"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "e8eb24ac3ae2361bd35747a24fe86a35",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 19790642,
"upload_time": "2024-10-28T01:45:52",
"upload_time_iso_8601": "2024-10-28T01:45:52.322272Z",
"url": "https://files.pythonhosted.org/packages/98/b1/8a4bb68c3b69a78dbdd9945c0e511f7f0ab2390ea4338ee8697acc35b569/tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77a42675cf61ecb4c34c0d990433234b49dbbb610aa0c6ff6e19573a8884c3c2",
"md5": "d74b8dfea6657dc2a78df26b20aca6a7",
"sha256": "b9040c5861e95bc29301c752b14b19434c1f4a0a72f3207fafc5cc71b908ef47"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d74b8dfea6657dc2a78df26b20aca6a7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 19168570,
"upload_time": "2024-10-28T01:45:54",
"upload_time_iso_8601": "2024-10-28T01:45:54.618387Z",
"url": "https://files.pythonhosted.org/packages/77/a4/2675cf61ecb4c34c0d990433234b49dbbb610aa0c6ff6e19573a8884c3c2/tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5010747a2ad55c50cace632b5e6b182168441446b2969c3379ebe6e5fdf55b6e",
"md5": "06427b06f1ed9c6d4bb5901e8ce7fbce",
"sha256": "7675f495fb442b1755bf33ff066f91056f55b373421a0774c4d8f5552dfad47d"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "06427b06f1ed9c6d4bb5901e8ce7fbce",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 7002587,
"upload_time": "2024-10-28T01:45:57",
"upload_time_iso_8601": "2024-10-28T01:45:57.470408Z",
"url": "https://files.pythonhosted.org/packages/50/10/747a2ad55c50cace632b5e6b182168441446b2969c3379ebe6e5fdf55b6e/tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed6dc6c5dd81f93b31aabc80c4ad2a85facb9abcba1d309af0d66365d9a18320",
"md5": "24a1b4809ea6b0794065f424456315ef",
"sha256": "e31bd9c46f3077119473470543741c1146e523a150797f3b8d932312c2d4e948"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "24a1b4809ea6b0794065f424456315ef",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 6919500,
"upload_time": "2024-10-28T01:45:59",
"upload_time_iso_8601": "2024-10-28T01:45:59.060175Z",
"url": "https://files.pythonhosted.org/packages/ed/6d/c6c5dd81f93b31aabc80c4ad2a85facb9abcba1d309af0d66365d9a18320/tree_sitter_languages_freed_wu_pr-1.11.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a4be4e9ea8b7210ce4430e7d05e7f11f71933a0a8dc02bf3c74c71343e13584",
"md5": "120264af9dd5bb83e179f9da7482642d",
"sha256": "d8020d090a8544939e70a8eb09013c2dc717e0617d259fbaa437632237fb060d"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "120264af9dd5bb83e179f9da7482642d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 22729060,
"upload_time": "2024-10-28T01:46:00",
"upload_time_iso_8601": "2024-10-28T01:46:00.819900Z",
"url": "https://files.pythonhosted.org/packages/8a/4b/e4e9ea8b7210ce4430e7d05e7f11f71933a0a8dc02bf3c74c71343e13584/tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2aa8c0db424b921106d4ab1abc2c0c557185d5da153c596aba174aa3366282e",
"md5": "c82fa6e00e47f2897b454ce3dc65dadb",
"sha256": "a67a17fa9541eefe8782d2850eede044b7e45c5542b92076a7d51aa17dbf7c6f"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c82fa6e00e47f2897b454ce3dc65dadb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 25263357,
"upload_time": "2024-10-28T01:46:03",
"upload_time_iso_8601": "2024-10-28T01:46:03.545558Z",
"url": "https://files.pythonhosted.org/packages/f2/aa/8c0db424b921106d4ab1abc2c0c557185d5da153c596aba174aa3366282e/tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f15a049b42f5efc811a1325588492d5a9246bf9d95926dedf1d994c7375ca781",
"md5": "ed11da19b8020c95e2a7a06129308fc3",
"sha256": "9d73bceaab41dbbe4be31fca597d93ccb8ab001c81c4aedb759fc50a894adfe3"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ed11da19b8020c95e2a7a06129308fc3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 6879027,
"upload_time": "2024-10-28T01:46:06",
"upload_time_iso_8601": "2024-10-28T01:46:06.090395Z",
"url": "https://files.pythonhosted.org/packages/f1/5a/049b42f5efc811a1325588492d5a9246bf9d95926dedf1d994c7375ca781/tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0ded5227ee4b0bac20c9a13e10a4cf3aeebb7ccb036a78cbb7aa1bd948104092",
"md5": "3f6e6a2b946bd2ba599b0d48e2b806b4",
"sha256": "23f18454d796244f62067723dc9139beb089e79e76796c02505eb4e1046ec681"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3f6e6a2b946bd2ba599b0d48e2b806b4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 19159133,
"upload_time": "2024-10-28T01:46:07",
"upload_time_iso_8601": "2024-10-28T01:46:07.851209Z",
"url": "https://files.pythonhosted.org/packages/0d/ed/5227ee4b0bac20c9a13e10a4cf3aeebb7ccb036a78cbb7aa1bd948104092/tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f1ac8fa25285862f4e7ac6b88b3e8aef000baee548ce0040762dc271ce030f64",
"md5": "ef1830babb76b6886723965066a5a2ea",
"sha256": "6ae6eac99a28041db8606c967057588e07e2d49fd5c39f0fa4374d8c9e279e19"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ef1830babb76b6886723965066a5a2ea",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 19774055,
"upload_time": "2024-10-28T01:46:10",
"upload_time_iso_8601": "2024-10-28T01:46:10.119745Z",
"url": "https://files.pythonhosted.org/packages/f1/ac/8fa25285862f4e7ac6b88b3e8aef000baee548ce0040762dc271ce030f64/tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9fc4a2d13a5257fa801625e2baa069df1d9dfa2a8d51701f0e44b3fc0761d8ab",
"md5": "1f8f4d2682665c1386b9cbd8dfd32bcf",
"sha256": "ddad580759f898b2f8eda8fd0cdea7063ef70d94f97ab71a7a36ebcb8ae98049"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "1f8f4d2682665c1386b9cbd8dfd32bcf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 6887624,
"upload_time": "2024-10-28T01:46:12",
"upload_time_iso_8601": "2024-10-28T01:46:12.329763Z",
"url": "https://files.pythonhosted.org/packages/9f/c4/a2d13a5257fa801625e2baa069df1d9dfa2a8d51701f0e44b3fc0761d8ab/tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a7c899cf028c2848e608fe1639534c71036fdc0e48fd083194d0bb31ce81f6b0",
"md5": "ea99c4eb264a57780ee5629ce595d6b7",
"sha256": "47b6faedbb85112dda78901c80db70366dd88a9aba2c24788499deb01deba6d9"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "ea99c4eb264a57780ee5629ce595d6b7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 19791384,
"upload_time": "2024-10-28T01:46:14",
"upload_time_iso_8601": "2024-10-28T01:46:14.464009Z",
"url": "https://files.pythonhosted.org/packages/a7/c8/99cf028c2848e608fe1639534c71036fdc0e48fd083194d0bb31ce81f6b0/tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1582f1ccca5ca44da32875d8f44b74ac169737477da6a5352f5a9cb9c4b80f38",
"md5": "c9f163e5d2828dd124a0e3e016981fdb",
"sha256": "5b13af5e9e73c7c3b605fcc9cd9709133615c886ab82c1a15d3f1426c6670430"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c9f163e5d2828dd124a0e3e016981fdb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 19169035,
"upload_time": "2024-10-28T01:46:18",
"upload_time_iso_8601": "2024-10-28T01:46:18.561632Z",
"url": "https://files.pythonhosted.org/packages/15/82/f1ccca5ca44da32875d8f44b74ac169737477da6a5352f5a9cb9c4b80f38/tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d67ad543ea38856a8e6c881b3106a4caee4631f519b4b4a48e60fd11f3d12f4",
"md5": "7e97a0f93fa82073725b8a4c3f4f68ca",
"sha256": "5778888a08dbf63313d696953150a544506cc57615740c49f603c61a0606674b"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "7e97a0f93fa82073725b8a4c3f4f68ca",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7002502,
"upload_time": "2024-10-28T01:46:20",
"upload_time_iso_8601": "2024-10-28T01:46:20.715515Z",
"url": "https://files.pythonhosted.org/packages/4d/67/ad543ea38856a8e6c881b3106a4caee4631f519b4b4a48e60fd11f3d12f4/tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "127c6e36e6634f1143ed22b673ed99c8ab502673f265c083799a389d3014ff83",
"md5": "aab243d4dff69798afd153a389034330",
"sha256": "73d22fd8f4f8e8d91473de0bbd2ca35c6184e9adce83025fae6431e8f9e26761"
},
"downloads": -1,
"filename": "tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "aab243d4dff69798afd153a389034330",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 6919369,
"upload_time": "2024-10-28T01:46:22",
"upload_time_iso_8601": "2024-10-28T01:46:22.195565Z",
"url": "https://files.pythonhosted.org/packages/12/7c/6e36e6634f1143ed22b673ed99c8ab502673f265c083799a389d3014ff83/tree_sitter_languages_freed_wu_pr-1.11.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-28 01:44:00",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "grantjenks",
"github_project": "py-tree-sitter-languages",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "tree-sitter-languages-freed-wu-pr"
}