symba


Namesymba JSON
Version 2.2.1 PyPI version JSON
download
home_pagehttps://github.com/lycantropos/symba/
Summary
upload_time2023-05-12 08:41:51
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT License Copyright (c) 2021 Azat Ibrakov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            symba
=====

[![](https://github.com/lycantropos/symba/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/lycantropos/symba/actions/workflows/ci.yml "Github Actions")
[![](https://readthedocs.org/projects/symba/badge/?version=latest)](https://symba.readthedocs.io/en/latest "Documentation")
[![](https://codecov.io/gh/lycantropos/symba/branch/master/graph/badge.svg)](https://codecov.io/gh/lycantropos/symba "Codecov")
[![](https://img.shields.io/github/license/lycantropos/symba.svg)](https://github.com/lycantropos/symba/blob/master/LICENSE "License")
[![](https://badge.fury.io/py/symba.svg)](https://badge.fury.io/py/symba "PyPI")

In what follows `python` is an alias for `python3.7` or `pypy3.7`
or any later version (`python3.8`, `pypy3.8` and so on).

Installation
------------

Install the latest `pip` & `setuptools` packages versions
```bash
python -m pip install --upgrade pip setuptools
```

### User

Download and install the latest stable version from `PyPI` repository
```bash
python -m pip install --upgrade symba
```

### Developer

Download the latest version from `GitHub` repository
```bash
git clone https://github.com/lycantropos/symba.git
cd symba
```

Install dependencies
```bash
python -m pip install -r requirements.txt
```

Install
```bash
python setup.py install
```

Usage
-----
```python
>>> from symba.base import Expression, sqrt
>>> golden_ratio = (1 + sqrt(5)) / 2
>>> isinstance(golden_ratio, Expression)
True
>>> golden_ratio * golden_ratio == golden_ratio + 1
True
>>> 1 / golden_ratio == golden_ratio - 1
True
>>> def fibonacci(index: int) -> Expression:
...     """
...     Based on:
...     https://en.wikipedia.org/wiki/Golden_ratio#Relationship_to_Fibonacci_sequence
...     """
...     golden_ratio_power = golden_ratio ** index
...     return ((golden_ratio_power - (-1) ** index / golden_ratio_power)
...             / sqrt(5))
>>> fibonacci(0) == 0
True
>>> fibonacci(1) == 1
True
>>> fibonacci(100) == 354224848179261915075
True

```

Development
-----------

### Bumping version

#### Preparation

Install
[bump2version](https://github.com/c4urself/bump2version#installation).

#### Pre-release

Choose which version number category to bump following [semver
specification](http://semver.org/).

Test bumping version
```bash
bump2version --dry-run --verbose $CATEGORY
```

where `$CATEGORY` is the target version number category name, possible
values are `patch`/`minor`/`major`.

Bump version
```bash
bump2version --verbose $CATEGORY
```

This will set version to `major.minor.patch-alpha`. 

#### Release

Test bumping version
```bash
bump2version --dry-run --verbose release
```

Bump version
```bash
bump2version --verbose release
```

This will set version to `major.minor.patch`.

### Running tests

Install dependencies
```bash
python -m pip install -r requirements-tests.txt
```

Plain
```bash
pytest
```

Inside `Docker` container:
- with `CPython`
  ```bash
  docker-compose --file docker-compose.cpython.yml up
  ```
- with `PyPy`
  ```bash
  docker-compose --file docker-compose.pypy.yml up
  ```

`Bash` script (e.g. can be used in `Git` hooks):
- with `CPython`
  ```bash
  ./run-tests.sh
  ```
  or
  ```bash
  ./run-tests.sh cpython
  ```

- with `PyPy`
  ```bash
  ./run-tests.sh pypy
  ```

`PowerShell` script (e.g. can be used in `Git` hooks):
- with `CPython`
  ```powershell
  .\run-tests.ps1
  ```
  or
  ```powershell
  .\run-tests.ps1 cpython
  ```
- with `PyPy`
  ```powershell
  .\run-tests.ps1 pypy
  ```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/lycantropos/symba/",
    "name": "symba",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "Azat Ibrakov <azatibrakov@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/0d/12/56650f6823fab56168fde366669a1597db77c7a0a3ceccb63a8436d4bfbe/symba-2.2.1.tar.gz",
    "platform": null,
    "description": "symba\n=====\n\n[![](https://github.com/lycantropos/symba/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/lycantropos/symba/actions/workflows/ci.yml \"Github Actions\")\n[![](https://readthedocs.org/projects/symba/badge/?version=latest)](https://symba.readthedocs.io/en/latest \"Documentation\")\n[![](https://codecov.io/gh/lycantropos/symba/branch/master/graph/badge.svg)](https://codecov.io/gh/lycantropos/symba \"Codecov\")\n[![](https://img.shields.io/github/license/lycantropos/symba.svg)](https://github.com/lycantropos/symba/blob/master/LICENSE \"License\")\n[![](https://badge.fury.io/py/symba.svg)](https://badge.fury.io/py/symba \"PyPI\")\n\nIn what follows `python` is an alias for `python3.7` or `pypy3.7`\nor any later version (`python3.8`, `pypy3.8` and so on).\n\nInstallation\n------------\n\nInstall the latest `pip` & `setuptools` packages versions\n```bash\npython -m pip install --upgrade pip setuptools\n```\n\n### User\n\nDownload and install the latest stable version from `PyPI` repository\n```bash\npython -m pip install --upgrade symba\n```\n\n### Developer\n\nDownload the latest version from `GitHub` repository\n```bash\ngit clone https://github.com/lycantropos/symba.git\ncd symba\n```\n\nInstall dependencies\n```bash\npython -m pip install -r requirements.txt\n```\n\nInstall\n```bash\npython setup.py install\n```\n\nUsage\n-----\n```python\n>>> from symba.base import Expression, sqrt\n>>> golden_ratio = (1 + sqrt(5)) / 2\n>>> isinstance(golden_ratio, Expression)\nTrue\n>>> golden_ratio * golden_ratio == golden_ratio + 1\nTrue\n>>> 1 / golden_ratio == golden_ratio - 1\nTrue\n>>> def fibonacci(index: int) -> Expression:\n...     \"\"\"\n...     Based on:\n...     https://en.wikipedia.org/wiki/Golden_ratio#Relationship_to_Fibonacci_sequence\n...     \"\"\"\n...     golden_ratio_power = golden_ratio ** index\n...     return ((golden_ratio_power - (-1) ** index / golden_ratio_power)\n...             / sqrt(5))\n>>> fibonacci(0) == 0\nTrue\n>>> fibonacci(1) == 1\nTrue\n>>> fibonacci(100) == 354224848179261915075\nTrue\n\n```\n\nDevelopment\n-----------\n\n### Bumping version\n\n#### Preparation\n\nInstall\n[bump2version](https://github.com/c4urself/bump2version#installation).\n\n#### Pre-release\n\nChoose which version number category to bump following [semver\nspecification](http://semver.org/).\n\nTest bumping version\n```bash\nbump2version --dry-run --verbose $CATEGORY\n```\n\nwhere `$CATEGORY` is the target version number category name, possible\nvalues are `patch`/`minor`/`major`.\n\nBump version\n```bash\nbump2version --verbose $CATEGORY\n```\n\nThis will set version to `major.minor.patch-alpha`. \n\n#### Release\n\nTest bumping version\n```bash\nbump2version --dry-run --verbose release\n```\n\nBump version\n```bash\nbump2version --verbose release\n```\n\nThis will set version to `major.minor.patch`.\n\n### Running tests\n\nInstall dependencies\n```bash\npython -m pip install -r requirements-tests.txt\n```\n\nPlain\n```bash\npytest\n```\n\nInside `Docker` container:\n- with `CPython`\n  ```bash\n  docker-compose --file docker-compose.cpython.yml up\n  ```\n- with `PyPy`\n  ```bash\n  docker-compose --file docker-compose.pypy.yml up\n  ```\n\n`Bash` script (e.g. can be used in `Git` hooks):\n- with `CPython`\n  ```bash\n  ./run-tests.sh\n  ```\n  or\n  ```bash\n  ./run-tests.sh cpython\n  ```\n\n- with `PyPy`\n  ```bash\n  ./run-tests.sh pypy\n  ```\n\n`PowerShell` script (e.g. can be used in `Git` hooks):\n- with `CPython`\n  ```powershell\n  .\\run-tests.ps1\n  ```\n  or\n  ```powershell\n  .\\run-tests.ps1 cpython\n  ```\n- with `PyPy`\n  ```powershell\n  .\\run-tests.ps1 pypy\n  ```\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2021 Azat Ibrakov  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "",
    "version": "2.2.1",
    "project_urls": {
        "Download": "https://github.com/lycantropos/symba/archive/master.zip",
        "Homepage": "https://github.com/lycantropos/symba/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae0b90775154ab38eed1599d95cdd53f84b6a971f5b5918ab253788f9c01959c",
                "md5": "95ce1d9fa8d5d7116ce9bec57a4289d7",
                "sha256": "77f8ae5517d7e7cfa8b962b9be4fa899d443614867ca4116a6579dada7583b34"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "95ce1d9fa8d5d7116ce9bec57a4289d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 23385,
            "upload_time": "2023-05-12T08:38:35",
            "upload_time_iso_8601": "2023-05-12T08:38:35.836852Z",
            "url": "https://files.pythonhosted.org/packages/ae/0b/90775154ab38eed1599d95cdd53f84b6a971f5b5918ab253788f9c01959c/symba-2.2.1-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cbb40933cfecc9bb8137d90c55b9b1869e1019eb4d75aed31dbb3d4ea55452f",
                "md5": "4d3609f3669e9d2776a6eb8473ff1bb5",
                "sha256": "b4761b579711519060f712ffa82b522222e25412d61af1fb247ab519d4becb06"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d3609f3669e9d2776a6eb8473ff1bb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 20958,
            "upload_time": "2023-05-12T08:38:37",
            "upload_time_iso_8601": "2023-05-12T08:38:37.818673Z",
            "url": "https://files.pythonhosted.org/packages/3c/bb/40933cfecc9bb8137d90c55b9b1869e1019eb4d75aed31dbb3d4ea55452f/symba-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0af46aa25745a10afcde85818fced5e067c6b02609fd8c7df838c3dc802e9e03",
                "md5": "e0b4b8545abbb30f34f528d258fe986d",
                "sha256": "2a24aeaef37155c71de523c363b870b59b390cfe2a052516f6a5af2e342a65ae"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e0b4b8545abbb30f34f528d258fe986d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 21149,
            "upload_time": "2023-05-12T08:38:45",
            "upload_time_iso_8601": "2023-05-12T08:38:45.648651Z",
            "url": "https://files.pythonhosted.org/packages/0a/f4/6aa25745a10afcde85818fced5e067c6b02609fd8c7df838c3dc802e9e03/symba-2.2.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79a9241f3433dbf3d0d54437f3ff4582b4d9480d6412664157d6556e1ad7e030",
                "md5": "96acdd846de93cc3114ef998b009d733",
                "sha256": "7003638e0a3078eb7d25b9f3dceeba7cb7f7aa944fb7170f88efbb1fc79de969"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "96acdd846de93cc3114ef998b009d733",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 30388,
            "upload_time": "2023-05-12T08:38:47",
            "upload_time_iso_8601": "2023-05-12T08:38:47.835816Z",
            "url": "https://files.pythonhosted.org/packages/79/a9/241f3433dbf3d0d54437f3ff4582b4d9480d6412664157d6556e1ad7e030/symba-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48b23f5739b54eb76f163a63910a24209b7d041888ce77bf1df9f1b1b3a75b72",
                "md5": "0654158d23752e4d4eb2413c163ae9a9",
                "sha256": "a2b78d0ce9111990a0139e9e6da72137865e5a3702611f150fb1036d6b9a106a"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0654158d23752e4d4eb2413c163ae9a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 30667,
            "upload_time": "2023-05-12T08:38:51",
            "upload_time_iso_8601": "2023-05-12T08:38:51.436608Z",
            "url": "https://files.pythonhosted.org/packages/48/b2/3f5739b54eb76f163a63910a24209b7d041888ce77bf1df9f1b1b3a75b72/symba-2.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "645bf0979971848f923c6b0b5e90243407183e59b001210a37fc3ada7fad67ba",
                "md5": "049918d768557263fa6ff739bed9f72e",
                "sha256": "111346deeee6dd3e39504e2fcebc3c6b16c47cc6823520c4314d7744965ecf6a"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "049918d768557263fa6ff739bed9f72e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 29991,
            "upload_time": "2023-05-12T08:38:53",
            "upload_time_iso_8601": "2023-05-12T08:38:53.712665Z",
            "url": "https://files.pythonhosted.org/packages/64/5b/f0979971848f923c6b0b5e90243407183e59b001210a37fc3ada7fad67ba/symba-2.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb17338ff9095b307dd54de3cef43b421579c0e41137b3b2dc5632d3868f6000",
                "md5": "e01c91c138ed83254aa9a6b77f2e335f",
                "sha256": "b0fd5ce8126d6e977f269fc621a06b2892d5f4a11e3b15390893814e79492eaf"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e01c91c138ed83254aa9a6b77f2e335f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 30688,
            "upload_time": "2023-05-12T08:38:56",
            "upload_time_iso_8601": "2023-05-12T08:38:56.067113Z",
            "url": "https://files.pythonhosted.org/packages/eb/17/338ff9095b307dd54de3cef43b421579c0e41137b3b2dc5632d3868f6000/symba-2.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b44c7ee0f513b65defed92820d1ec64e89fa8d7e9bbb3df03c679c38e8501cb",
                "md5": "a49a9cdc2ba6be7e11b83535cc0e80b4",
                "sha256": "5d8a57d3362ca3c2e55bbcca84359c7eb3eb27deb0d729d6aed368c9beb18aa7"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a49a9cdc2ba6be7e11b83535cc0e80b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 29958,
            "upload_time": "2023-05-12T08:38:58",
            "upload_time_iso_8601": "2023-05-12T08:38:58.023279Z",
            "url": "https://files.pythonhosted.org/packages/0b/44/c7ee0f513b65defed92820d1ec64e89fa8d7e9bbb3df03c679c38e8501cb/symba-2.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53141a2ad8d7b7621e8c14b2a6fa4bd7f947bc14489a4aa74a8006994b778aa2",
                "md5": "6d7219d8f5c381eb3dea4f21634f7342",
                "sha256": "cb2e061fcdc2a45a27c74b2e563b831159a58a1cdd21d3e28b22a19d4b4e512d"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d7219d8f5c381eb3dea4f21634f7342",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 34719,
            "upload_time": "2023-05-12T08:39:00",
            "upload_time_iso_8601": "2023-05-12T08:39:00.523606Z",
            "url": "https://files.pythonhosted.org/packages/53/14/1a2ad8d7b7621e8c14b2a6fa4bd7f947bc14489a4aa74a8006994b778aa2/symba-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f08dae3112deb9d89eba12c19bcb147cc912ead47821ddc7fc3e7e40496d974",
                "md5": "21d4d436774c8e6bbc7d42035a69661c",
                "sha256": "da6c0f8bff4df329214477a7c3f03c542b8e1195e32bf9b158d90cc7c6a72961"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21d4d436774c8e6bbc7d42035a69661c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 34711,
            "upload_time": "2023-05-12T08:39:02",
            "upload_time_iso_8601": "2023-05-12T08:39:02.416651Z",
            "url": "https://files.pythonhosted.org/packages/4f/08/dae3112deb9d89eba12c19bcb147cc912ead47821ddc7fc3e7e40496d974/symba-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d75639989e8e45e4b2dec09b80a3f6a3c276e2a992cbd33c58b11ff32fcce3f",
                "md5": "680cdf94f09f2a76dfc7a44db2f2071a",
                "sha256": "58578d9c2ec9d7011f2fc64afc14731ec247019343d1899ee0201886146a9ced"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "680cdf94f09f2a76dfc7a44db2f2071a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 24144,
            "upload_time": "2023-05-12T08:39:05",
            "upload_time_iso_8601": "2023-05-12T08:39:05.630940Z",
            "url": "https://files.pythonhosted.org/packages/5d/75/639989e8e45e4b2dec09b80a3f6a3c276e2a992cbd33c58b11ff32fcce3f/symba-2.2.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47df1f67b55c4266b95308aa42c174b486e4557fff97310c76b11d186f55f511",
                "md5": "dfbb9e60558a19daca6def9cf88cec8d",
                "sha256": "7cf8ddfdf3ae3553f9e8d1c8d4a8a66e2ccfd22aa6c820cccbcb939ecabcc659"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dfbb9e60558a19daca6def9cf88cec8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 24393,
            "upload_time": "2023-05-12T08:39:07",
            "upload_time_iso_8601": "2023-05-12T08:39:07.775542Z",
            "url": "https://files.pythonhosted.org/packages/47/df/1f67b55c4266b95308aa42c174b486e4557fff97310c76b11d186f55f511/symba-2.2.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e932ca8fe14cf2ea02c95e4f267f482ed1fdae1ef97b728c70967e3a71666ce",
                "md5": "3ad3264cbaea0dd8aa76e36b1f3dbd7b",
                "sha256": "c6fba71a0a35b30b4d7e218b472940cff32aa7ef29e67e7360225e69991e0eca"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "3ad3264cbaea0dd8aa76e36b1f3dbd7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 23386,
            "upload_time": "2023-05-12T08:39:09",
            "upload_time_iso_8601": "2023-05-12T08:39:09.425248Z",
            "url": "https://files.pythonhosted.org/packages/9e/93/2ca8fe14cf2ea02c95e4f267f482ed1fdae1ef97b728c70967e3a71666ce/symba-2.2.1-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71c82bac9a1a266044178258fbdd0f292103bd4b26af0ee2ac5c8120ca608042",
                "md5": "9c1cf90d2ad18a9733bd059c5fd1933f",
                "sha256": "b7dbc4433908f54d300e1b22b2bfcc74e8a70fc37fa990a059799f46ea8c754b"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c1cf90d2ad18a9733bd059c5fd1933f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 20954,
            "upload_time": "2023-05-12T08:39:11",
            "upload_time_iso_8601": "2023-05-12T08:39:11.130815Z",
            "url": "https://files.pythonhosted.org/packages/71/c8/2bac9a1a266044178258fbdd0f292103bd4b26af0ee2ac5c8120ca608042/symba-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "108ca370205e45bd0faa4589586c320060280607326cb87479f94ac1fbb89512",
                "md5": "e29382a5bae71c6f1651dc172726fa28",
                "sha256": "bda9f9ff5261fa9c75b1f85221346651fea5042787a0a0b2e1a5767d64cba46a"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e29382a5bae71c6f1651dc172726fa28",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 21133,
            "upload_time": "2023-05-12T08:39:12",
            "upload_time_iso_8601": "2023-05-12T08:39:12.595627Z",
            "url": "https://files.pythonhosted.org/packages/10/8c/a370205e45bd0faa4589586c320060280607326cb87479f94ac1fbb89512/symba-2.2.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f23cce91969a5c2f3542b7e07d7d629e8441c494dff82aa1d39b503417069c2",
                "md5": "cefc96a6ede2305a2a87bd32be5180ac",
                "sha256": "b5d9c1fdd1769e9fe473df89db389207662501e51cda19fe4e4e9ff94b478480"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cefc96a6ede2305a2a87bd32be5180ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 30365,
            "upload_time": "2023-05-12T08:39:13",
            "upload_time_iso_8601": "2023-05-12T08:39:13.991461Z",
            "url": "https://files.pythonhosted.org/packages/6f/23/cce91969a5c2f3542b7e07d7d629e8441c494dff82aa1d39b503417069c2/symba-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "715d5d2db26a844d4919291e613874a4c6cab9fcf24d323892fca4002680c3f9",
                "md5": "f78c96e6c0177cb128ab6d1545d96872",
                "sha256": "13c60eb8323a0ca8fecd12d4c07e23d37c8d0fbc62b0e0c366674dd2c1012c9c"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f78c96e6c0177cb128ab6d1545d96872",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 30670,
            "upload_time": "2023-05-12T08:39:15",
            "upload_time_iso_8601": "2023-05-12T08:39:15.968186Z",
            "url": "https://files.pythonhosted.org/packages/71/5d/5d2db26a844d4919291e613874a4c6cab9fcf24d323892fca4002680c3f9/symba-2.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f07275e4afdfc2749e17885b239e54158e6f0c1ab711a8bc8003e0a51a294603",
                "md5": "56e1d1a256508891eef828de761bd7b9",
                "sha256": "96e054eb92297929e6f83bfb003855e076efd36199606a86e6137dc1896e5b24"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "56e1d1a256508891eef828de761bd7b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 30004,
            "upload_time": "2023-05-12T08:39:22",
            "upload_time_iso_8601": "2023-05-12T08:39:22.748061Z",
            "url": "https://files.pythonhosted.org/packages/f0/72/75e4afdfc2749e17885b239e54158e6f0c1ab711a8bc8003e0a51a294603/symba-2.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6207a0b58d1e537630ac9d3f4323aa2d63da56c5e85dd718907fc4ff4366f067",
                "md5": "01d47be277ae21c9fc23002dd0c24fbc",
                "sha256": "ad10bb99944637269ee560475a857b2b90e07a4fe037c3350991023ced99fc46"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "01d47be277ae21c9fc23002dd0c24fbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 30664,
            "upload_time": "2023-05-12T08:39:24",
            "upload_time_iso_8601": "2023-05-12T08:39:24.006196Z",
            "url": "https://files.pythonhosted.org/packages/62/07/a0b58d1e537630ac9d3f4323aa2d63da56c5e85dd718907fc4ff4366f067/symba-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45408a7f3484d78269cbc8af82cf4aae7b0b56e8e1f25b81744b775662e5c390",
                "md5": "3ef6c46dabb156eda5a91e7a6dbcc393",
                "sha256": "8dd0bbe322c1951bebc0bf2fcd9b1b90825acee664f5f326a8ec3f513f40a1b2"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ef6c46dabb156eda5a91e7a6dbcc393",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 29946,
            "upload_time": "2023-05-12T08:39:26",
            "upload_time_iso_8601": "2023-05-12T08:39:26.756521Z",
            "url": "https://files.pythonhosted.org/packages/45/40/8a7f3484d78269cbc8af82cf4aae7b0b56e8e1f25b81744b775662e5c390/symba-2.2.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5012a3791ee12c7f770012de72aeb3aaff4a1325b65db1b15d2c85d356508b09",
                "md5": "0f5096d6c7769ab71f7f5a49df6ced2c",
                "sha256": "64d356632ea66287298774479019ea28d53dc7c200b7423a3a3e29eeba716654"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0f5096d6c7769ab71f7f5a49df6ced2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 35570,
            "upload_time": "2023-05-12T08:39:35",
            "upload_time_iso_8601": "2023-05-12T08:39:35.067513Z",
            "url": "https://files.pythonhosted.org/packages/50/12/a3791ee12c7f770012de72aeb3aaff4a1325b65db1b15d2c85d356508b09/symba-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07b9632f1fa8e08a95208e3b0bb29473f10a8985ac04cba8d3b0f34494d7ce42",
                "md5": "0c885ad8106500d2fb84dc4de3fbb977",
                "sha256": "cfc8c2060375a5451c7221cbc7a5dc69e1d86349ab8279bd52431c9b6daa37b0"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c885ad8106500d2fb84dc4de3fbb977",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 35545,
            "upload_time": "2023-05-12T08:39:37",
            "upload_time_iso_8601": "2023-05-12T08:39:37.149060Z",
            "url": "https://files.pythonhosted.org/packages/07/b9/632f1fa8e08a95208e3b0bb29473f10a8985ac04cba8d3b0f34494d7ce42/symba-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08553a7b3ead5ea0eccbf1bcb734dd5ee1af077b09ac7da1f08cd4c804135f13",
                "md5": "937ef9eca81388133714b1d91634e5db",
                "sha256": "b0817c74ac1109c1a22053ca1591b1b3689649310c011f2f055c34b0c32a938b"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "937ef9eca81388133714b1d91634e5db",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 24140,
            "upload_time": "2023-05-12T08:39:38",
            "upload_time_iso_8601": "2023-05-12T08:39:38.625917Z",
            "url": "https://files.pythonhosted.org/packages/08/55/3a7b3ead5ea0eccbf1bcb734dd5ee1af077b09ac7da1f08cd4c804135f13/symba-2.2.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82c99367f77cbd821ff99031405186a50f003cb3161bba0190607eebe7187ee3",
                "md5": "435f850a2520a1a3fa82ea3d23b0d226",
                "sha256": "7f850e3624aaf87989e91d950a31429b1fafc588dce4310b13d4375bf29f5cdd"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "435f850a2520a1a3fa82ea3d23b0d226",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 24388,
            "upload_time": "2023-05-12T08:39:40",
            "upload_time_iso_8601": "2023-05-12T08:39:40.321893Z",
            "url": "https://files.pythonhosted.org/packages/82/c9/9367f77cbd821ff99031405186a50f003cb3161bba0190607eebe7187ee3/symba-2.2.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9838c35516e9c24f22025cf87bc345c34474fa0dbd5786f04c1c9462a560c3cb",
                "md5": "d73e48c6b1a29598bcdaf64d2d9558a8",
                "sha256": "a09272fdccd58cfe184316bb6c57cc8fa2ea6732e93fdc4cc93e5f2716fd10df"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d73e48c6b1a29598bcdaf64d2d9558a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 20856,
            "upload_time": "2023-05-12T08:39:41",
            "upload_time_iso_8601": "2023-05-12T08:39:41.575755Z",
            "url": "https://files.pythonhosted.org/packages/98/38/c35516e9c24f22025cf87bc345c34474fa0dbd5786f04c1c9462a560c3cb/symba-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c26c302be8bc2297abb56653fd03b0220750125fa956b15e8d609c8461c49731",
                "md5": "85f29a2ab3eceee75a26d087eac295e7",
                "sha256": "f263c02934cd2d0798777ba08eab4385eb4f9d55ae2c0ab751292f1de423d8dd"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "85f29a2ab3eceee75a26d087eac295e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 30330,
            "upload_time": "2023-05-12T08:39:44",
            "upload_time_iso_8601": "2023-05-12T08:39:44.540143Z",
            "url": "https://files.pythonhosted.org/packages/c2/6c/302be8bc2297abb56653fd03b0220750125fa956b15e8d609c8461c49731/symba-2.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d102e47d6e2e7623efa94641032aaf182bd2637317fd0e0012865c45907af288",
                "md5": "895209786d99a9191a093a7e12449e01",
                "sha256": "c6219ad53d475d71e91d7a572bcf37996d94c00edcb5a8f94fd750c09a9b4d09"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "895209786d99a9191a093a7e12449e01",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 30563,
            "upload_time": "2023-05-12T08:39:53",
            "upload_time_iso_8601": "2023-05-12T08:39:53.625493Z",
            "url": "https://files.pythonhosted.org/packages/d1/02/e47d6e2e7623efa94641032aaf182bd2637317fd0e0012865c45907af288/symba-2.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74ed8440d1fce7813d556f942cae2911ab1fb8739b70b8782544f23849a8eba9",
                "md5": "8bb3145f3a093e8c170f0abd365b747d",
                "sha256": "b077771f40a5a1bfe708a4c82ea4a8c213f2a1d9ddb1e81ae1f7ee1d8f25afc2"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8bb3145f3a093e8c170f0abd365b747d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 29898,
            "upload_time": "2023-05-12T08:39:58",
            "upload_time_iso_8601": "2023-05-12T08:39:58.239447Z",
            "url": "https://files.pythonhosted.org/packages/74/ed/8440d1fce7813d556f942cae2911ab1fb8739b70b8782544f23849a8eba9/symba-2.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24295353fc3a84a251836054f7bea66fbe17e9dc0bc3dc509f3ed496b0f3b85b",
                "md5": "54af11cad2b5900d19c3428ac32f520b",
                "sha256": "369aa3129c9b1a9adfa6918d81378e1442dde800d0d12a79d375a9ca9b0cf71e"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "54af11cad2b5900d19c3428ac32f520b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 30454,
            "upload_time": "2023-05-12T08:40:01",
            "upload_time_iso_8601": "2023-05-12T08:40:01.663529Z",
            "url": "https://files.pythonhosted.org/packages/24/29/5353fc3a84a251836054f7bea66fbe17e9dc0bc3dc509f3ed496b0f3b85b/symba-2.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfae631b17a0f5cd07a7509e51635b8550961c083bc2f5870fedc7a2078c7fc7",
                "md5": "50b5c8d004a63c44300929d3288f1966",
                "sha256": "db29121f12f1ba2bbd17821f6e5ba3debb05f8650b6e2ec2b4ff49afbab449a6"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50b5c8d004a63c44300929d3288f1966",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 29847,
            "upload_time": "2023-05-12T08:40:03",
            "upload_time_iso_8601": "2023-05-12T08:40:03.171736Z",
            "url": "https://files.pythonhosted.org/packages/df/ae/631b17a0f5cd07a7509e51635b8550961c083bc2f5870fedc7a2078c7fc7/symba-2.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b76dec90af4cd608f617dc848b4df3cf0bc1ae26119b47a0925f408b76490e2",
                "md5": "72a631a7d5bfb812f6f2bf94d5ed9aac",
                "sha256": "de75b924d4552f0c9161ea5ab4e18f3e86d6f7abebeac394996cb65015e91045"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "72a631a7d5bfb812f6f2bf94d5ed9aac",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 35235,
            "upload_time": "2023-05-12T08:40:04",
            "upload_time_iso_8601": "2023-05-12T08:40:04.682220Z",
            "url": "https://files.pythonhosted.org/packages/8b/76/dec90af4cd608f617dc848b4df3cf0bc1ae26119b47a0925f408b76490e2/symba-2.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "446799d2767725277e1bee0a4ccce27752249f488468bd74e1796f704078c551",
                "md5": "28a148695ea7bd96f56a4c8df2cbee02",
                "sha256": "490c08c7f9b76f81ad36b949690841ac758555759072019adcd9388b1ae3212b"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "28a148695ea7bd96f56a4c8df2cbee02",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 35214,
            "upload_time": "2023-05-12T08:40:06",
            "upload_time_iso_8601": "2023-05-12T08:40:06.173369Z",
            "url": "https://files.pythonhosted.org/packages/44/67/99d2767725277e1bee0a4ccce27752249f488468bd74e1796f704078c551/symba-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f05ce86c171e16bd5aecb94c7efc068345348871d40643b0dea02ee23491008",
                "md5": "b7d46ad097078fb9560e1dd336f7689c",
                "sha256": "c413de06eb09cc5f48b4a5e056ef320d0caf48565b2c359c60c160b9ef0c2932"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "b7d46ad097078fb9560e1dd336f7689c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 24150,
            "upload_time": "2023-05-12T08:40:08",
            "upload_time_iso_8601": "2023-05-12T08:40:08.768834Z",
            "url": "https://files.pythonhosted.org/packages/8f/05/ce86c171e16bd5aecb94c7efc068345348871d40643b0dea02ee23491008/symba-2.2.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e4a8f338d482e6dd4c7634f437b38fa6c072f62016b422cf8cfc2c9c766861b",
                "md5": "0297b92d152ca8625ac5f56e013afe67",
                "sha256": "3698c8537bb52034e54c2f93e404480708b28bf6457ed987ceb65b0243832e69"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0297b92d152ca8625ac5f56e013afe67",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 24364,
            "upload_time": "2023-05-12T08:40:11",
            "upload_time_iso_8601": "2023-05-12T08:40:11.699580Z",
            "url": "https://files.pythonhosted.org/packages/0e/4a/8f338d482e6dd4c7634f437b38fa6c072f62016b422cf8cfc2c9c766861b/symba-2.2.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "321684ac92f259cc95645c7cec27eec3ab8574a7c1b783b5a6b226cd1cbff8a1",
                "md5": "0f854a47494aa359187dac40b005179d",
                "sha256": "68066791f40e39c7fdb7b6ca329ff0c46448538a7713cd106d332cad6b4d33dd"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "0f854a47494aa359187dac40b005179d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 23379,
            "upload_time": "2023-05-12T08:40:15",
            "upload_time_iso_8601": "2023-05-12T08:40:15.153060Z",
            "url": "https://files.pythonhosted.org/packages/32/16/84ac92f259cc95645c7cec27eec3ab8574a7c1b783b5a6b226cd1cbff8a1/symba-2.2.1-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8c01824b01ad16acc146f25072d95af49a5590dd31a8f1397be7e5e52111b5d",
                "md5": "e2d10609e92eade56f51cb5014cb7ff1",
                "sha256": "d25b8cce3beb89c531518ba3a9caffdf24a4214b2e99e2bf94ab37ac7bf2d2a5"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2d10609e92eade56f51cb5014cb7ff1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 20948,
            "upload_time": "2023-05-12T08:40:17",
            "upload_time_iso_8601": "2023-05-12T08:40:17.583667Z",
            "url": "https://files.pythonhosted.org/packages/c8/c0/1824b01ad16acc146f25072d95af49a5590dd31a8f1397be7e5e52111b5d/symba-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a07aae775154b02007aebaa31e3ada82dbe2cafde5d3693dd099b0702c02af72",
                "md5": "9558dadbcba8c0457537d8fa528c507f",
                "sha256": "5b9891c824c32baeb573628209b9fb0ba0f718a640dff7a26e9a39aa5aa07305"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9558dadbcba8c0457537d8fa528c507f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 21130,
            "upload_time": "2023-05-12T08:40:28",
            "upload_time_iso_8601": "2023-05-12T08:40:28.555656Z",
            "url": "https://files.pythonhosted.org/packages/a0/7a/ae775154b02007aebaa31e3ada82dbe2cafde5d3693dd099b0702c02af72/symba-2.2.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3c7da112cd0698dbea9ef998912cf0726c5f612d000b5e280335f53d624c3c0",
                "md5": "aa244b41fefe3b08f667ff2a5a76fc8f",
                "sha256": "3b427810f94daa927e1046a384dcd0e802bb2ee0869088f93ccabbd0ae320e66"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aa244b41fefe3b08f667ff2a5a76fc8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 31386,
            "upload_time": "2023-05-12T08:40:30",
            "upload_time_iso_8601": "2023-05-12T08:40:30.959182Z",
            "url": "https://files.pythonhosted.org/packages/d3/c7/da112cd0698dbea9ef998912cf0726c5f612d000b5e280335f53d624c3c0/symba-2.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "902eec10e903569d1c2981188dafac3d8af92107190fffdb1dee895ff97d60f7",
                "md5": "f063d10e26d457f4057d21044e266cf0",
                "sha256": "2ac42f717aac87a270288655cefb2779172e0608da2538f0423b0936364e594c"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f063d10e26d457f4057d21044e266cf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 31698,
            "upload_time": "2023-05-12T08:40:32",
            "upload_time_iso_8601": "2023-05-12T08:40:32.811782Z",
            "url": "https://files.pythonhosted.org/packages/90/2e/ec10e903569d1c2981188dafac3d8af92107190fffdb1dee895ff97d60f7/symba-2.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e970fb4daa40ca89f8eb620834fe4b7a784c97868500fb123f52698e74eacaa",
                "md5": "4c668fb29a61c72b34de5f3b414ef17b",
                "sha256": "08a95d2dca6a5a179dea8c001cb22c73df1b980d11ea5be0e7cc8e2aaf9b7dc4"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4c668fb29a61c72b34de5f3b414ef17b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 31000,
            "upload_time": "2023-05-12T08:40:34",
            "upload_time_iso_8601": "2023-05-12T08:40:34.228588Z",
            "url": "https://files.pythonhosted.org/packages/1e/97/0fb4daa40ca89f8eb620834fe4b7a784c97868500fb123f52698e74eacaa/symba-2.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eeb9e30382522042c628aa24dd1470f69339d02bb532daaa6c30331f1711e4e9",
                "md5": "b1e700374c47ed5c032296386d95b5b8",
                "sha256": "447372848a351e0fbf9c6a635b7cb74b8ff6cbc86a3b8ab61b1fd96f6d1911a3"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b1e700374c47ed5c032296386d95b5b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 31689,
            "upload_time": "2023-05-12T08:40:37",
            "upload_time_iso_8601": "2023-05-12T08:40:37.859515Z",
            "url": "https://files.pythonhosted.org/packages/ee/b9/e30382522042c628aa24dd1470f69339d02bb532daaa6c30331f1711e4e9/symba-2.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a67ca6e4a222f1b6d2631fc1c51df45f88b38b3dafa7bca11e2d0b92f0671e66",
                "md5": "21ccfba81c9c80a38608ad1fbc4e9bfb",
                "sha256": "c3a0b7c3cbd2bde654a46fde6642beee482997ab2120541df2a793cf1dc579c5"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21ccfba81c9c80a38608ad1fbc4e9bfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 31001,
            "upload_time": "2023-05-12T08:40:40",
            "upload_time_iso_8601": "2023-05-12T08:40:40.888262Z",
            "url": "https://files.pythonhosted.org/packages/a6/7c/a6e4a222f1b6d2631fc1c51df45f88b38b3dafa7bca11e2d0b92f0671e66/symba-2.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d87ec1497700d5aa8f77816d67d12cafd923907ab67cdec12cc1ff1b4f0668eb",
                "md5": "73a959bbc300f2d0b091ebc26e6c1980",
                "sha256": "f6fe374b12bf02b5f3ad2757546ef127959eab1c7d19dcfd61c08c1b3e08ca10"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "73a959bbc300f2d0b091ebc26e6c1980",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 35619,
            "upload_time": "2023-05-12T08:40:43",
            "upload_time_iso_8601": "2023-05-12T08:40:43.739197Z",
            "url": "https://files.pythonhosted.org/packages/d8/7e/c1497700d5aa8f77816d67d12cafd923907ab67cdec12cc1ff1b4f0668eb/symba-2.2.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be0055063d9eaaf3adee006b0582a63aaa4740c0cb3219b7957764e0ab2e0619",
                "md5": "b12ba6ee3ee5818f45476b6206a27485",
                "sha256": "c6f903a1290dc61bfc45ce240e1655cabb68063b5a494269d53104ea499e987a"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b12ba6ee3ee5818f45476b6206a27485",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 35661,
            "upload_time": "2023-05-12T08:40:52",
            "upload_time_iso_8601": "2023-05-12T08:40:52.237594Z",
            "url": "https://files.pythonhosted.org/packages/be/00/55063d9eaaf3adee006b0582a63aaa4740c0cb3219b7957764e0ab2e0619/symba-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13fc8201ae6ebaf4091bd677041c2bba83745b8411459b673c793c6dc982ce9e",
                "md5": "212b2dd89b5db2e9689169d6741f1cab",
                "sha256": "da36b779b507d8cca275310803def277c7cf09b074d473653d21bbd1c8db4738"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "212b2dd89b5db2e9689169d6741f1cab",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 24137,
            "upload_time": "2023-05-12T08:41:08",
            "upload_time_iso_8601": "2023-05-12T08:41:08.678745Z",
            "url": "https://files.pythonhosted.org/packages/13/fc/8201ae6ebaf4091bd677041c2bba83745b8411459b673c793c6dc982ce9e/symba-2.2.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a462c5ba4bbac33bc584e241b08ae9de75d30282e4981d53c47430d38852f336",
                "md5": "33ab6cb88937111a1546f1d391a30bf2",
                "sha256": "7d09935702115302de1301996812e30c4b214341676267c1b1dbbc8315b4a724"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "33ab6cb88937111a1546f1d391a30bf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 24383,
            "upload_time": "2023-05-12T08:41:17",
            "upload_time_iso_8601": "2023-05-12T08:41:17.686862Z",
            "url": "https://files.pythonhosted.org/packages/a4/62/c5ba4bbac33bc584e241b08ae9de75d30282e4981d53c47430d38852f336/symba-2.2.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d94e63aad271d96dd6a8695dc598442cfe970348c609b758cff5ddb39fbf3667",
                "md5": "5824c33de4c34e5a360951e23949c4ff",
                "sha256": "5d6ef4ccc067300aa10ada99f614d44c743217dfa73d27a468174750570aacda"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "5824c33de4c34e5a360951e23949c4ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 23375,
            "upload_time": "2023-05-12T08:41:21",
            "upload_time_iso_8601": "2023-05-12T08:41:21.479818Z",
            "url": "https://files.pythonhosted.org/packages/d9/4e/63aad271d96dd6a8695dc598442cfe970348c609b758cff5ddb39fbf3667/symba-2.2.1-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08a02a06ec7afb04d989d3175d96e1d3adba2c63db8b06cd595920d7e874773e",
                "md5": "5e9656ee1cca7cc285be0354e01fd4ad",
                "sha256": "8b4670d46a6c6a9551102d46ddf347002c63c39e6def75161153fa9d2ea913dc"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e9656ee1cca7cc285be0354e01fd4ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 20949,
            "upload_time": "2023-05-12T08:41:27",
            "upload_time_iso_8601": "2023-05-12T08:41:27.575783Z",
            "url": "https://files.pythonhosted.org/packages/08/a0/2a06ec7afb04d989d3175d96e1d3adba2c63db8b06cd595920d7e874773e/symba-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad94a78f203add872d265c2ec73ca3059ac59fc6308fe4488b56e759396c980d",
                "md5": "41a10bbe008171a3107d9ff919533c04",
                "sha256": "6faa7f799b789f60097563ce61d08abf9c8914a102251021d8a070819abfd814"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "41a10bbe008171a3107d9ff919533c04",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 21126,
            "upload_time": "2023-05-12T08:41:30",
            "upload_time_iso_8601": "2023-05-12T08:41:30.285627Z",
            "url": "https://files.pythonhosted.org/packages/ad/94/a78f203add872d265c2ec73ca3059ac59fc6308fe4488b56e759396c980d/symba-2.2.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cef28a748c0b259aa9d3ee1d3738f7ad9ec2f0d617817ac31708f1accd42339b",
                "md5": "b11e4442726913e04ba5c22ab6d00dec",
                "sha256": "61e094078a8f1251835679ea3e9a41a535de52e465a4e59e625a0ef8b216b45e"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b11e4442726913e04ba5c22ab6d00dec",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 30240,
            "upload_time": "2023-05-12T08:41:34",
            "upload_time_iso_8601": "2023-05-12T08:41:34.764050Z",
            "url": "https://files.pythonhosted.org/packages/ce/f2/8a748c0b259aa9d3ee1d3738f7ad9ec2f0d617817ac31708f1accd42339b/symba-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8854e01aa8a6e0ebabf312b570e8bd6edba6d091446b56fafb12264f5c75722d",
                "md5": "d2edf415c481b612861a694203caf2e0",
                "sha256": "7f1423fa59a35199a43456d53ebe6f70dd41195adc63c271993fe12cb41bd506"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d2edf415c481b612861a694203caf2e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 30527,
            "upload_time": "2023-05-12T08:41:36",
            "upload_time_iso_8601": "2023-05-12T08:41:36.759666Z",
            "url": "https://files.pythonhosted.org/packages/88/54/e01aa8a6e0ebabf312b570e8bd6edba6d091446b56fafb12264f5c75722d/symba-2.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "977979287d6d4668f42ce300370bef9be2fae26c6fba82db8dd94844642adc25",
                "md5": "a6d6f60bd8f31bee87906751647de456",
                "sha256": "6ee6cbee03e3312abf814928f38e43cf5da1b536e4b476e15f4a39ae177e4d87"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a6d6f60bd8f31bee87906751647de456",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 29848,
            "upload_time": "2023-05-12T08:41:38",
            "upload_time_iso_8601": "2023-05-12T08:41:38.728890Z",
            "url": "https://files.pythonhosted.org/packages/97/79/79287d6d4668f42ce300370bef9be2fae26c6fba82db8dd94844642adc25/symba-2.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ff56e5fff8a02610b03f13e846b73a36807d43d846b6203a8c15986d5656953",
                "md5": "1ab9f2f2f1afb235e197d95b631ae5c7",
                "sha256": "b8cab528a4d60cdd9d5c0e215c150cb82fbb2c61ecefe72fd39a91d9000803de"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1ab9f2f2f1afb235e197d95b631ae5c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 30536,
            "upload_time": "2023-05-12T08:41:40",
            "upload_time_iso_8601": "2023-05-12T08:41:40.340934Z",
            "url": "https://files.pythonhosted.org/packages/0f/f5/6e5fff8a02610b03f13e846b73a36807d43d846b6203a8c15986d5656953/symba-2.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54ab3a027c72137f05b93b2ddf4a9c1282e2df95a7e42d49453cc5445b8b1819",
                "md5": "f0fc1a79251bf924cce174f25e69973a",
                "sha256": "c0667fa8641b29ffb6e0cdd44b22bf0df59cc64fb84f1e0333c4260e13051f8d"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0fc1a79251bf924cce174f25e69973a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 29797,
            "upload_time": "2023-05-12T08:41:41",
            "upload_time_iso_8601": "2023-05-12T08:41:41.851781Z",
            "url": "https://files.pythonhosted.org/packages/54/ab/3a027c72137f05b93b2ddf4a9c1282e2df95a7e42d49453cc5445b8b1819/symba-2.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c4a020696cb06a7937d8093baec46f0a99528daea668c3cb260bdb730aa492a",
                "md5": "b981602e1c2adb778847130cafd9506e",
                "sha256": "d30e7b000afd9dbd73e76746823f40302651b55e35b361616b5c7da8d4c3d2e9"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b981602e1c2adb778847130cafd9506e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 34532,
            "upload_time": "2023-05-12T08:41:43",
            "upload_time_iso_8601": "2023-05-12T08:41:43.746608Z",
            "url": "https://files.pythonhosted.org/packages/4c/4a/020696cb06a7937d8093baec46f0a99528daea668c3cb260bdb730aa492a/symba-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "142c477add2bece4869bb8e0c41b919e9775a6314e4a6bdaf168ff9ef4ebb7dc",
                "md5": "1b55971c8c02ab12ff1dd95e21b9e7c7",
                "sha256": "b58b8b1ee321298410e4842ab208af5ab2a245e52f3c5a923a5d3b24fb402ec3"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b55971c8c02ab12ff1dd95e21b9e7c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 34520,
            "upload_time": "2023-05-12T08:41:45",
            "upload_time_iso_8601": "2023-05-12T08:41:45.555580Z",
            "url": "https://files.pythonhosted.org/packages/14/2c/477add2bece4869bb8e0c41b919e9775a6314e4a6bdaf168ff9ef4ebb7dc/symba-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8c8d201b4cf0d1aea701530c554da9aa9a624bda85c3e334e5c0139da2ac147",
                "md5": "4ad30ca8a995b77636b8e589b6ea66e3",
                "sha256": "c76f53972e0fea0336c1050d35e9d78edcff042492a74301787305a9327b8247"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "4ad30ca8a995b77636b8e589b6ea66e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 24139,
            "upload_time": "2023-05-12T08:41:47",
            "upload_time_iso_8601": "2023-05-12T08:41:47.586628Z",
            "url": "https://files.pythonhosted.org/packages/f8/c8/d201b4cf0d1aea701530c554da9aa9a624bda85c3e334e5c0139da2ac147/symba-2.2.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4e1e79586c528678c798e957f10a93ed6ce03a17b40a50b30f24868421444ea",
                "md5": "d74658018fc11c233b21b47e901f662a",
                "sha256": "c9c4298ecdb718ed415ef6b037545a42cd842a244501bbd6d742ef933012f7d0"
            },
            "downloads": -1,
            "filename": "symba-2.2.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d74658018fc11c233b21b47e901f662a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 24390,
            "upload_time": "2023-05-12T08:41:49",
            "upload_time_iso_8601": "2023-05-12T08:41:49.049988Z",
            "url": "https://files.pythonhosted.org/packages/e4/e1/e79586c528678c798e957f10a93ed6ce03a17b40a50b30f24868421444ea/symba-2.2.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d1256650f6823fab56168fde366669a1597db77c7a0a3ceccb63a8436d4bfbe",
                "md5": "fafd7d8739ce55546859439ae3624697",
                "sha256": "10dc78f6d4c409dc05a6106b87d26487ff75bcd0404de0d41fc42c969b3669ab"
            },
            "downloads": -1,
            "filename": "symba-2.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "fafd7d8739ce55546859439ae3624697",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 18633,
            "upload_time": "2023-05-12T08:41:51",
            "upload_time_iso_8601": "2023-05-12T08:41:51.212748Z",
            "url": "https://files.pythonhosted.org/packages/0d/12/56650f6823fab56168fde366669a1597db77c7a0a3ceccb63a8436d4bfbe/symba-2.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-12 08:41:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lycantropos",
    "github_project": "symba",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "symba"
}
        
Elapsed time: 0.07456s