# PolyglotPiranha
PolyglotPiranha is a lightweight code transformation toolset for automating large scale changes. At Uber, it is mostly used to clean up stale feature flags.
We only support languages that are used at Uber. We likely won't be able to add new languages in this repo. There are a number of forks (see https://github.com/uber/piranha/forks for a full list) that may provide additional features.
## Installation
To install Polyglot Piranha, you can use it as a Python library or as a command-line tool.
### Python API
To install the Python API, run the following command:
```bash
pip install polyglot-piranha
```
### Command-line Interface
To install the command-line interface, follow these steps:
1. Install [Rust](https://www.rust-lang.org/tools/install)
2. Clone the repository: `git clone https://github.com/uber/piranha.git`
3. Navigate to the cloned directory: `cd piranha`
4. Build the project: `cargo build --release` (or `cargo build --release --no-default-features` for macOS)
5. The binary will be generated under `target/release`
## Example Usage
```python
from polyglot_piranha import execute_piranha, PiranhaArguments, Rule, RuleGraph, OutgoingEdges
# Original code snippet
code = """
if (obj.isLocEnabled() || x > 0) {
// do something
} else {
// do something else!
}
"""
# Define the rule to replace the method call
r1 = Rule(
name="replace_method",
query="cs :[x].isLocEnabled()", # cs indicates we are using concrete syntax
replace_node="*",
replace="true",
is_seed_rule=True
)
# Define the edges for the rule graph.
# In this case, boolean_literal_cleanup is already defined for java [see src/cleanup_rules]
edge = OutgoingEdges("replace_method", to=["boolean_literal_cleanup"], scope="parent")
# Create Piranha arguments
piranha_arguments = PiranhaArguments(
code_snippet=code,
language="java",
rule_graph=RuleGraph(rules=[r1], edges=[edge])
)
# Execute Piranha and print the transformed code
piranha_summary = execute_piranha(piranha_arguments)
print(piranha_summary[0].content)
```
## Documentation
For more examples and explanations of the toolset, please check our demos and extended [POLYGLOT_README.md](POLYGLOT_README.md) file.
## Feature Flags
Feature flags are commonly used to enable gradual rollout or experiment with new features. In a few cases, even after the purpose of the flag is accomplished, the code pertaining to the feature flag is not removed. We refer to such flags as stale flags. The presence of code pertaining to stale flags can have the following drawbacks:
- Unnecessary code clutter increases the overall complexity w.r.t maintenance resulting in reduced developer productivity
- The flags can interfere with other experimental flags (e.g., due to nesting under a flag that is always false)
- Presence of unused code in the source as well as the binary
- Stale flags can also cause bugs
PolyglotPiranha is a tool that can automatically refactor code related to stale flags. At a higher level, the input to the tool is the name of the flag and the expected behavior, after specifying a list of APIs related to flags in a properties file. Piranha will use these inputs to automatically refactor the code according to the expected behavior.
PolyglotPiranha (as of May 2022) is a common refactoring tool to support multiple languages and feature flag APIs.
For legacy language-specific implementations please check following [tag](https://github.com/uber/piranha/releases/tag/last-version-having-legacy-piranha).
A few additional links on Piranha:
- Research paper published at [PLDI 2024](https://dl.acm.org/doi/10.1145/3656429) on PolyglotPiranha.
- A technical [report](report.pdf) detailing our experiences with using Piranha at Uber.
- A [blogpost](https://eng.uber.com/piranha/) presenting more information on Piranha.
- 6 minute [video](https://www.youtube.com/watch?v=V5XirDs6LX8&feature=emb_logo) overview of Piranha.
## Support
If you have any questions on how to use Piranha or find any bugs, please [open a GitHub issue](https://github.com/uber/piranha/issues).
## License
Piranha is licensed under the Apache 2.0 license. See the LICENSE file for more information.
## Note
This is not an official Uber product, and provided as is.
Raw data
{
"_id": null,
"home_page": null,
"name": "polyglot-piranha",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "refactoring, code update, structural find-replace, structural search and replace, structural search",
"author": "Uber Technologies Inc.",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/fe/9f/93c519a2cad1021bedb6aa4bed1d2eae925417afc78e10975c0e56a90018/polyglot_piranha-0.3.29.tar.gz",
"platform": null,
"description": "# PolyglotPiranha\n\nPolyglotPiranha is a lightweight code transformation toolset for automating large scale changes. At Uber, it is mostly used to clean up stale feature flags.\n\nWe only support languages that are used at Uber. We likely won't be able to add new languages in this repo. There are a number of forks (see https://github.com/uber/piranha/forks for a full list) that may provide additional features.\n\n\n## Installation\n\nTo install Polyglot Piranha, you can use it as a Python library or as a command-line tool.\n\n### Python API\n\nTo install the Python API, run the following command:\n\n```bash\npip install polyglot-piranha\n```\n\n### Command-line Interface\n\nTo install the command-line interface, follow these steps:\n\n1. Install [Rust](https://www.rust-lang.org/tools/install)\n2. Clone the repository: `git clone https://github.com/uber/piranha.git`\n3. Navigate to the cloned directory: `cd piranha`\n4. Build the project: `cargo build --release` (or `cargo build --release --no-default-features` for macOS)\n5. The binary will be generated under `target/release`\n\n## Example Usage\n\n```python\nfrom polyglot_piranha import execute_piranha, PiranhaArguments, Rule, RuleGraph, OutgoingEdges\n\n# Original code snippet\ncode = \"\"\"\nif (obj.isLocEnabled() || x > 0) {\n // do something\n} else {\n // do something else!\n}\n\"\"\"\n\n# Define the rule to replace the method call\nr1 = Rule(\n name=\"replace_method\",\n query=\"cs :[x].isLocEnabled()\", # cs indicates we are using concrete syntax\n replace_node=\"*\",\n replace=\"true\",\n is_seed_rule=True\n)\n\n# Define the edges for the rule graph. \n# In this case, boolean_literal_cleanup is already defined for java [see src/cleanup_rules]\nedge = OutgoingEdges(\"replace_method\", to=[\"boolean_literal_cleanup\"], scope=\"parent\")\n\n# Create Piranha arguments\npiranha_arguments = PiranhaArguments(\n code_snippet=code,\n language=\"java\",\n rule_graph=RuleGraph(rules=[r1], edges=[edge])\n)\n\n# Execute Piranha and print the transformed code\npiranha_summary = execute_piranha(piranha_arguments)\nprint(piranha_summary[0].content)\n```\n\n\n## Documentation\n\nFor more examples and explanations of the toolset, please check our demos and extended [POLYGLOT_README.md](POLYGLOT_README.md) file.\n\n\n## Feature Flags\n\n\nFeature flags are commonly used to enable gradual rollout or experiment with new features. In a few cases, even after the purpose of the flag is accomplished, the code pertaining to the feature flag is not removed. We refer to such flags as stale flags. The presence of code pertaining to stale flags can have the following drawbacks: \n- Unnecessary code clutter increases the overall complexity w.r.t maintenance resulting in reduced developer productivity \n- The flags can interfere with other experimental flags (e.g., due to nesting under a flag that is always false)\n- Presence of unused code in the source as well as the binary \n- Stale flags can also cause bugs \n\nPolyglotPiranha is a tool that can automatically refactor code related to stale flags. At a higher level, the input to the tool is the name of the flag and the expected behavior, after specifying a list of APIs related to flags in a properties file. Piranha will use these inputs to automatically refactor the code according to the expected behavior.\n\nPolyglotPiranha (as of May 2022) is a common refactoring tool to support multiple languages and feature flag APIs.\nFor legacy language-specific implementations please check following [tag](https://github.com/uber/piranha/releases/tag/last-version-having-legacy-piranha).\n\n\n\nA few additional links on Piranha: \n\n- Research paper published at [PLDI 2024](https://dl.acm.org/doi/10.1145/3656429) on PolyglotPiranha.\n- A technical [report](report.pdf) detailing our experiences with using Piranha at Uber.\n- A [blogpost](https://eng.uber.com/piranha/) presenting more information on Piranha. \n- 6 minute [video](https://www.youtube.com/watch?v=V5XirDs6LX8&feature=emb_logo) overview of Piranha.\n\n## Support\n\nIf you have any questions on how to use Piranha or find any bugs, please [open a GitHub issue](https://github.com/uber/piranha/issues).\n\n## License\nPiranha is licensed under the Apache 2.0 license. See the LICENSE file for more information.\n\n## Note\n\nThis is not an official Uber product, and provided as is.\n\n\n\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Polyglot Piranha is a library for performing structural find and replace with deep cleanup.",
"version": "0.3.29",
"project_urls": {
"documentation": "https://github.com/uber/piranha",
"homepage": "https://github.com/uber/piranha",
"repository": "https://github.com/uber/piranha"
},
"split_keywords": [
"refactoring",
" code update",
" structural find-replace",
" structural search and replace",
" structural search"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "5890fb3591eaff94082959b28ec51dc23d0c4bccdca03680b035299b3c1834ae",
"md5": "0715a900e4b1e2e6847a03d266e8baf7",
"sha256": "e4a7ecf86a761c49d60e48e6a14a6a018a96a6f60826e22d4508c2f7b04feff0"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"has_sig": false,
"md5_digest": "0715a900e4b1e2e6847a03d266e8baf7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 7434960,
"upload_time": "2025-02-04T17:54:41",
"upload_time_iso_8601": "2025-02-04T17:54:41.751443Z",
"url": "https://files.pythonhosted.org/packages/58/90/fb3591eaff94082959b28ec51dc23d0c4bccdca03680b035299b3c1834ae/polyglot_piranha-0.3.29-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00970e32013ae0527ca94a1e40a79421407ca24db0cc4b552b66d424e3ae8389",
"md5": "377539c21cb8fcfbe7e547db762824d6",
"sha256": "6cf2d3838edf601772d4e06d302f59d34234cbdecf60a82c883bd11911c1a7bd"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "377539c21cb8fcfbe7e547db762824d6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 16784028,
"upload_time": "2025-02-04T17:54:40",
"upload_time_iso_8601": "2025-02-04T17:54:40.028783Z",
"url": "https://files.pythonhosted.org/packages/00/97/0e32013ae0527ca94a1e40a79421407ca24db0cc4b552b66d424e3ae8389/polyglot_piranha-0.3.29-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6654f86672cb0eb400d8e4650654aca681d17438464ebdf35567de73cb046bd2",
"md5": "ac781266f6abb50379fca5482dc6bf9d",
"sha256": "9b395411e76081b3f80d087740fe54d087428284231df99388a23d3b48b5b799"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp310-cp310-manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "ac781266f6abb50379fca5482dc6bf9d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3831880,
"upload_time": "2025-02-04T17:54:13",
"upload_time_iso_8601": "2025-02-04T17:54:13.037567Z",
"url": "https://files.pythonhosted.org/packages/66/54/f86672cb0eb400d8e4650654aca681d17438464ebdf35567de73cb046bd2/polyglot_piranha-0.3.29-cp310-cp310-manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee2bb9f8f0be8d7c649963420c051f4ee40c80c7cb63bb53e2ccb3c39da58f52",
"md5": "a42ba23f32a565fbd2f766c5ab3dfb77",
"sha256": "496261f4dc9ed0305849e049e542dbdde349fb8ab329c3d63b1dd185015f479f"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"has_sig": false,
"md5_digest": "a42ba23f32a565fbd2f766c5ab3dfb77",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 7435630,
"upload_time": "2025-02-04T17:54:42",
"upload_time_iso_8601": "2025-02-04T17:54:42.905359Z",
"url": "https://files.pythonhosted.org/packages/ee/2b/b9f8f0be8d7c649963420c051f4ee40c80c7cb63bb53e2ccb3c39da58f52/polyglot_piranha-0.3.29-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7dbe837e252d7728bf65fb839521f974c5f15910c90f93d98aa5db8580497a07",
"md5": "a6dff985b9bf20b40050431a65734ce6",
"sha256": "698757b24233c874a9dfafcb0af719394441c3f8bfa31700713aec7b9a9e7544"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "a6dff985b9bf20b40050431a65734ce6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 16788241,
"upload_time": "2025-02-04T17:54:30",
"upload_time_iso_8601": "2025-02-04T17:54:30.300632Z",
"url": "https://files.pythonhosted.org/packages/7d/be/837e252d7728bf65fb839521f974c5f15910c90f93d98aa5db8580497a07/polyglot_piranha-0.3.29-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cf5e84fab47aafab02a5a7170315b1f36ab0bf3b6bf28f0faa4116178dc4e957",
"md5": "a8e936bcd5e212515b5199d385ecdef7",
"sha256": "a05592ae6471ad0b6764255e41adda91f85c6c92fb98850cfeee7541c6cc2f07"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp311-cp311-manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "a8e936bcd5e212515b5199d385ecdef7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3832218,
"upload_time": "2025-02-04T17:54:34",
"upload_time_iso_8601": "2025-02-04T17:54:34.029991Z",
"url": "https://files.pythonhosted.org/packages/cf/5e/84fab47aafab02a5a7170315b1f36ab0bf3b6bf28f0faa4116178dc4e957/polyglot_piranha-0.3.29-cp311-cp311-manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6cdf2e494945d37339de601692e5736d4bff8f470e10e4132007746c121b70f7",
"md5": "6951a88879c7d8804d634db1044b322e",
"sha256": "e94afa65fc213a36ead99967293efe7450462b15a01bdeccde24de2f4d4507a6"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"has_sig": false,
"md5_digest": "6951a88879c7d8804d634db1044b322e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 7429101,
"upload_time": "2025-02-04T17:54:24",
"upload_time_iso_8601": "2025-02-04T17:54:24.521960Z",
"url": "https://files.pythonhosted.org/packages/6c/df/2e494945d37339de601692e5736d4bff8f470e10e4132007746c121b70f7/polyglot_piranha-0.3.29-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53d1ec705236a178a94d3178eaa34e174a246213d0c6153ae59ce7a3046419d3",
"md5": "6ef8432bfd0dbb58fee3918ef1088ea6",
"sha256": "5109265bf36b43182e00020550dd427b42610262ce72028586d53572e9ae1d26"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "6ef8432bfd0dbb58fee3918ef1088ea6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 16769191,
"upload_time": "2025-02-04T17:54:29",
"upload_time_iso_8601": "2025-02-04T17:54:29.951240Z",
"url": "https://files.pythonhosted.org/packages/53/d1/ec705236a178a94d3178eaa34e174a246213d0c6153ae59ce7a3046419d3/polyglot_piranha-0.3.29-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4e725e0398599362b0217b31f1f2fe4c6f80dfc01bf7978454072ef1ceb2a7d1",
"md5": "ad3e09fcb174af607eb68a96a25612c9",
"sha256": "29c58fca7e8ce9d57dab61f25c7199a55ccebed141b695c834ab681bfdfb55f0"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp312-cp312-manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "ad3e09fcb174af607eb68a96a25612c9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3832610,
"upload_time": "2025-02-04T17:54:15",
"upload_time_iso_8601": "2025-02-04T17:54:15.027304Z",
"url": "https://files.pythonhosted.org/packages/4e/72/5e0398599362b0217b31f1f2fe4c6f80dfc01bf7978454072ef1ceb2a7d1/polyglot_piranha-0.3.29-cp312-cp312-manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "521f8b57856720e7d090f825742390d24c356bd8820fd9018c490fc5b1ef8c79",
"md5": "8c8b80d2cd5b28d2ecae1df0a3d69790",
"sha256": "c1c1c5a24e5a17f403e6220afe2ae0fe9c0d4681ed0ff46cd6253ec0f88a8b1f"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"has_sig": false,
"md5_digest": "8c8b80d2cd5b28d2ecae1df0a3d69790",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 7435835,
"upload_time": "2025-02-04T17:55:00",
"upload_time_iso_8601": "2025-02-04T17:55:00.071869Z",
"url": "https://files.pythonhosted.org/packages/52/1f/8b57856720e7d090f825742390d24c356bd8820fd9018c490fc5b1ef8c79/polyglot_piranha-0.3.29-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cea0b74c5eec4c91f2c9018379136bb4748204164469efcb7b7214a70ce98374",
"md5": "0008fa3568be33092cdf6afff911e1f2",
"sha256": "3aa64ee24cf43e2732b9d01df20be80f33f252dcda2759af93a2e6efcdc7d282"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp38-cp38-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0008fa3568be33092cdf6afff911e1f2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 16779391,
"upload_time": "2025-02-04T17:54:35",
"upload_time_iso_8601": "2025-02-04T17:54:35.332822Z",
"url": "https://files.pythonhosted.org/packages/ce/a0/b74c5eec4c91f2c9018379136bb4748204164469efcb7b7214a70ce98374/polyglot_piranha-0.3.29-cp38-cp38-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8d9396a55cd7cfb42a86931722a07790e581ea898cb69ff4d06a4ab00e0f1b91",
"md5": "52b482fcd410fbe834baf82b2f51c710",
"sha256": "c6813b3be1ea5f46d1d379c9b404a2351ebb1030eca940390d0fd96a1c599d28"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp38-cp38-manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "52b482fcd410fbe834baf82b2f51c710",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3832126,
"upload_time": "2025-02-04T17:54:23",
"upload_time_iso_8601": "2025-02-04T17:54:23.538617Z",
"url": "https://files.pythonhosted.org/packages/8d/93/96a55cd7cfb42a86931722a07790e581ea898cb69ff4d06a4ab00e0f1b91/polyglot_piranha-0.3.29-cp38-cp38-manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8d069ab36fbb08a54a61c935cb96a206e5d15b126dac2bee8c136aeeb7d00963",
"md5": "154c44d9669ba53afc8d2a5b9452667e",
"sha256": "13504ea1226fad2e8cee255e983d219af6fff5375f2f34cfd41be9e4d3c75e60"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"has_sig": false,
"md5_digest": "154c44d9669ba53afc8d2a5b9452667e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 7435828,
"upload_time": "2025-02-04T17:54:46",
"upload_time_iso_8601": "2025-02-04T17:54:46.920382Z",
"url": "https://files.pythonhosted.org/packages/8d/06/9ab36fbb08a54a61c935cb96a206e5d15b126dac2bee8c136aeeb7d00963/polyglot_piranha-0.3.29-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff841a3c42b84b053f7db0eb7c5b3b4a1fd1519b51c75e05d9a795f3534dc0ab",
"md5": "6c9c474e2a890f82c97a66aa7cbdb493",
"sha256": "3185f6eef2970d2b4421967345380f89feeb03c9c9e864a29ff05b48982f4784"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "6c9c474e2a890f82c97a66aa7cbdb493",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 16783099,
"upload_time": "2025-02-04T17:54:25",
"upload_time_iso_8601": "2025-02-04T17:54:25.990251Z",
"url": "https://files.pythonhosted.org/packages/ff/84/1a3c42b84b053f7db0eb7c5b3b4a1fd1519b51c75e05d9a795f3534dc0ab/polyglot_piranha-0.3.29-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "15564ba725bb09f33665a115d8eaec761f087a3ecd8f9bdd585fb80c2817f74a",
"md5": "8c6878d897da252e754670e986e935bf",
"sha256": "8f818fbcdd591a9cbfc86fb7e138c4de484cd791263fdb61f4059bd6ef726636"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29-cp39-cp39-manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "8c6878d897da252e754670e986e935bf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3831688,
"upload_time": "2025-02-04T17:54:17",
"upload_time_iso_8601": "2025-02-04T17:54:17.898620Z",
"url": "https://files.pythonhosted.org/packages/15/56/4ba725bb09f33665a115d8eaec761f087a3ecd8f9bdd585fb80c2817f74a/polyglot_piranha-0.3.29-cp39-cp39-manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe9f93c519a2cad1021bedb6aa4bed1d2eae925417afc78e10975c0e56a90018",
"md5": "c45cd8b28c95938741af18ebb038ea4d",
"sha256": "b32b3430fb0f4d47f3a20fa095b66880b0ac1aa6e13a30f6f4322b4536ce5287"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.29.tar.gz",
"has_sig": false,
"md5_digest": "c45cd8b28c95938741af18ebb038ea4d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 94206,
"upload_time": "2025-02-04T17:54:29",
"upload_time_iso_8601": "2025-02-04T17:54:29.818916Z",
"url": "https://files.pythonhosted.org/packages/fe/9f/93c519a2cad1021bedb6aa4bed1d2eae925417afc78e10975c0e56a90018/polyglot_piranha-0.3.29.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-04 17:54:29",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "uber",
"github_project": "piranha",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "polyglot-piranha"
}