complexipy


Namecomplexipy JSON
Version 0.3.3 PyPI version JSON
download
home_pagehttps://github.com/rohaquinlop/complexipy
SummaryAn extremely fast Python library to calculate the cognitive complexity of Python files, written in Rust.
upload_time2024-04-27 21:42:36
maintainerNone
docs_urlNone
authorRobin Quintero <rohaquinlop301@gmail.com>
requires_python>=3.8
licenseMIT
keywords cognitive complexity cognitive complexity rust fast
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # complexipy

<p align="center">
    <a href="https://rohaquinlop.github.io/complexipy/"><img src="https://raw.githubusercontent.com/rohaquinlop/complexipy/main/docs/img/logo-vector.svg" alt="complexipy"></a>
</p>

<p align="center">
    <em>An extremely fast Python library to calculate the cognitive complexity of Python files, written in Rust.</em>
</p>

<p align="center">
    <a href="https://sonarcloud.io/summary/new_code?id=rohaquinlop_complexipy" target="_blank">
        <img src="https://sonarcloud.io/api/project_badges/measure?project=rohaquinlop_complexipy&metric=alert_status" alt="Quality Gate">
    </a>
    <a href="https://pypi.org/project/complexipy" target="_blank">
    <img src="https://img.shields.io/pypi/v/complexipy?color=%2334D058&label=pypi%20package" alt="Package version">
</a>
</p>


Cognitive Complexity breaks from using mathematical models to assess software
maintainability by combining Cyclomatic Complexity precedents with human
assessment. It yields method complexity scores that align well with how
developers perceive maintainability. Read the white paper here: [Cognitive Complexity, a new way of measuring understandability](https://www.sonarsource.com/resources/cognitive-complexity/)


---

**Documentation**: <a href="https://rohaquinlop.github.io/complexipy/" target="_blank">https://rohaquinlop.github.io/complexipy/</a>

**Source Code**: <a href="https://github.com/rohaquinlop/complexipy" target="_blank">https://github.com/rohaquinlop/complexipy</a>

**PyPI**: <a href="https://pypi.org/project/complexipy/" target="_blank">https://pypi.org/project/complexipy/</a>

---


## Contributors

<p align="center">
    <a href = "https://github.com/rohaquinlop/complexipy/graphs/contributors">
    <img src = "https://contrib.rocks/image?repo=rohaquinlop/complexipy"/>
    </a>
</p>

Made with [contributors-img](https://contrib.rocks)

## Requirements

- Python >= 3.8
- You also need to install `git` in your computer if you want to analyze a git repository.

## Installation

```bash
pip install complexipy
```

## Usage

To run **complexipy** you can use the following command:

```shell
complexipy .                            # Use complexipy to analyze the current directory and any subdirectories
complexipy path/to/directory            # Use complexipy to analyze a specific directory and any subdirectories
complexipy git_repository_url           # Use complexipy to analyze a git repository
complexipy path/to/file.py              # Use complexipy to analyze a specific file
complexipy path/to/file.py -c 20        # Use the -c option to set the maximum congnitive complexity, default is 15
complexipy path/to/directory -c 0       # Set the maximum cognitive complexity to 0 to disable the exit with error
complexipy path/to/directory -o         # Use the -o option to output the results to a CSV file, default is False
complexipy path/to/directory -d low     # Use the -d option to set detail level, default is "normal". If set to "low" will show only files with complexity greater than the maximum complexity
complexipy path/to/directory -l file    # Use the -l option to set the level of measurement, default is "function". If set to "file" will measure the complexity of the file and will validate the maximum complexity according to the file complexity.
complexipy path/to/directory -q         # Use the -q option to disable the output to the console, default is False.
complexipy path/to/directory -s desc    # Use the -s option to set the sort order, default is "asc". If set to "desc" will sort the results in descending order. If set to "asc" will sort the results in ascending order. If set to "name" will sort the results by name.
```

### Options

- `-c` or `--max-complexity`: Set the maximum cognitive complexity, default is 15.
  If the cognitive complexity of a file is greater than the maximum cognitive,
  then the return code will be 1 and exit with error, otherwise it will be 0.
  If set to 0, the exit with error will be disabled.
- `-o` or `--output`: Output the results to a CSV file, default is False. The
  filename will be `complexipy.csv` and will be saved in the invocation directory.
- `-d` or `--details`: Set the detail level, default is "normal". If set to "low"
  will show only files or functions with complexity greater than the maximum
  complexity.
- `-l` or `--level` Set the level of measurement, default is "function". If set
  to "file" will measure the complexity of the file and will validate the maximum
  complexity according to the file complexity. If set to "function" will measure
  the complexity of the functions and will validate the maximum complexity
  according to the function complexity. This option is useful if you want to set
  a maximum complexity according for each file or for each function in the file
  (or files).
- `-q` or `--quiet`: Disable the output to the console, default is False.
- `-s` or `--sort`: Set the sort order, default is "asc". If set to "desc" will
  sort the results in descending order. If set to "asc" will sort the results in
  ascending order. If set to "name" will sort the results by name. This option will
  affect the output to the console and the output to the CSV file.

If the cognitive complexity of a file or a function is greater than the maximum
cognitive cognitive complexity, then the return code will be 1 and exit with
error, otherwise it will be 0.

## Example

### Analyzing a file

For example, given the following file:

```python
def a_decorator(a, b):
    def inner(func):
        return func
    return inner

def b_decorator(a, b):
    def inner(func):
        if func:
            return None
        return func
    return inner
```

The cognitive complexity of the file is 1, and the output of the command
`complexipy path/to/file.py` will be:

```txt
───────────────────────────── 🐙 complexipy 0.3.3 ──────────────────────────────
                                    Summary
      ┏━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
      ┃ Path              ┃ File              ┃ Function    ┃ Complexity ┃
      ┡━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
      │ test_decorator.py │ test_decorator.py │ a_decorator │ 0          │
      ├───────────────────┼───────────────────┼─────────────┼────────────┤
      │ test_decorator.py │ test_decorator.py │ b_decorator │ 1          │
      └───────────────────┴───────────────────┴─────────────┴────────────┘
🧠 Total Cognitive Complexity in ./tests/src/test_decorator.py: 1
1 file analyzed in 0.0032 seconds
────────────────────────── 🎉 Analysis completed! 🎉 ───────────────────────────
```

#### Explaining the results of the analysis

```python
def a_decorator(a, b): # 0
    def inner(func): # 0
        return func # 0
    return inner # 0

def b_decorator(a, b): # 0
    def inner(func): # 0
        if func: # 1 (nested = 0), total 1
            return None # 0
        return func # 0
    return inner # 0
```

The cognitive complexity of the file is 1, and the cognitive complexity of the
function `b_decorator` is 1. This example is simple, but it shows how
**complexipy** calculates the cognitive complexity according to the specifications
of the paper "Cognitive Complexity a new way to measure understandability",
considering the decorators and the if statement.

#### Output to a CSV file

If you want to output the results to a CSV file, you can use the `-o` option,
this is really useful if you want to integrate **complexipy** with other tools,
for example, a CI/CD pipeline. You will get the output in the console and will
create a CSV file with the results of the analysis.

The filename will be `complexipy.csv` and will be saved in the current directory.

```bash
$ complexipy path/to/file.py -o
```

The output will be:

```csv
Path,File Name,Function Name,Cognitive Complexity
test_decorator.py,test_decorator.py,a_decorator,0
test_decorator.py,test_decorator.py,b_decorator,1
```

### Analyzing a directory

You can also analyze a directory, for example:

```bash
$ complexipy .
```

And **complexipy** will analyze all the files in the current directory and any
subdirectories.

### Analyzing a git repository

You can also analyze a git repository, for example:

```bash
$ complexipy https://github.com/rohaquinlop/complexipy
```

And to generate the output to a CSV file:

```bash
$ complexipy https://github.com/rohaquinlop/complexipy -o
```

## License

This project is licensed under the MIT License - see the [LICENSE](https://github.com/rohaquinlop/complexipy/blob/main/LICENSE) file
for details.

## Acknowledgments

- Thanks to G. Ann Campbell for publishing the paper "Cognitive Complexity a new
way to measure understandability".
- This project is inspired by the Sonar way to calculate the cognitive
complexity.

## References

- [Cognitive Complexity](https://www.sonarsource.com/resources/cognitive-complexity/)


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/rohaquinlop/complexipy",
    "name": "complexipy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "cognitive, complexity, cognitive complexity, rust, fast",
    "author": "Robin Quintero <rohaquinlop301@gmail.com>",
    "author_email": "Robin Quintero <rohaquinlop301@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/cd/cc/1c330c1b792cd345510bdcef4c39c765318e7f80fd7b0c11c540667b51aa/complexipy-0.3.3.tar.gz",
    "platform": null,
    "description": "# complexipy\n\n<p align=\"center\">\n    <a href=\"https://rohaquinlop.github.io/complexipy/\"><img src=\"https://raw.githubusercontent.com/rohaquinlop/complexipy/main/docs/img/logo-vector.svg\" alt=\"complexipy\"></a>\n</p>\n\n<p align=\"center\">\n    <em>An extremely fast Python library to calculate the cognitive complexity of Python files, written in Rust.</em>\n</p>\n\n<p align=\"center\">\n    <a href=\"https://sonarcloud.io/summary/new_code?id=rohaquinlop_complexipy\" target=\"_blank\">\n        <img src=\"https://sonarcloud.io/api/project_badges/measure?project=rohaquinlop_complexipy&metric=alert_status\" alt=\"Quality Gate\">\n    </a>\n    <a href=\"https://pypi.org/project/complexipy\" target=\"_blank\">\n    <img src=\"https://img.shields.io/pypi/v/complexipy?color=%2334D058&label=pypi%20package\" alt=\"Package version\">\n</a>\n</p>\n\n\nCognitive Complexity breaks from using mathematical models to assess software\nmaintainability by combining Cyclomatic Complexity precedents with human\nassessment. It yields method complexity scores that align well with how\ndevelopers perceive maintainability. Read the white paper here: [Cognitive Complexity, a new way of measuring understandability](https://www.sonarsource.com/resources/cognitive-complexity/)\n\n\n---\n\n**Documentation**: <a href=\"https://rohaquinlop.github.io/complexipy/\" target=\"_blank\">https://rohaquinlop.github.io/complexipy/</a>\n\n**Source Code**: <a href=\"https://github.com/rohaquinlop/complexipy\" target=\"_blank\">https://github.com/rohaquinlop/complexipy</a>\n\n**PyPI**: <a href=\"https://pypi.org/project/complexipy/\" target=\"_blank\">https://pypi.org/project/complexipy/</a>\n\n---\n\n\n## Contributors\n\n<p align=\"center\">\n    <a href = \"https://github.com/rohaquinlop/complexipy/graphs/contributors\">\n    <img src = \"https://contrib.rocks/image?repo=rohaquinlop/complexipy\"/>\n    </a>\n</p>\n\nMade with [contributors-img](https://contrib.rocks)\n\n## Requirements\n\n- Python >= 3.8\n- You also need to install `git` in your computer if you want to analyze a git repository.\n\n## Installation\n\n```bash\npip install complexipy\n```\n\n## Usage\n\nTo run **complexipy** you can use the following command:\n\n```shell\ncomplexipy .                            # Use complexipy to analyze the current directory and any subdirectories\ncomplexipy path/to/directory            # Use complexipy to analyze a specific directory and any subdirectories\ncomplexipy git_repository_url           # Use complexipy to analyze a git repository\ncomplexipy path/to/file.py              # Use complexipy to analyze a specific file\ncomplexipy path/to/file.py -c 20        # Use the -c option to set the maximum congnitive complexity, default is 15\ncomplexipy path/to/directory -c 0       # Set the maximum cognitive complexity to 0 to disable the exit with error\ncomplexipy path/to/directory -o         # Use the -o option to output the results to a CSV file, default is False\ncomplexipy path/to/directory -d low     # Use the -d option to set detail level, default is \"normal\". If set to \"low\" will show only files with complexity greater than the maximum complexity\ncomplexipy path/to/directory -l file    # Use the -l option to set the level of measurement, default is \"function\". If set to \"file\" will measure the complexity of the file and will validate the maximum complexity according to the file complexity.\ncomplexipy path/to/directory -q         # Use the -q option to disable the output to the console, default is False.\ncomplexipy path/to/directory -s desc    # Use the -s option to set the sort order, default is \"asc\". If set to \"desc\" will sort the results in descending order. If set to \"asc\" will sort the results in ascending order. If set to \"name\" will sort the results by name.\n```\n\n### Options\n\n- `-c` or `--max-complexity`: Set the maximum cognitive complexity, default is 15.\n  If the cognitive complexity of a file is greater than the maximum cognitive,\n  then the return code will be 1 and exit with error, otherwise it will be 0.\n  If set to 0, the exit with error will be disabled.\n- `-o` or `--output`: Output the results to a CSV file, default is False. The\n  filename will be `complexipy.csv` and will be saved in the invocation directory.\n- `-d` or `--details`: Set the detail level, default is \"normal\". If set to \"low\"\n  will show only files or functions with complexity greater than the maximum\n  complexity.\n- `-l` or `--level` Set the level of measurement, default is \"function\". If set\n  to \"file\" will measure the complexity of the file and will validate the maximum\n  complexity according to the file complexity. If set to \"function\" will measure\n  the complexity of the functions and will validate the maximum complexity\n  according to the function complexity. This option is useful if you want to set\n  a maximum complexity according for each file or for each function in the file\n  (or files).\n- `-q` or `--quiet`: Disable the output to the console, default is False.\n- `-s` or `--sort`: Set the sort order, default is \"asc\". If set to \"desc\" will\n  sort the results in descending order. If set to \"asc\" will sort the results in\n  ascending order. If set to \"name\" will sort the results by name. This option will\n  affect the output to the console and the output to the CSV file.\n\nIf the cognitive complexity of a file or a function is greater than the maximum\ncognitive cognitive complexity, then the return code will be 1 and exit with\nerror, otherwise it will be 0.\n\n## Example\n\n### Analyzing a file\n\nFor example, given the following file:\n\n```python\ndef a_decorator(a, b):\n    def inner(func):\n        return func\n    return inner\n\ndef b_decorator(a, b):\n    def inner(func):\n        if func:\n            return None\n        return func\n    return inner\n```\n\nThe cognitive complexity of the file is 1, and the output of the command\n`complexipy path/to/file.py` will be:\n\n```txt\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 \ud83d\udc19 complexipy 0.3.3 \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n                                    Summary\n      \u250f\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2533\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2513\n      \u2503 Path              \u2503 File              \u2503 Function    \u2503 Complexity \u2503\n      \u2521\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2547\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2529\n      \u2502 test_decorator.py \u2502 test_decorator.py \u2502 a_decorator \u2502 0          \u2502\n      \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n      \u2502 test_decorator.py \u2502 test_decorator.py \u2502 b_decorator \u2502 1          \u2502\n      \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n\ud83e\udde0 Total Cognitive Complexity in ./tests/src/test_decorator.py: 1\n1 file analyzed in 0.0032 seconds\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 \ud83c\udf89 Analysis completed! \ud83c\udf89 \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n```\n\n#### Explaining the results of the analysis\n\n```python\ndef a_decorator(a, b): # 0\n    def inner(func): # 0\n        return func # 0\n    return inner # 0\n\ndef b_decorator(a, b): # 0\n    def inner(func): # 0\n        if func: # 1 (nested = 0), total 1\n            return None # 0\n        return func # 0\n    return inner # 0\n```\n\nThe cognitive complexity of the file is 1, and the cognitive complexity of the\nfunction `b_decorator` is 1. This example is simple, but it shows how\n**complexipy** calculates the cognitive complexity according to the specifications\nof the paper \"Cognitive Complexity a new way to measure understandability\",\nconsidering the decorators and the if statement.\n\n#### Output to a CSV file\n\nIf you want to output the results to a CSV file, you can use the `-o` option,\nthis is really useful if you want to integrate **complexipy** with other tools,\nfor example, a CI/CD pipeline. You will get the output in the console and will\ncreate a CSV file with the results of the analysis.\n\nThe filename will be `complexipy.csv` and will be saved in the current directory.\n\n```bash\n$ complexipy path/to/file.py -o\n```\n\nThe output will be:\n\n```csv\nPath,File Name,Function Name,Cognitive Complexity\ntest_decorator.py,test_decorator.py,a_decorator,0\ntest_decorator.py,test_decorator.py,b_decorator,1\n```\n\n### Analyzing a directory\n\nYou can also analyze a directory, for example:\n\n```bash\n$ complexipy .\n```\n\nAnd **complexipy** will analyze all the files in the current directory and any\nsubdirectories.\n\n### Analyzing a git repository\n\nYou can also analyze a git repository, for example:\n\n```bash\n$ complexipy https://github.com/rohaquinlop/complexipy\n```\n\nAnd to generate the output to a CSV file:\n\n```bash\n$ complexipy https://github.com/rohaquinlop/complexipy -o\n```\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](https://github.com/rohaquinlop/complexipy/blob/main/LICENSE) file\nfor details.\n\n## Acknowledgments\n\n- Thanks to G. Ann Campbell for publishing the paper \"Cognitive Complexity a new\nway to measure understandability\".\n- This project is inspired by the Sonar way to calculate the cognitive\ncomplexity.\n\n## References\n\n- [Cognitive Complexity](https://www.sonarsource.com/resources/cognitive-complexity/)\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An extremely fast Python library to calculate the cognitive complexity of Python files, written in Rust.",
    "version": "0.3.3",
    "project_urls": {
        "Homepage": "https://github.com/rohaquinlop/complexipy",
        "Source Code": "https://github.com/rohaquinlop/complexipy"
    },
    "split_keywords": [
        "cognitive",
        " complexity",
        " cognitive complexity",
        " rust",
        " fast"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1fda6248527d96a10509ddd17cea0e367c001fddc90bd09d5320734008b6a08",
                "md5": "431ff14c1024b69d356382af61b992a7",
                "sha256": "abbba3e068a649308b49499b515f45e2852cd3187d97c6240e20c68eb1de75ca"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "431ff14c1024b69d356382af61b992a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2188722,
            "upload_time": "2024-04-27T21:40:08",
            "upload_time_iso_8601": "2024-04-27T21:40:08.657554Z",
            "url": "https://files.pythonhosted.org/packages/e1/fd/a6248527d96a10509ddd17cea0e367c001fddc90bd09d5320734008b6a08/complexipy-0.3.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6067b709731e7226204df11284f406953afb19f74eb7cf4a53d4d7a04e2bdd7",
                "md5": "957098ca9299ed92087d2930df47a909",
                "sha256": "81932f4cf3c2e22a1df8fcbf3851260c8055f0cde708bfb94d1c0be5c8174c09"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "957098ca9299ed92087d2930df47a909",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2062809,
            "upload_time": "2024-04-27T21:40:10",
            "upload_time_iso_8601": "2024-04-27T21:40:10.907365Z",
            "url": "https://files.pythonhosted.org/packages/f6/06/7b709731e7226204df11284f406953afb19f74eb7cf4a53d4d7a04e2bdd7/complexipy-0.3.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36d285dcfc4543fbdc29552bd2b1d7d4547a0b747e6a0af4d75754cca1bca229",
                "md5": "823df05f5c2bed602631455dc0aa2e71",
                "sha256": "05f91f452128f6855276a4c28997a7b3935fd04f271dca90f3f6efdf4a56a5c0"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "823df05f5c2bed602631455dc0aa2e71",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3019675,
            "upload_time": "2024-04-27T21:40:13",
            "upload_time_iso_8601": "2024-04-27T21:40:13.935923Z",
            "url": "https://files.pythonhosted.org/packages/36/d2/85dcfc4543fbdc29552bd2b1d7d4547a0b747e6a0af4d75754cca1bca229/complexipy-0.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bdc692b06ab136e9bc02b7bc3706f99f5957d07de674127e2b0d64743d83409",
                "md5": "a26f15864c44f8355b5489e564b278aa",
                "sha256": "b53356432708d46d122f3999d2266b9dfc64f9b0bb19b902eeec4762f4084f58"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a26f15864c44f8355b5489e564b278aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3010964,
            "upload_time": "2024-04-27T21:40:16",
            "upload_time_iso_8601": "2024-04-27T21:40:16.882447Z",
            "url": "https://files.pythonhosted.org/packages/4b/dc/692b06ab136e9bc02b7bc3706f99f5957d07de674127e2b0d64743d83409/complexipy-0.3.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f4481608943840568d101c96305e158ebef1ba46cdccbcfd6b3630416195a4c",
                "md5": "1be668f7da4a3e1cea081489ccd33ef2",
                "sha256": "018e280c5b0b7be73816803bfd3f60b74fd82f5cbb6a6d639ae274697d01c473"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1be668f7da4a3e1cea081489ccd33ef2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3215618,
            "upload_time": "2024-04-27T21:40:19",
            "upload_time_iso_8601": "2024-04-27T21:40:19.422097Z",
            "url": "https://files.pythonhosted.org/packages/1f/44/81608943840568d101c96305e158ebef1ba46cdccbcfd6b3630416195a4c/complexipy-0.3.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "018736ea537c763e60286aab111cbf98d41eebd0388e92f692af0f41176b71d1",
                "md5": "0850afc1d4666f2a27b1f922f62f24e3",
                "sha256": "1d11d723bdc7d0d079faded3ce9e9ea662d4ffb9882fa1749b1c787b39892bfb"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0850afc1d4666f2a27b1f922f62f24e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3437252,
            "upload_time": "2024-04-27T21:40:22",
            "upload_time_iso_8601": "2024-04-27T21:40:22.277132Z",
            "url": "https://files.pythonhosted.org/packages/01/87/36ea537c763e60286aab111cbf98d41eebd0388e92f692af0f41176b71d1/complexipy-0.3.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "142a58c71a8dfea45781a02b71f9d54b9d27c902795a2c89b6313f62347db6b9",
                "md5": "bb145ebbe9d87a35c4c03fcd06eb0cef",
                "sha256": "e25b89104abb02f70d7f5ff467d70ed3f270775fd7fcafd40247fa64a46e538c"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bb145ebbe9d87a35c4c03fcd06eb0cef",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3436647,
            "upload_time": "2024-04-27T21:40:25",
            "upload_time_iso_8601": "2024-04-27T21:40:25.229461Z",
            "url": "https://files.pythonhosted.org/packages/14/2a/58c71a8dfea45781a02b71f9d54b9d27c902795a2c89b6313f62347db6b9/complexipy-0.3.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "561299df69f78912be9da8a9a7be0b8ae05440b2078df6981abd7a6631499646",
                "md5": "4b056e52a2ea10d88e90ddc4c63e6054",
                "sha256": "31008e3ff282a092f3c6e330d7bec7566842609bca6ec7ee9b7b2429ceaaf1b2"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b056e52a2ea10d88e90ddc4c63e6054",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3104863,
            "upload_time": "2024-04-27T21:40:27",
            "upload_time_iso_8601": "2024-04-27T21:40:27.813023Z",
            "url": "https://files.pythonhosted.org/packages/56/12/99df69f78912be9da8a9a7be0b8ae05440b2078df6981abd7a6631499646/complexipy-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3eca0b27f176155e27a132ec8ffafddb9480372fcd6e8ce0f79c83627283cb54",
                "md5": "df4818b0eb683d77d4c10715090ccdd2",
                "sha256": "e4435692bd0d99b419330c9d4bdf8532acd1ecc02712e09001dd66be1f186dba"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "df4818b0eb683d77d4c10715090ccdd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1893791,
            "upload_time": "2024-04-27T21:40:29",
            "upload_time_iso_8601": "2024-04-27T21:40:29.577025Z",
            "url": "https://files.pythonhosted.org/packages/3e/ca/0b27f176155e27a132ec8ffafddb9480372fcd6e8ce0f79c83627283cb54/complexipy-0.3.3-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3fb07fe6bfc4344e948f6904c84749810e50205cc5b9bace9e82c1d745f54b0",
                "md5": "aa95bc4318bdd45379ed5a20997074f6",
                "sha256": "3346103dd42dd1d77eaeb50f08834cae8435309857871cc10a880a9e096f6afd"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aa95bc4318bdd45379ed5a20997074f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2053865,
            "upload_time": "2024-04-27T21:40:31",
            "upload_time_iso_8601": "2024-04-27T21:40:31.718340Z",
            "url": "https://files.pythonhosted.org/packages/a3/fb/07fe6bfc4344e948f6904c84749810e50205cc5b9bace9e82c1d745f54b0/complexipy-0.3.3-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51286113727c21af7687bf4123cc6b8c25bb6ab42d163ce871ae2ba605b8f693",
                "md5": "ae4b6b6b27f952f9a00f4d916b9ad858",
                "sha256": "2e1ec50fdd49adcae4587f59e64fc865e6e579d34a18aa8d5448ca4782556023"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae4b6b6b27f952f9a00f4d916b9ad858",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2188684,
            "upload_time": "2024-04-27T21:40:34",
            "upload_time_iso_8601": "2024-04-27T21:40:34.177869Z",
            "url": "https://files.pythonhosted.org/packages/51/28/6113727c21af7687bf4123cc6b8c25bb6ab42d163ce871ae2ba605b8f693/complexipy-0.3.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9a5bb4849f82289c39efa640fff02e7e1140613b3ae12fcc792b643551760c1",
                "md5": "9329f7ba105b93ee4ffcda68f2bd0c3c",
                "sha256": "3d10e729fed5d0c3b780456963cf0bc2f2d70115d77113f44c8f179c20e561a1"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9329f7ba105b93ee4ffcda68f2bd0c3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2062840,
            "upload_time": "2024-04-27T21:40:36",
            "upload_time_iso_8601": "2024-04-27T21:40:36.139695Z",
            "url": "https://files.pythonhosted.org/packages/b9/a5/bb4849f82289c39efa640fff02e7e1140613b3ae12fcc792b643551760c1/complexipy-0.3.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4893dc0cfed18284dd9bff9b6c620ba390aee574c0b64c4f8429c14563d29c00",
                "md5": "22e9098ae0130efb7b3e6ef3b506268f",
                "sha256": "79125ff1b8a1ca9e875b14ea043b8160731245e424e50193f35bd67e91f3039e"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "22e9098ae0130efb7b3e6ef3b506268f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3019832,
            "upload_time": "2024-04-27T21:40:38",
            "upload_time_iso_8601": "2024-04-27T21:40:38.078734Z",
            "url": "https://files.pythonhosted.org/packages/48/93/dc0cfed18284dd9bff9b6c620ba390aee574c0b64c4f8429c14563d29c00/complexipy-0.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1ea3c483e2c69d21eb4ea3c6636215630a626c832ccb1ab12acd43da9783208",
                "md5": "3cae4339f39890c69e86518824101a81",
                "sha256": "a28f242524001ea070a014a1d83da62466819117e048b68b49b788af99716f66"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3cae4339f39890c69e86518824101a81",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3011153,
            "upload_time": "2024-04-27T21:40:40",
            "upload_time_iso_8601": "2024-04-27T21:40:40.211989Z",
            "url": "https://files.pythonhosted.org/packages/c1/ea/3c483e2c69d21eb4ea3c6636215630a626c832ccb1ab12acd43da9783208/complexipy-0.3.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4521a2adb262dc28b8286aa674c80c2c69ea7d616639bf51603a1c221c8aaab8",
                "md5": "7d3c09cc545284488fe3c5096f2daf80",
                "sha256": "8a567231949ee67b593ad4945de8a32d4d88bad03f4beaa4cd4cc0bf1cce34bf"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7d3c09cc545284488fe3c5096f2daf80",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3215614,
            "upload_time": "2024-04-27T21:40:42",
            "upload_time_iso_8601": "2024-04-27T21:40:42.609700Z",
            "url": "https://files.pythonhosted.org/packages/45/21/a2adb262dc28b8286aa674c80c2c69ea7d616639bf51603a1c221c8aaab8/complexipy-0.3.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1940b62660c112c2e00d520f5f78d430096d272ad78fc8471e1d6e2cc1ca38cb",
                "md5": "28f4c2a94b57b970587b0ea508b2c861",
                "sha256": "4e566a288f03bee2bcecf0496ffb58e39e8473bf6680c79be3044effd7eec151"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "28f4c2a94b57b970587b0ea508b2c861",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3437270,
            "upload_time": "2024-04-27T21:40:45",
            "upload_time_iso_8601": "2024-04-27T21:40:45.035861Z",
            "url": "https://files.pythonhosted.org/packages/19/40/b62660c112c2e00d520f5f78d430096d272ad78fc8471e1d6e2cc1ca38cb/complexipy-0.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af8beb91d45458f7bf93ea305ea062aaed90fb71d3f139826978fc57313b13c9",
                "md5": "b4ff846c550a7af4815d79cc4c5d2a63",
                "sha256": "d794f32a4e714042f6949f7bd5915a8bb0780973494950b59fb068eaf80cbd9c"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b4ff846c550a7af4815d79cc4c5d2a63",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3436688,
            "upload_time": "2024-04-27T21:40:47",
            "upload_time_iso_8601": "2024-04-27T21:40:47.164732Z",
            "url": "https://files.pythonhosted.org/packages/af/8b/eb91d45458f7bf93ea305ea062aaed90fb71d3f139826978fc57313b13c9/complexipy-0.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8126a2efba3e6ada5835e4f8736cc810b931911c22bba7e3ad9c91fcd7482b6c",
                "md5": "ba061814add5e3e4622e6791c88f61f6",
                "sha256": "ad82b89279f2d160c9a600aec9ea1e70444a714834691c7f79be8264fe10002a"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba061814add5e3e4622e6791c88f61f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3104947,
            "upload_time": "2024-04-27T21:40:49",
            "upload_time_iso_8601": "2024-04-27T21:40:49.626907Z",
            "url": "https://files.pythonhosted.org/packages/81/26/a2efba3e6ada5835e4f8736cc810b931911c22bba7e3ad9c91fcd7482b6c/complexipy-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ca21e4bd0618aefb140a13b6422c7c3dff1b3eeb27766804f1ec78a2647a5af",
                "md5": "85a83cddd859cd63422800c3296a8d42",
                "sha256": "93eb2b829c49624bbd35d35bdbccb9a470844264965910b4275c1fce1e1d75dd"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "85a83cddd859cd63422800c3296a8d42",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1893795,
            "upload_time": "2024-04-27T21:40:52",
            "upload_time_iso_8601": "2024-04-27T21:40:52.053046Z",
            "url": "https://files.pythonhosted.org/packages/6c/a2/1e4bd0618aefb140a13b6422c7c3dff1b3eeb27766804f1ec78a2647a5af/complexipy-0.3.3-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "655f206d5e4dc663b3c684953b5f43fdcb068b96053fedbdadce20d278c4f6c4",
                "md5": "95791cc32c594ed9ecf51fc407f28738",
                "sha256": "992731860f521618119f3d99a652468ab7d12c2c5708ea839135672219b3320a"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "95791cc32c594ed9ecf51fc407f28738",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2053862,
            "upload_time": "2024-04-27T21:40:53",
            "upload_time_iso_8601": "2024-04-27T21:40:53.838356Z",
            "url": "https://files.pythonhosted.org/packages/65/5f/206d5e4dc663b3c684953b5f43fdcb068b96053fedbdadce20d278c4f6c4/complexipy-0.3.3-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9632d090282f80d8b9125de439bc7182937a9d9164095c3ae74ff9e1b021a023",
                "md5": "19f6dec6f8705cecec50ae189b573f46",
                "sha256": "7d0e233beb21248b447b00394ee6c470b2aa077f930cbda20c68aacbc04e0c22"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19f6dec6f8705cecec50ae189b573f46",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2188255,
            "upload_time": "2024-04-27T21:40:56",
            "upload_time_iso_8601": "2024-04-27T21:40:56.037743Z",
            "url": "https://files.pythonhosted.org/packages/96/32/d090282f80d8b9125de439bc7182937a9d9164095c3ae74ff9e1b021a023/complexipy-0.3.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be374b95299b76d4c249e56f6e98d12fa0f6ef526fc69f46f4b6bfb82495159a",
                "md5": "a631a7ced0b06eee81b88b11e3bd3283",
                "sha256": "73732181b00d3bb52f812af3727d64eb4dffb57fdd4ac392bd7c93f2bd2531ce"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a631a7ced0b06eee81b88b11e3bd3283",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2063178,
            "upload_time": "2024-04-27T21:40:57",
            "upload_time_iso_8601": "2024-04-27T21:40:57.849872Z",
            "url": "https://files.pythonhosted.org/packages/be/37/4b95299b76d4c249e56f6e98d12fa0f6ef526fc69f46f4b6bfb82495159a/complexipy-0.3.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f96e5c059fd4df11fa2eb8856b5cf70f86fd8e52a65d39773562879bc0c60b4f",
                "md5": "cb6d4ea1ef93176c73f90d492c92f614",
                "sha256": "49422d84324e31d74b343403446addf774df51223f08eeb959e7268439ba62e3"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cb6d4ea1ef93176c73f90d492c92f614",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3019586,
            "upload_time": "2024-04-27T21:41:00",
            "upload_time_iso_8601": "2024-04-27T21:41:00.492694Z",
            "url": "https://files.pythonhosted.org/packages/f9/6e/5c059fd4df11fa2eb8856b5cf70f86fd8e52a65d39773562879bc0c60b4f/complexipy-0.3.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a84fdbb1ec417cf3833769f23215348f5588bac4dca48f0b70bb196742d0b8e4",
                "md5": "d237e7a2ead26fc55f3563d5bc7a0999",
                "sha256": "650f59ac5f3701641710cd899ed5c0a608c029ed5165c9aac4460a859c379568"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d237e7a2ead26fc55f3563d5bc7a0999",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3011063,
            "upload_time": "2024-04-27T21:41:02",
            "upload_time_iso_8601": "2024-04-27T21:41:02.989039Z",
            "url": "https://files.pythonhosted.org/packages/a8/4f/dbb1ec417cf3833769f23215348f5588bac4dca48f0b70bb196742d0b8e4/complexipy-0.3.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa5a23eeb6daee1e2aa895665e167886c4add5eaca4555f6b3f177085a28482a",
                "md5": "44c6e54f2e7c094b45383dd9ab9a0838",
                "sha256": "ef52fdcacda150f3a326721aa88618078800d868171b984ce780f4292d1c39ea"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "44c6e54f2e7c094b45383dd9ab9a0838",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3213599,
            "upload_time": "2024-04-27T21:41:05",
            "upload_time_iso_8601": "2024-04-27T21:41:05.064792Z",
            "url": "https://files.pythonhosted.org/packages/fa/5a/23eeb6daee1e2aa895665e167886c4add5eaca4555f6b3f177085a28482a/complexipy-0.3.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1f5021efdab80ce77bc92bb8f77d9f9cdea947aa45b8784ea35cacfac4fc3e6",
                "md5": "189919184c30bdbdd0db3b559f189885",
                "sha256": "221e8f1e6c6740ba3cac5ae242498de9b517cd2ae21be7ec707670a0993d8753"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "189919184c30bdbdd0db3b559f189885",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3435819,
            "upload_time": "2024-04-27T21:41:07",
            "upload_time_iso_8601": "2024-04-27T21:41:07.634881Z",
            "url": "https://files.pythonhosted.org/packages/a1/f5/021efdab80ce77bc92bb8f77d9f9cdea947aa45b8784ea35cacfac4fc3e6/complexipy-0.3.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "984d60d386652b8ff2e5b0ca1b3c59391a65565d0039eeca914a981c75a77fc2",
                "md5": "3e73ff103089bde8a0521cb6d17c0edd",
                "sha256": "4ce93dcdb1c7b24ead36b861484503716bd308cb2074705b717a5d4211c8e921"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3e73ff103089bde8a0521cb6d17c0edd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3421997,
            "upload_time": "2024-04-27T21:41:09",
            "upload_time_iso_8601": "2024-04-27T21:41:09.594734Z",
            "url": "https://files.pythonhosted.org/packages/98/4d/60d386652b8ff2e5b0ca1b3c59391a65565d0039eeca914a981c75a77fc2/complexipy-0.3.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d42d51528d6329931287c076483a0ab8c4118c039f3e699ff97a151d8902a916",
                "md5": "52f7b8c365c519863f799c3ad6f839fb",
                "sha256": "7fe0121c629712a48b542d65c6feba2ddabccfd627b6ca6dc05fa8b7065da296"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52f7b8c365c519863f799c3ad6f839fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3104966,
            "upload_time": "2024-04-27T21:41:11",
            "upload_time_iso_8601": "2024-04-27T21:41:11.869151Z",
            "url": "https://files.pythonhosted.org/packages/d4/2d/51528d6329931287c076483a0ab8c4118c039f3e699ff97a151d8902a916/complexipy-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5a1b28e9badfdddee940e45f3f29313bd3bdddf826d6565e23fbb5ec48d5aec",
                "md5": "944e8f6b2a406f848d878d3237be4ff6",
                "sha256": "0bd9d60a1a38a64c4ecea304880b36eb97749df55f8c025f0ecf6349e2eb9a3d"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "944e8f6b2a406f848d878d3237be4ff6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1895537,
            "upload_time": "2024-04-27T21:41:13",
            "upload_time_iso_8601": "2024-04-27T21:41:13.996169Z",
            "url": "https://files.pythonhosted.org/packages/f5/a1/b28e9badfdddee940e45f3f29313bd3bdddf826d6565e23fbb5ec48d5aec/complexipy-0.3.3-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bcdf04608c0c402e31d5e8ba88e615374ff136edd27be22a53680df510e17eb",
                "md5": "2a3e3f217636c18f8d7a5bf9a88b47a5",
                "sha256": "3a8a4ba2e82ef098fdc3dd3d01de5702a83323d17f7eba35c9ee2e717085f1d9"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2a3e3f217636c18f8d7a5bf9a88b47a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2055895,
            "upload_time": "2024-04-27T21:41:16",
            "upload_time_iso_8601": "2024-04-27T21:41:16.483533Z",
            "url": "https://files.pythonhosted.org/packages/6b/cd/f04608c0c402e31d5e8ba88e615374ff136edd27be22a53680df510e17eb/complexipy-0.3.3-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d90287cf4c55d1875ecbb8f836c467db4ad51902caa35e3f06b96b24e3f038b",
                "md5": "3ab8f09f0a0f965bb73b89997008289b",
                "sha256": "1f16b46deb1b7e1fcae5e187ca919fcb9982dbee63810304d833dec896b738ff"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3ab8f09f0a0f965bb73b89997008289b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3020424,
            "upload_time": "2024-04-27T21:41:19",
            "upload_time_iso_8601": "2024-04-27T21:41:19.001414Z",
            "url": "https://files.pythonhosted.org/packages/0d/90/287cf4c55d1875ecbb8f836c467db4ad51902caa35e3f06b96b24e3f038b/complexipy-0.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5816460ed7d7f06641b8803a6de78956f91b7fc624bace6dead068c586a5c73",
                "md5": "daf879a07bf8436b9eeb044c59f8aa08",
                "sha256": "3071d349873b52640de5e639ad478b3c486e3cd4d397fc5d1e7a64e1e1ac31ba"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "daf879a07bf8436b9eeb044c59f8aa08",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3011464,
            "upload_time": "2024-04-27T21:41:20",
            "upload_time_iso_8601": "2024-04-27T21:41:20.891570Z",
            "url": "https://files.pythonhosted.org/packages/d5/81/6460ed7d7f06641b8803a6de78956f91b7fc624bace6dead068c586a5c73/complexipy-0.3.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8d12e5a5f1cc3f7175f2ff3fc0d198ba429c9dae1b6d2b69cd529f23e6db495",
                "md5": "84fe1f95633eee2aacb290d97d6f0ca6",
                "sha256": "f67e438b4f3eb8f964bcd43f50c62bbabf6d71a8ccda5546dd13ccc2f9ef14fa"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "84fe1f95633eee2aacb290d97d6f0ca6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3215704,
            "upload_time": "2024-04-27T21:41:22",
            "upload_time_iso_8601": "2024-04-27T21:41:22.807019Z",
            "url": "https://files.pythonhosted.org/packages/f8/d1/2e5a5f1cc3f7175f2ff3fc0d198ba429c9dae1b6d2b69cd529f23e6db495/complexipy-0.3.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28cfd4e390062eba6fa2a0ac52a306642e0b85773f5fe87b0643fa5650d1f571",
                "md5": "ae34708c1e285dafb924d738a3171a51",
                "sha256": "371232b6ef24a658a008c02e53f5a756489ba477fc2bb0399f24b52a171dc727"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ae34708c1e285dafb924d738a3171a51",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3438382,
            "upload_time": "2024-04-27T21:41:25",
            "upload_time_iso_8601": "2024-04-27T21:41:25.437488Z",
            "url": "https://files.pythonhosted.org/packages/28/cf/d4e390062eba6fa2a0ac52a306642e0b85773f5fe87b0643fa5650d1f571/complexipy-0.3.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a92fba3e7a22d26bb9c1e74ab720743ec42d1ab6ebe5b958592f34015bc86b94",
                "md5": "13d7cbd73007dbd91cbfcf1b160c7346",
                "sha256": "ce1eb65ce3b215dc8887f8492e4104bb09c1d786ea5f3305b736d36cf45935ad"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "13d7cbd73007dbd91cbfcf1b160c7346",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3436294,
            "upload_time": "2024-04-27T21:41:27",
            "upload_time_iso_8601": "2024-04-27T21:41:27.978567Z",
            "url": "https://files.pythonhosted.org/packages/a9/2f/ba3e7a22d26bb9c1e74ab720743ec42d1ab6ebe5b958592f34015bc86b94/complexipy-0.3.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a744922cc5253aaad22efd03a624980d7cc6f7ab9b32662dff8f3408488d82c",
                "md5": "e5ed15b80708a0b2ac0640409bd65054",
                "sha256": "0d77e0a4c061ff6f3f8ec0142482f569fe136993baa83ab4e100cb05836d0b7f"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5ed15b80708a0b2ac0640409bd65054",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3106344,
            "upload_time": "2024-04-27T21:41:30",
            "upload_time_iso_8601": "2024-04-27T21:41:30.714870Z",
            "url": "https://files.pythonhosted.org/packages/3a/74/4922cc5253aaad22efd03a624980d7cc6f7ab9b32662dff8f3408488d82c/complexipy-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06039093fa61e310e7eb5b38da132aa963549529ae170da69fe329c052705c73",
                "md5": "172daef2a675c7a8fed55ba984c5ff0a",
                "sha256": "ccb07196dbba657fa468bf0de4c55ae554bfe6093db85ca249a6e3522b87371e"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "172daef2a675c7a8fed55ba984c5ff0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1893627,
            "upload_time": "2024-04-27T21:41:33",
            "upload_time_iso_8601": "2024-04-27T21:41:33.029255Z",
            "url": "https://files.pythonhosted.org/packages/06/03/9093fa61e310e7eb5b38da132aa963549529ae170da69fe329c052705c73/complexipy-0.3.3-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26715f85b9389668712c23a882405a239f701560c3cdc792fffdaa14fc2860dc",
                "md5": "d7672c25a9c9b40404c7a03cfe956a11",
                "sha256": "b1eed5207fbff8f9fdf4399b279d0b17e4f7c24b4f0b170e95c65d19fec2245c"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d7672c25a9c9b40404c7a03cfe956a11",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2054416,
            "upload_time": "2024-04-27T21:41:34",
            "upload_time_iso_8601": "2024-04-27T21:41:34.782550Z",
            "url": "https://files.pythonhosted.org/packages/26/71/5f85b9389668712c23a882405a239f701560c3cdc792fffdaa14fc2860dc/complexipy-0.3.3-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1bd2fc6fe0205564ae3b36f977aef9007b2c7caf2ab26456a58324076709de4a",
                "md5": "50abbac9e4a80560c675f746962c04fe",
                "sha256": "66f10a511649eb0b0f23f7e26bfb1a50e90b3434f962003fc7f1f903941122a5"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "50abbac9e4a80560c675f746962c04fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3019854,
            "upload_time": "2024-04-27T21:41:37",
            "upload_time_iso_8601": "2024-04-27T21:41:37.464276Z",
            "url": "https://files.pythonhosted.org/packages/1b/d2/fc6fe0205564ae3b36f977aef9007b2c7caf2ab26456a58324076709de4a/complexipy-0.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7d875066b46c071d8b94bcfb74922cc607e40d78a5b6f86f4d78a43a7a4925b",
                "md5": "6e88b1531a9728b6bc864e0239d364c1",
                "sha256": "beeeea9e8d855c47cce160bd9e108d7c3988ca3b7badd4adce4eb19c8dac43a6"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6e88b1531a9728b6bc864e0239d364c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3011500,
            "upload_time": "2024-04-27T21:41:40",
            "upload_time_iso_8601": "2024-04-27T21:41:40.087596Z",
            "url": "https://files.pythonhosted.org/packages/d7/d8/75066b46c071d8b94bcfb74922cc607e40d78a5b6f86f4d78a43a7a4925b/complexipy-0.3.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c175b3190b5bd5eae2ca1a8c29eb002d09376f11ce65bfe8239c867192d5a23",
                "md5": "fcc18f2fa70ce752f24864b8a869ec03",
                "sha256": "a5dcb208136669230c90dc951e665a6013bc46cf7cfbe958432ef56311f94b0e"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fcc18f2fa70ce752f24864b8a869ec03",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3215170,
            "upload_time": "2024-04-27T21:41:42",
            "upload_time_iso_8601": "2024-04-27T21:41:42.177368Z",
            "url": "https://files.pythonhosted.org/packages/6c/17/5b3190b5bd5eae2ca1a8c29eb002d09376f11ce65bfe8239c867192d5a23/complexipy-0.3.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "acd9228cc71dadaade7947f9f840aa45542665022a996f01a18db60744ce7391",
                "md5": "16d93d0e8c0fe2b0cd936b04b3ccfc0a",
                "sha256": "af0557a9f651744d7a54f5a2a00fb564f90c751810a8fa3a4bcebb0d65b57423"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "16d93d0e8c0fe2b0cd936b04b3ccfc0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3437206,
            "upload_time": "2024-04-27T21:41:44",
            "upload_time_iso_8601": "2024-04-27T21:41:44.398470Z",
            "url": "https://files.pythonhosted.org/packages/ac/d9/228cc71dadaade7947f9f840aa45542665022a996f01a18db60744ce7391/complexipy-0.3.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf8af98b369e4a2dd3f52a6f4cf5f865387ffa5bbaaa351d62a5c7aa7424c793",
                "md5": "e6377167bd443b3df63354329ddf90c4",
                "sha256": "5b086002cb1755cef9e447fa0441251aface22c6321e048b9af0196c72ca9ebc"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e6377167bd443b3df63354329ddf90c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3438065,
            "upload_time": "2024-04-27T21:41:46",
            "upload_time_iso_8601": "2024-04-27T21:41:46.489336Z",
            "url": "https://files.pythonhosted.org/packages/cf/8a/f98b369e4a2dd3f52a6f4cf5f865387ffa5bbaaa351d62a5c7aa7424c793/complexipy-0.3.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e342596abdd5ec1cabef9298936b13034467b552a8c3d24b2e8fbbfb531258c",
                "md5": "9fb5fc0c9e0d8c096f98fa15ec39e745",
                "sha256": "d696942787ee1d65960f0839c35586393dc3adb2568c8f31894344d388a1462f"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9fb5fc0c9e0d8c096f98fa15ec39e745",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3105146,
            "upload_time": "2024-04-27T21:41:48",
            "upload_time_iso_8601": "2024-04-27T21:41:48.531324Z",
            "url": "https://files.pythonhosted.org/packages/8e/34/2596abdd5ec1cabef9298936b13034467b552a8c3d24b2e8fbbfb531258c/complexipy-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93331441f86043c227481f195653b612085ca0ff19a93496545721e0b30daa96",
                "md5": "791b611a30917ea623de1737dbfb4468",
                "sha256": "44318df5f6df8a65c0fe844f89d56b934a12ad363cd7ad272a1061f0fbf5fd87"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "791b611a30917ea623de1737dbfb4468",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1894084,
            "upload_time": "2024-04-27T21:41:50",
            "upload_time_iso_8601": "2024-04-27T21:41:50.704849Z",
            "url": "https://files.pythonhosted.org/packages/93/33/1441f86043c227481f195653b612085ca0ff19a93496545721e0b30daa96/complexipy-0.3.3-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "095f6f50ebf7cbff31eb768760c03ff3dde3e0a5039e4031fde2bfa2932fdc5f",
                "md5": "7df33c01bf814e297cd1348af6df657c",
                "sha256": "16d33a6e99b5ca338b6d6230037347e41cb63f7340009bb616208ca4eedb1ddf"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7df33c01bf814e297cd1348af6df657c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2054284,
            "upload_time": "2024-04-27T21:41:53",
            "upload_time_iso_8601": "2024-04-27T21:41:53.306739Z",
            "url": "https://files.pythonhosted.org/packages/09/5f/6f50ebf7cbff31eb768760c03ff3dde3e0a5039e4031fde2bfa2932fdc5f/complexipy-0.3.3-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71c32036c7ee01e64bcbb8f4aa67da62af4e894e9dfebffeffa7506159fb4451",
                "md5": "07a91a29f5e39f8e4e12b0c79110f4e6",
                "sha256": "9cdb12b42b91fe39d3c3ceebac914e146d99039160124a478f71ee0ed98eb68c"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "07a91a29f5e39f8e4e12b0c79110f4e6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3019756,
            "upload_time": "2024-04-27T21:41:55",
            "upload_time_iso_8601": "2024-04-27T21:41:55.969532Z",
            "url": "https://files.pythonhosted.org/packages/71/c3/2036c7ee01e64bcbb8f4aa67da62af4e894e9dfebffeffa7506159fb4451/complexipy-0.3.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28b25500a57a78d84b1ec6c551c9dc2ea00498c5d803534c6f9f40605632f31c",
                "md5": "4a1a225790ffd2f5202a8d7e2ba09bf6",
                "sha256": "db46ed75a72b000f2363ffce8d728f023806fade4cfa022d88d688ade5e7c531"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4a1a225790ffd2f5202a8d7e2ba09bf6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3011712,
            "upload_time": "2024-04-27T21:41:57",
            "upload_time_iso_8601": "2024-04-27T21:41:57.943458Z",
            "url": "https://files.pythonhosted.org/packages/28/b2/5500a57a78d84b1ec6c551c9dc2ea00498c5d803534c6f9f40605632f31c/complexipy-0.3.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fee74cbd2cc64bbbcc8985d18ae86996d61d34c7c45c85da571b5ade31eea0dc",
                "md5": "6b7fd17a1a629daf9d828333c8a34497",
                "sha256": "02af1195f1dcbd6ebbb9eb1ee29b82fdbfcd646f114a826fa484d3b6e4b474ed"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6b7fd17a1a629daf9d828333c8a34497",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3215898,
            "upload_time": "2024-04-27T21:42:00",
            "upload_time_iso_8601": "2024-04-27T21:42:00.323540Z",
            "url": "https://files.pythonhosted.org/packages/fe/e7/4cbd2cc64bbbcc8985d18ae86996d61d34c7c45c85da571b5ade31eea0dc/complexipy-0.3.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79a7cf580b882fc780ad32b0d9531c9178d54cc473bea778b0c90b82fce016a3",
                "md5": "2e3d6f05d464eeda8e33719b65ab1d1a",
                "sha256": "6e3c8f68c8796eccc4d227f9ed9afac427aea42e44550c225952f338178ba441"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2e3d6f05d464eeda8e33719b65ab1d1a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3436474,
            "upload_time": "2024-04-27T21:42:02",
            "upload_time_iso_8601": "2024-04-27T21:42:02.351878Z",
            "url": "https://files.pythonhosted.org/packages/79/a7/cf580b882fc780ad32b0d9531c9178d54cc473bea778b0c90b82fce016a3/complexipy-0.3.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3de6c4580d58ca315607936052c3fd592af8e0a576410c0a54a4891ae00cec56",
                "md5": "e21d295fdf3150777b547d0bd8821477",
                "sha256": "5c5780e1eaa1d1a83bcd2d47e113d28d60d9529fd157361efb866b925a5c1777"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e21d295fdf3150777b547d0bd8821477",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3437582,
            "upload_time": "2024-04-27T21:42:04",
            "upload_time_iso_8601": "2024-04-27T21:42:04.720783Z",
            "url": "https://files.pythonhosted.org/packages/3d/e6/c4580d58ca315607936052c3fd592af8e0a576410c0a54a4891ae00cec56/complexipy-0.3.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6160cc4d09f5f55fecdac621ba50ff495ff2af44d071caccfcad9df3b43bc568",
                "md5": "a3dc8470dbd64b90f92045001a19028b",
                "sha256": "6c33eec5cacda3c3fefae44a10096609af63ff5a8420d566b3a9dab3a2243add"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a3dc8470dbd64b90f92045001a19028b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3104095,
            "upload_time": "2024-04-27T21:42:06",
            "upload_time_iso_8601": "2024-04-27T21:42:06.870242Z",
            "url": "https://files.pythonhosted.org/packages/61/60/cc4d09f5f55fecdac621ba50ff495ff2af44d071caccfcad9df3b43bc568/complexipy-0.3.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a72df94b50e545216baa89389c219d051f9d65c2d4d57f43a25739f4b53c1b9",
                "md5": "615b8357243ccabe471a921fd9013191",
                "sha256": "b700c76be1917b671ae7f128504e9b7c9e5040e605a8c2ac997426afa1107ea9"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "615b8357243ccabe471a921fd9013191",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3019240,
            "upload_time": "2024-04-27T21:42:08",
            "upload_time_iso_8601": "2024-04-27T21:42:08.935460Z",
            "url": "https://files.pythonhosted.org/packages/2a/72/df94b50e545216baa89389c219d051f9d65c2d4d57f43a25739f4b53c1b9/complexipy-0.3.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bc68a170ae280099fc49820396554620c1110949c142d36ad76732bca861ee4",
                "md5": "baa82f476f92d9866dcc9120531b258f",
                "sha256": "94cace9acfe971721b133e6382932fcbae14997c890e20a06a9076c55434a60a"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "baa82f476f92d9866dcc9120531b258f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3010356,
            "upload_time": "2024-04-27T21:42:11",
            "upload_time_iso_8601": "2024-04-27T21:42:11.233804Z",
            "url": "https://files.pythonhosted.org/packages/4b/c6/8a170ae280099fc49820396554620c1110949c142d36ad76732bca861ee4/complexipy-0.3.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5066fc7661a39766acfd2094a4ee7465699a347acc3f444d9464ebf404e940a9",
                "md5": "111226349e34440b960d52b577ba9696",
                "sha256": "3cca0a04b6705b6aeea924d5c6b15799009816924884be34c2573a359f223bdf"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "111226349e34440b960d52b577ba9696",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3214877,
            "upload_time": "2024-04-27T21:42:13",
            "upload_time_iso_8601": "2024-04-27T21:42:13.991458Z",
            "url": "https://files.pythonhosted.org/packages/50/66/fc7661a39766acfd2094a4ee7465699a347acc3f444d9464ebf404e940a9/complexipy-0.3.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60cfb11fa5f4a2511dd5176663de75ffacef72543ed46f5ba092e7d386b6820e",
                "md5": "03af812ad0046b330a5e2a46832f7532",
                "sha256": "2b03befc2e1d662e90c74dd32fa2bc69f967364eb805484edc00770ff3647df9"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "03af812ad0046b330a5e2a46832f7532",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3437359,
            "upload_time": "2024-04-27T21:42:16",
            "upload_time_iso_8601": "2024-04-27T21:42:16.158081Z",
            "url": "https://files.pythonhosted.org/packages/60/cf/b11fa5f4a2511dd5176663de75ffacef72543ed46f5ba092e7d386b6820e/complexipy-0.3.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec020e4f74cd8932f05ad7ae35dcbf739b4752c903db3842d23f5b1c464a120c",
                "md5": "6c3d09512510a6c5ba6662fd659b1c97",
                "sha256": "f41a626ee8a235a8b28197cccd5f175209ea0717b383d7c68126750492e99646"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6c3d09512510a6c5ba6662fd659b1c97",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3437962,
            "upload_time": "2024-04-27T21:42:18",
            "upload_time_iso_8601": "2024-04-27T21:42:18.165062Z",
            "url": "https://files.pythonhosted.org/packages/ec/02/0e4f74cd8932f05ad7ae35dcbf739b4752c903db3842d23f5b1c464a120c/complexipy-0.3.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e13c53e9701e7b1bd4c38123dc80814a9889ddeab3493f32805d214817609856",
                "md5": "0916b537c60089b74521e18ec23ceb88",
                "sha256": "c4312214f1b75dc739caa76678a210f88f2d869ec0c9f7ef826c2ae7aa99e272"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0916b537c60089b74521e18ec23ceb88",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3104607,
            "upload_time": "2024-04-27T21:42:20",
            "upload_time_iso_8601": "2024-04-27T21:42:20.090412Z",
            "url": "https://files.pythonhosted.org/packages/e1/3c/53e9701e7b1bd4c38123dc80814a9889ddeab3493f32805d214817609856/complexipy-0.3.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1273eb9a3672afad4b7cae8c39c40d22454eb17e6e853e2efc5754762cf0460c",
                "md5": "afd10dee9ba69c21561b6cd1baa8fac7",
                "sha256": "17beb307262633899ed1fc011463aa6a73b5ec96291915e8d27132ffa82e529f"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "afd10dee9ba69c21561b6cd1baa8fac7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3019446,
            "upload_time": "2024-04-27T21:42:22",
            "upload_time_iso_8601": "2024-04-27T21:42:22.346784Z",
            "url": "https://files.pythonhosted.org/packages/12/73/eb9a3672afad4b7cae8c39c40d22454eb17e6e853e2efc5754762cf0460c/complexipy-0.3.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6e5ad42e4f36f0a129a66b6fcb6d270b5240402ba7c1a5234a151872c56966a",
                "md5": "a30f8295cbd66c6bd6b9e129ac84018a",
                "sha256": "078e33b680fbf2e4248fc10f3c4fdafbeb1b452e451056977b945939cf153403"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a30f8295cbd66c6bd6b9e129ac84018a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3011708,
            "upload_time": "2024-04-27T21:42:24",
            "upload_time_iso_8601": "2024-04-27T21:42:24.394808Z",
            "url": "https://files.pythonhosted.org/packages/e6/e5/ad42e4f36f0a129a66b6fcb6d270b5240402ba7c1a5234a151872c56966a/complexipy-0.3.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa873c6ece1206622726f0267063f5a80132ae0b3cf534b87e27e337d712398e",
                "md5": "00c020da9b10d2ebf398f7afa842821b",
                "sha256": "1fdfe2d2cfcee139bff5d4c3c791d8c245c8a3485eeb325e170334eb6989c887"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "00c020da9b10d2ebf398f7afa842821b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3215491,
            "upload_time": "2024-04-27T21:42:27",
            "upload_time_iso_8601": "2024-04-27T21:42:27.462464Z",
            "url": "https://files.pythonhosted.org/packages/fa/87/3c6ece1206622726f0267063f5a80132ae0b3cf534b87e27e337d712398e/complexipy-0.3.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca1c9e8fd29757b6127bdfbeddca1fd5b53c399a719e4fd1d227c6e212d084f7",
                "md5": "61993f16d947d724f8237b62701aa812",
                "sha256": "f9a25d59b09a2719766aac0c72437806358411b1d6031f579a66bf547cc891bd"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "61993f16d947d724f8237b62701aa812",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3437485,
            "upload_time": "2024-04-27T21:42:30",
            "upload_time_iso_8601": "2024-04-27T21:42:30.037893Z",
            "url": "https://files.pythonhosted.org/packages/ca/1c/9e8fd29757b6127bdfbeddca1fd5b53c399a719e4fd1d227c6e212d084f7/complexipy-0.3.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60e81fc0f54093c9be41a4b75be057385dd1d26f7f96162ad253cfab373c6235",
                "md5": "392343fc4b91bfb00c0d7d4cc0705399",
                "sha256": "85e8fcda1ee2b8c4a93bbf4cae21e72cc4f487e0f891c9b2a8d0fb9fa42988c6"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "392343fc4b91bfb00c0d7d4cc0705399",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3437288,
            "upload_time": "2024-04-27T21:42:32",
            "upload_time_iso_8601": "2024-04-27T21:42:32.088475Z",
            "url": "https://files.pythonhosted.org/packages/60/e8/1fc0f54093c9be41a4b75be057385dd1d26f7f96162ad253cfab373c6235/complexipy-0.3.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ef664b09eef6209292ec9eb7f7e51f49907ea7b58c6728e32bea519e2beac97",
                "md5": "40b263066df93a1fd4cfda07c8b748a4",
                "sha256": "bc1d037674e62e54f2f10822926d684017019bd026b16bb79aedfdea8adad500"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40b263066df93a1fd4cfda07c8b748a4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3104588,
            "upload_time": "2024-04-27T21:42:34",
            "upload_time_iso_8601": "2024-04-27T21:42:34.631679Z",
            "url": "https://files.pythonhosted.org/packages/6e/f6/64b09eef6209292ec9eb7f7e51f49907ea7b58c6728e32bea519e2beac97/complexipy-0.3.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdcc1c330c1b792cd345510bdcef4c39c765318e7f80fd7b0c11c540667b51aa",
                "md5": "8feb43dd7a23597679d07307a1100a53",
                "sha256": "3ac7dbb667ee5f158568c5c6c7f3faae99b6e61ea15ba2c10ef981e648937261"
            },
            "downloads": -1,
            "filename": "complexipy-0.3.3.tar.gz",
            "has_sig": false,
            "md5_digest": "8feb43dd7a23597679d07307a1100a53",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 21739,
            "upload_time": "2024-04-27T21:42:36",
            "upload_time_iso_8601": "2024-04-27T21:42:36.756478Z",
            "url": "https://files.pythonhosted.org/packages/cd/cc/1c330c1b792cd345510bdcef4c39c765318e7f80fd7b0c11c540667b51aa/complexipy-0.3.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-27 21:42:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rohaquinlop",
    "github_project": "complexipy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "complexipy"
}
        
Elapsed time: 0.30241s