# 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.
## 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).
## Contributors
We'd love for you to contribute to Piranha! Please note that once
you create a pull request, you will be asked to sign our [Uber Contributor License Agreement](https://cla-assistant.io/uber/piranha).
We are also looking for contributions to extend Piranha to other languages (C++, C#, Kotlin).
## License
Piranha is licensed under the Apache 2.0 license. See the LICENSE file for more information.
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/ec/df/7321c20693aabef34b10bbc197ccd6e723cf82ec99afbd16780b4b2b29c6/polyglot_piranha-0.3.27.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\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## Contributors\n\nWe'd love for you to contribute to Piranha! Please note that once\nyou create a pull request, you will be asked to sign our [Uber Contributor License Agreement](https://cla-assistant.io/uber/piranha).\n\nWe are also looking for contributions to extend Piranha to other languages (C++, C#, Kotlin). \n\n## License\nPiranha is licensed under the Apache 2.0 license. See the LICENSE file for more information.\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.27",
"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": "",
"digests": {
"blake2b_256": "9dcb04698b81e9b8ca1ad74dd1273eaa4c9751ce12bf671d5cba3bc722bf1fa6",
"md5": "6c4d9bef29add3d9b30160dc9ee553d5",
"sha256": "841765738177f59aaa72fe911bf1cad3465e14c852e33b61f82bf0c69d55745c"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"has_sig": false,
"md5_digest": "6c4d9bef29add3d9b30160dc9ee553d5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 7295169,
"upload_time": "2024-09-03T20:09:10",
"upload_time_iso_8601": "2024-09-03T20:09:10.676788Z",
"url": "https://files.pythonhosted.org/packages/9d/cb/04698b81e9b8ca1ad74dd1273eaa4c9751ce12bf671d5cba3bc722bf1fa6/polyglot_piranha-0.3.27-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc78aa8b5b32615c29ffd15fd04d660354b67275371f0c90df6476ffc44a77a2",
"md5": "52689e2bf3c77fa19fd19fd23fcf29e7",
"sha256": "cfdee99494c03b8612a8d9d314180b846f36ff73fcfd8ef7c12b9a87f1d2a461"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "52689e2bf3c77fa19fd19fd23fcf29e7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 16930134,
"upload_time": "2024-09-03T20:08:25",
"upload_time_iso_8601": "2024-09-03T20:08:25.966930Z",
"url": "https://files.pythonhosted.org/packages/bc/78/aa8b5b32615c29ffd15fd04d660354b67275371f0c90df6476ffc44a77a2/polyglot_piranha-0.3.27-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f750a2da262feb925ed334ca211f47777b40ccee308b20ca6445393c6d4a321",
"md5": "906526a037ff1b5eb5f84c2cb7c982bb",
"sha256": "5584fc920ff0d0f2672b89b5e6b974ae096ab81b9db69237dc0d0fde87413251"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp310-cp310-manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "906526a037ff1b5eb5f84c2cb7c982bb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3813918,
"upload_time": "2024-09-03T20:08:05",
"upload_time_iso_8601": "2024-09-03T20:08:05.719219Z",
"url": "https://files.pythonhosted.org/packages/5f/75/0a2da262feb925ed334ca211f47777b40ccee308b20ca6445393c6d4a321/polyglot_piranha-0.3.27-cp310-cp310-manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fda30e4a4e95cf45c7b3d7815ac84c09ef793062e91d8a856b75ba45be8120c7",
"md5": "77a2aa56ce6113f31c58c47789aea6fa",
"sha256": "70e216673083ce899b1c761acef134b4ee275a5c30b4cc2d21fea512bd9a6704"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"has_sig": false,
"md5_digest": "77a2aa56ce6113f31c58c47789aea6fa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 7293558,
"upload_time": "2024-09-03T20:07:57",
"upload_time_iso_8601": "2024-09-03T20:07:57.192726Z",
"url": "https://files.pythonhosted.org/packages/fd/a3/0e4a4e95cf45c7b3d7815ac84c09ef793062e91d8a856b75ba45be8120c7/polyglot_piranha-0.3.27-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad7bc4d9b99b40e2faa73ac9d73a51e8553d8fdee1a0b4febc11d2693988abfb",
"md5": "368084edb27e9a6f4afa7287e7068e78",
"sha256": "870d6e47c48aeb53fa1d9b961146d02fbf86021fa52fedb4625d7b2df78bae8e"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "368084edb27e9a6f4afa7287e7068e78",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 16929441,
"upload_time": "2024-09-03T20:08:15",
"upload_time_iso_8601": "2024-09-03T20:08:15.653142Z",
"url": "https://files.pythonhosted.org/packages/ad/7b/c4d9b99b40e2faa73ac9d73a51e8553d8fdee1a0b4febc11d2693988abfb/polyglot_piranha-0.3.27-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bcdc88ef43f0bd9bcdced5fb3a63d1f6a4bebd2eb01aa49fedb6accaa177aec2",
"md5": "2d4f7180c9b3764c31768ac27555150e",
"sha256": "5a7121c415410a8e957c6c4a0eafe9d7b1f7ecb305ef54ed26fc92146027b69f"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp311-cp311-manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "2d4f7180c9b3764c31768ac27555150e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3814111,
"upload_time": "2024-09-03T20:08:00",
"upload_time_iso_8601": "2024-09-03T20:08:00.562003Z",
"url": "https://files.pythonhosted.org/packages/bc/dc/88ef43f0bd9bcdced5fb3a63d1f6a4bebd2eb01aa49fedb6accaa177aec2/polyglot_piranha-0.3.27-cp311-cp311-manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78e96fdc403161f75e22b11e79b3d305b24010b8717da63d1c232b29ecfac123",
"md5": "5f71f10d94911074ef114e2416a26458",
"sha256": "3edfb7d9ee22246b9fa8075fdcf706f3f18648f71b97f7a1b4b6c007fdd58ce8"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"has_sig": false,
"md5_digest": "5f71f10d94911074ef114e2416a26458",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 7292772,
"upload_time": "2024-09-03T20:08:30",
"upload_time_iso_8601": "2024-09-03T20:08:30.705596Z",
"url": "https://files.pythonhosted.org/packages/78/e9/6fdc403161f75e22b11e79b3d305b24010b8717da63d1c232b29ecfac123/polyglot_piranha-0.3.27-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10135b591c97c0c1ca3f6b6054721263af27bada6d3a471dfbae5d6df36f4850",
"md5": "92a0f4f901485fd899519306df60691b",
"sha256": "8a9601caedc41445a331e2179d088621e98e3c6e54a838eed60b1aacdeb2c673"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "92a0f4f901485fd899519306df60691b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 16910126,
"upload_time": "2024-09-03T20:08:17",
"upload_time_iso_8601": "2024-09-03T20:08:17.927902Z",
"url": "https://files.pythonhosted.org/packages/10/13/5b591c97c0c1ca3f6b6054721263af27bada6d3a471dfbae5d6df36f4850/polyglot_piranha-0.3.27-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "716cb8968c6b186e5ea549e344711e30849d498ce3eb648584f097f0e7ed0b77",
"md5": "ee0aec2cce4d8d36714edb8929120291",
"sha256": "af795535f22d5a13b4968726d642a2118a5f18d73b08cefae4669fa8b5377b35"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp312-cp312-manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "ee0aec2cce4d8d36714edb8929120291",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3812338,
"upload_time": "2024-09-03T20:07:58",
"upload_time_iso_8601": "2024-09-03T20:07:58.576165Z",
"url": "https://files.pythonhosted.org/packages/71/6c/b8968c6b186e5ea549e344711e30849d498ce3eb648584f097f0e7ed0b77/polyglot_piranha-0.3.27-cp312-cp312-manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "06778b8467e076a2ea0dac36fbae0ee15e465c476d827ac4fbac238c4db151e6",
"md5": "165a0937266d4002b07dfc1711fefa44",
"sha256": "5fe1afa48594f46a6776c186cd03c87c67da0abdd22ea3e144c8ddc8a5058594"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"has_sig": false,
"md5_digest": "165a0937266d4002b07dfc1711fefa44",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 7293876,
"upload_time": "2024-09-03T20:09:23",
"upload_time_iso_8601": "2024-09-03T20:09:23.804035Z",
"url": "https://files.pythonhosted.org/packages/06/77/8b8467e076a2ea0dac36fbae0ee15e465c476d827ac4fbac238c4db151e6/polyglot_piranha-0.3.27-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68fac2bc2cb2a018b7104005be784c822aa50c63561c84454b063b4ffdbd1e21",
"md5": "9bf56db7e03cc0dbbd25f9651df29be4",
"sha256": "40d8028abfb52a6c64f58420384d2a90265838951f0dca2b01d5ae13be26cbf0"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp38-cp38-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "9bf56db7e03cc0dbbd25f9651df29be4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 16905151,
"upload_time": "2024-09-03T20:08:19",
"upload_time_iso_8601": "2024-09-03T20:08:19.658189Z",
"url": "https://files.pythonhosted.org/packages/68/fa/c2bc2cb2a018b7104005be784c822aa50c63561c84454b063b4ffdbd1e21/polyglot_piranha-0.3.27-cp38-cp38-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b148297e2591a1ba773d1b6b1e278a780ec1ec5295d714d08ffe967f520716d",
"md5": "015e4985e4795a3dc25200de1a028aed",
"sha256": "1f30b3285aaec0c14b598031a2c60e7f13c932990128d8c6c98659731823aa1a"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp38-cp38-manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "015e4985e4795a3dc25200de1a028aed",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3814294,
"upload_time": "2024-09-03T20:07:58",
"upload_time_iso_8601": "2024-09-03T20:07:58.520811Z",
"url": "https://files.pythonhosted.org/packages/3b/14/8297e2591a1ba773d1b6b1e278a780ec1ec5295d714d08ffe967f520716d/polyglot_piranha-0.3.27-cp38-cp38-manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "839f4d157b786324b22be2b6b579ca116d9015294be8fcfa1e42353d0991128a",
"md5": "4bf520c217ad97128ec4b5036f31d0f2",
"sha256": "00fb34ae9d57890997da24870846f9a58269e429701b8fc3e8f17931969ee934"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"has_sig": false,
"md5_digest": "4bf520c217ad97128ec4b5036f31d0f2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 7295127,
"upload_time": "2024-09-03T20:08:07",
"upload_time_iso_8601": "2024-09-03T20:08:07.516601Z",
"url": "https://files.pythonhosted.org/packages/83/9f/4d157b786324b22be2b6b579ca116d9015294be8fcfa1e42353d0991128a/polyglot_piranha-0.3.27-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c17342241036b815c1d3d5b44b95bb989e30954c628750b4c069983fd546054a",
"md5": "cac27529a21b5c6bfac5ce8db6d54bf3",
"sha256": "c2f0efc28e4d00507ad514117ef94b2b1b69e90fc22c41e234b3849a2dc07acb"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "cac27529a21b5c6bfac5ce8db6d54bf3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 16926712,
"upload_time": "2024-09-03T20:08:14",
"upload_time_iso_8601": "2024-09-03T20:08:14.887879Z",
"url": "https://files.pythonhosted.org/packages/c1/73/42241036b815c1d3d5b44b95bb989e30954c628750b4c069983fd546054a/polyglot_piranha-0.3.27-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "774c91b9b6f70680d7ac7cf58b296a9e0dc426503e7fdd5e3cd28840a8aa5d1e",
"md5": "67c0dc3b09daf43dbb7b1a21707b7652",
"sha256": "ad66eac24382bdbf7ee64a54509e8c5e4a233a12c07203043daa511a6f2a3ec2"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27-cp39-cp39-manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "67c0dc3b09daf43dbb7b1a21707b7652",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3814137,
"upload_time": "2024-09-03T20:08:01",
"upload_time_iso_8601": "2024-09-03T20:08:01.634951Z",
"url": "https://files.pythonhosted.org/packages/77/4c/91b9b6f70680d7ac7cf58b296a9e0dc426503e7fdd5e3cd28840a8aa5d1e/polyglot_piranha-0.3.27-cp39-cp39-manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ecdf7321c20693aabef34b10bbc197ccd6e723cf82ec99afbd16780b4b2b29c6",
"md5": "883da2e93ba837fefd0160915316ea4b",
"sha256": "293424d5257842c8edaa991a35d7af86b5b21afe9f261fc1d232da6e4dc690c8"
},
"downloads": -1,
"filename": "polyglot_piranha-0.3.27.tar.gz",
"has_sig": false,
"md5_digest": "883da2e93ba837fefd0160915316ea4b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 94198,
"upload_time": "2024-09-03T20:08:16",
"upload_time_iso_8601": "2024-09-03T20:08:16.980424Z",
"url": "https://files.pythonhosted.org/packages/ec/df/7321c20693aabef34b10bbc197ccd6e723cf82ec99afbd16780b4b2b29c6/polyglot_piranha-0.3.27.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-03 20:08:16",
"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"
}