pyopal


Namepyopal JSON
Version 0.5.2 PyPI version JSON
download
home_pagehttps://github.com/althonos/pyopal
SummaryCython bindings and Python interface to Opal, a SIMD-accelerated pairwise aligner.
upload_time2024-02-28 00:29:46
maintainer
docs_urlNone
authorMartin Larralde
requires_python>=3.5
licenseMIT
keywords bioinformatics pairwise sequence alignment opal
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 🐍🌈🪨 PyOpal [![Stars](https://img.shields.io/github/stars/althonos/pyopal.svg?style=social&maxAge=3600&label=Star)](https://github.com/althonos/pyopal/stargazers)

*[Cython](https://cython.org/) bindings and Python interface to [Opal](https://github.com/Martinsos/opal), a SIMD-accelerated database search aligner.*

[![Actions](https://img.shields.io/github/actions/workflow/status/althonos/pyopal/test.yml?branch=main&logo=github&style=flat-square&maxAge=300)](https://github.com/althonos/pyopal/actions)
[![Coverage](https://img.shields.io/codecov/c/gh/althonos/pyopal?style=flat-square&maxAge=3600&logo=codecov)](https://codecov.io/gh/althonos/pyopal/)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&maxAge=2678400)](https://choosealicense.com/licenses/mit/)
[![PyPI](https://img.shields.io/pypi/v/pyopal.svg?style=flat-square&maxAge=3600&logo=PyPI)](https://pypi.org/project/pyopal)
[![Bioconda](https://img.shields.io/conda/vn/bioconda/pyopal?style=flat-square&maxAge=3600&logo=anaconda)](https://anaconda.org/bioconda/pyopal)
[![AUR](https://img.shields.io/aur/version/python-pyopal?logo=archlinux&style=flat-square&maxAge=3600)](https://aur.archlinux.org/packages/python-pyopal)
[![Wheel](https://img.shields.io/pypi/wheel/pyopal.svg?style=flat-square&maxAge=3600)](https://pypi.org/project/pyopal/#files)
[![Python Versions](https://img.shields.io/pypi/pyversions/pyopal.svg?style=flat-square&maxAge=600&logo=python)](https://pypi.org/project/pyopal/#files)
[![Python Implementations](https://img.shields.io/pypi/implementation/pyopal.svg?style=flat-square&maxAge=600&label=impl)](https://pypi.org/project/pyopal/#files)
[![Source](https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/pyopal/)
[![Mirror](https://img.shields.io/badge/mirror-EMBL-009f4d?style=flat-square&maxAge=2678400)](https://git.embl.de/larralde/pyopal/)
[![Issues](https://img.shields.io/github/issues/althonos/pyopal.svg?style=flat-square&maxAge=600)](https://github.com/althonos/pyopal/issues)
[![Docs](https://img.shields.io/readthedocs/pyopal/latest?style=flat-square&maxAge=600)](https://pyopal.readthedocs.io)
[![Changelog](https://img.shields.io/badge/keep%20a-changelog-8A0707.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/pyopal/blob/main/CHANGELOG.md)
[![Downloads](https://img.shields.io/pypi/dm/pyopal?style=flat-square&color=303f9f&maxAge=86400&label=downloads)](https://pepy.tech/project/pyopal)


## 🗺️ Overview

[Opal](https://github.com/Martinsos/opal) is a sequence aligner enabling fast
sequence similarity search using either of the Smith-Waterman, semi-global or
Needleman-Wunsch algorithms. It is used part of the SW#db method[\[1\]](#ref1)
to align a query sequence to multiple database sequences on CPU, using 
the multi-sequence vectorization method described in SWIPE[\[2\]](#ref2)

PyOpal is a Python module that provides bindings to [Opal](https://github.com/Martinsos/opal)
using [Cython](https://cython.org/). It implements a user-friendly, Pythonic
interface to query a database of sequences and access the search results. It
interacts with the Opal interface rather than with the CLI, which has the
following advantages:

- **no binary dependency**: PyOpal is distributed as a Python package, so
  you can add it as a dependency to your project, and stop worrying about the
  Opal binary being present on the end-user machine.
- **no intermediate files**: Everything happens in memory, in a Python object
  you control, so you don't have to invoke the Opal CLI using a sub-process
  and temporary files.
- **better portability**: Opal uses SIMD to accelerate alignment scoring, but
  doesn't support dynamic dispatch, so it has to be compiled on the local
  machine to be able to use the full capabilities of the local CPU. PyOpal
  ships several versions of Opal instead, each compiled with different target
  features, and selects the best one for the local platform at runtime.
- **wider platform support**: The Opal code has been backported to work on SSE2
  rather than SSE4.1, allowing PyOpal to run on older x86 CPUs (all x86 CPUs
  support it since 2003). In addition, Armv7 and Aarch64 CPUs are also
  supported if they implement NEON extensions. Finally, the C++ code of Opal
  has been modified to compile on Windows.

## 🔧 Installing

PyOpal is available for all modern versions (3.6+), optionally depending on
the lightweight Python package [`archspec`](https://pypi.org/project/archspec)
for runtime CPU feature detection.

It can be installed directly from [PyPI](https://pypi.org/project/pyopal/),
which hosts some pre-built x86-64 wheels for Linux, MacOS, and Windows,
Aarch64 wheels for Linux and MacOS, as well as the code required to 
compile from source with Cython:
```console
$ pip install pyopal
```

Otherwise, PyOpal is also available as a [Bioconda](https://bioconda.github.io/)
package:
```console
$ conda install -c bioconda pyopal
```

Check the [*install* page](https://pyopal.readthedocs.io/en/stable/install.html)
of the documentation for other ways to install PyOpal on your machine.

## 💡 Example

All classes are imported in the main namespace `pyopal`:
```python
import pyopal
```

`pyopal` can work with sequences passed as Python strings, 
as well as with ASCII strings in `bytes` objects:
```python
query = "MAGFLKVVQLLAKYGSKAVQWAWANKGKILDWLNAGQAIDWVVSKIKQILGIK"
database = [
    "MESILDLQELETSEEESALMAASTVSNNC",
    "MKKAVIVENKGCATCSIGAACLVDGPIPDFEIAGATGLFGLWG",
    "MAGFLKVVQILAKYGSKAVQWAWANKGKILDWINAGQAIDWVVEKIKQILGIK",
    "MTQIKVPTALIASVHGEGQHLFEPMAARCTCTTIISSSSTF",
]
```

If you plan to reuse the database across several queries, you can store it in 
a [`Database`](https://pyopal.readthedocs.io/en/stable/api/database.html#pyopal.Database), 
which will keep sequences encoded according to 
an [`Alphabet`](https://pyopal.readthedocs.io/en/stable/api/alphabet.html#pyopal.Alphabet):

```python
database = pyopal.Database(database)
```

The top-level function `pyopal.align` can be used to align a query
sequence against a database, using multithreading to process chunks
of the database in parallel:
```python
for result in pyopal.align(query, database):
    print(result.score, result.target_index, database[result.target_index])
```

See the [API documentation](https://pyopal.readthedocs.io/en/stable/api/index.html) 
for more examples, including how to use the internal API, and detailed 
reference of the parameters and result types.

## 🧶 Thread-safety

`Database` objects are thread safe through a
[C++17 read/write lock](https://en.cppreference.com/w/cpp/thread/shared_mutex)
that prevents modification while the database is searched. In addition, the
`Aligner.align`  method is re-entrant and can be safely used to query the
same database in parallel with different queries across different threads:

```python
import multiprocessing.pool
import pyopal
import Bio.SeqIO

queries = [
    "MEQQIELDVLEISDLIAGAGENDDLAQVMAASCTTSSVSTSSSSSSS",
    "MTQIKVPTALIASVHGEGQHLFEPMAARCTCTTIISSSSTF",
    "MGAIAKLVAKFGWPIVKKYYKQIMQFIGEGWAINKIIDWIKKHI",
    "MGPVVVFDCMTADFLNDDPNNAELSALEMEELESWGAWDGEATS",
]

database = pyopal.Database([
    str(record.seq)
    for record in Bio.SeqIO.parse("vendor/opal/test_data/db/uniprot_sprot12071.fasta", "fasta")
])

aligner = pyopal.Aligner()
with multiprocessing.pool.ThreadPool() as pool:
    hits = dict(pool.map(lambda q: (q, aligner.align(q, database)), queries))
```

<!-- ## ⏱️ Benchmarks -->


## 💭 Feedback

### ⚠️ Issue Tracker

Found a bug ? Have an enhancement request ? Head over to the [GitHub issue tracker](https://github.com/althonos/pyopal/issues)
if you need to report or ask something. If you are filing in on a bug,
please include as much information as you can about the issue, and try to
recreate the same bug in a simple, easily reproducible situation.


### 🏗️ Contributing

Contributions are more than welcome! See
[`CONTRIBUTING.md`](https://github.com/althonos/pyopal/blob/main/CONTRIBUTING.md)
for more details.


## 📋 Changelog

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
and provides a [changelog](https://github.com/althonos/pyopal/blob/main/CHANGELOG.md)
in the [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) format.


## ⚖️ License

This library is provided under the [MIT License](https://choosealicense.com/licenses/mit/).
Opal is developed by [Martin Šošić](https://github.com/Martinsos) and is distributed under the
terms of the MIT License as well. See `vendor/opal/LICENSE` for more information.

*This project is in no way not affiliated, sponsored, or otherwise endorsed
by the [Opal authors](https://github.com/Martinsos). It was developed
by [Martin Larralde](https://github.com/althonos/) during his PhD project
at the [European Molecular Biology Laboratory](https://www.embl.de/) in
the [Zeller team](https://github.com/zellerlab).*


## 📚 References

- <a id="ref1">\[1\]</a> Korpar Matija, Martin Šošić, Dino Blažeka, Mile Šikić. SW#db: ‘GPU-Accelerated Exact Sequence Similarity Database Search’. PLoS One. 2015 Dec 31;10(12):e0145857. [doi:10.1371/journal.pone.0145857](https://doi.org/10.1371/journal.pone.0145857). [PMID:26719890](https://pubmed.ncbi.nlm.nih.gov/26719890). [PMC4699916](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4699916/).
- <a id="ref2">\[2\]</a> Rognes Torbjørn. Faster Smith-Waterman database searches with inter-sequence SIMD parallelisation. BMC Bioinformatics. 2011 Jun 1;12:221. [doi:10.1186/1471-2105-12-221](https://doi.org/10.1186/1471-2105-12-221). [PMID:21631914](https://pubmed.ncbi.nlm.nih.gov/21631914/).[PMC3120707](http://www.ncbi.nlm.nih.gov/pmc/articles/pmc3120707/).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/althonos/pyopal",
    "name": "pyopal",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "",
    "keywords": "bioinformatics,pairwise,sequence,alignment,opal",
    "author": "Martin Larralde",
    "author_email": "martin.larralde@embl.de",
    "download_url": "https://files.pythonhosted.org/packages/db/ec/109a3c6cc6215ba21fece84470034263439fe289cd50a3e574a42c03f10d/pyopal-0.5.2.tar.gz",
    "platform": "any",
    "description": "# \ud83d\udc0d\ud83c\udf08\ud83e\udea8 PyOpal [![Stars](https://img.shields.io/github/stars/althonos/pyopal.svg?style=social&maxAge=3600&label=Star)](https://github.com/althonos/pyopal/stargazers)\n\n*[Cython](https://cython.org/) bindings and Python interface to [Opal](https://github.com/Martinsos/opal), a SIMD-accelerated database search aligner.*\n\n[![Actions](https://img.shields.io/github/actions/workflow/status/althonos/pyopal/test.yml?branch=main&logo=github&style=flat-square&maxAge=300)](https://github.com/althonos/pyopal/actions)\n[![Coverage](https://img.shields.io/codecov/c/gh/althonos/pyopal?style=flat-square&maxAge=3600&logo=codecov)](https://codecov.io/gh/althonos/pyopal/)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&maxAge=2678400)](https://choosealicense.com/licenses/mit/)\n[![PyPI](https://img.shields.io/pypi/v/pyopal.svg?style=flat-square&maxAge=3600&logo=PyPI)](https://pypi.org/project/pyopal)\n[![Bioconda](https://img.shields.io/conda/vn/bioconda/pyopal?style=flat-square&maxAge=3600&logo=anaconda)](https://anaconda.org/bioconda/pyopal)\n[![AUR](https://img.shields.io/aur/version/python-pyopal?logo=archlinux&style=flat-square&maxAge=3600)](https://aur.archlinux.org/packages/python-pyopal)\n[![Wheel](https://img.shields.io/pypi/wheel/pyopal.svg?style=flat-square&maxAge=3600)](https://pypi.org/project/pyopal/#files)\n[![Python Versions](https://img.shields.io/pypi/pyversions/pyopal.svg?style=flat-square&maxAge=600&logo=python)](https://pypi.org/project/pyopal/#files)\n[![Python Implementations](https://img.shields.io/pypi/implementation/pyopal.svg?style=flat-square&maxAge=600&label=impl)](https://pypi.org/project/pyopal/#files)\n[![Source](https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/pyopal/)\n[![Mirror](https://img.shields.io/badge/mirror-EMBL-009f4d?style=flat-square&maxAge=2678400)](https://git.embl.de/larralde/pyopal/)\n[![Issues](https://img.shields.io/github/issues/althonos/pyopal.svg?style=flat-square&maxAge=600)](https://github.com/althonos/pyopal/issues)\n[![Docs](https://img.shields.io/readthedocs/pyopal/latest?style=flat-square&maxAge=600)](https://pyopal.readthedocs.io)\n[![Changelog](https://img.shields.io/badge/keep%20a-changelog-8A0707.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/pyopal/blob/main/CHANGELOG.md)\n[![Downloads](https://img.shields.io/pypi/dm/pyopal?style=flat-square&color=303f9f&maxAge=86400&label=downloads)](https://pepy.tech/project/pyopal)\n\n\n## \ud83d\uddfa\ufe0f Overview\n\n[Opal](https://github.com/Martinsos/opal) is a sequence aligner enabling fast\nsequence similarity search using either of the Smith-Waterman, semi-global or\nNeedleman-Wunsch algorithms. It is used part of the SW#db method[\\[1\\]](#ref1)\nto align a query sequence to multiple database sequences on CPU, using \nthe multi-sequence vectorization method described in SWIPE[\\[2\\]](#ref2)\n\nPyOpal is a Python module that provides bindings to [Opal](https://github.com/Martinsos/opal)\nusing [Cython](https://cython.org/). It implements a user-friendly, Pythonic\ninterface to query a database of sequences and access the search results. It\ninteracts with the Opal interface rather than with the CLI, which has the\nfollowing advantages:\n\n- **no binary dependency**: PyOpal is distributed as a Python package, so\n  you can add it as a dependency to your project, and stop worrying about the\n  Opal binary being present on the end-user machine.\n- **no intermediate files**: Everything happens in memory, in a Python object\n  you control, so you don't have to invoke the Opal CLI using a sub-process\n  and temporary files.\n- **better portability**: Opal uses SIMD to accelerate alignment scoring, but\n  doesn't support dynamic dispatch, so it has to be compiled on the local\n  machine to be able to use the full capabilities of the local CPU. PyOpal\n  ships several versions of Opal instead, each compiled with different target\n  features, and selects the best one for the local platform at runtime.\n- **wider platform support**: The Opal code has been backported to work on SSE2\n  rather than SSE4.1, allowing PyOpal to run on older x86 CPUs (all x86 CPUs\n  support it since 2003). In addition, Armv7 and Aarch64 CPUs are also\n  supported if they implement NEON extensions. Finally, the C++ code of Opal\n  has been modified to compile on Windows.\n\n## \ud83d\udd27 Installing\n\nPyOpal is available for all modern versions (3.6+), optionally depending on\nthe lightweight Python package [`archspec`](https://pypi.org/project/archspec)\nfor runtime CPU feature detection.\n\nIt can be installed directly from [PyPI](https://pypi.org/project/pyopal/),\nwhich hosts some pre-built x86-64 wheels for Linux, MacOS, and Windows,\nAarch64 wheels for Linux and MacOS, as well as the code required to \ncompile from source with Cython:\n```console\n$ pip install pyopal\n```\n\nOtherwise, PyOpal is also available as a [Bioconda](https://bioconda.github.io/)\npackage:\n```console\n$ conda install -c bioconda pyopal\n```\n\nCheck the [*install* page](https://pyopal.readthedocs.io/en/stable/install.html)\nof the documentation for other ways to install PyOpal on your machine.\n\n## \ud83d\udca1 Example\n\nAll classes are imported in the main namespace `pyopal`:\n```python\nimport pyopal\n```\n\n`pyopal` can work with sequences passed as Python strings, \nas well as with ASCII strings in `bytes` objects:\n```python\nquery = \"MAGFLKVVQLLAKYGSKAVQWAWANKGKILDWLNAGQAIDWVVSKIKQILGIK\"\ndatabase = [\n    \"MESILDLQELETSEEESALMAASTVSNNC\",\n    \"MKKAVIVENKGCATCSIGAACLVDGPIPDFEIAGATGLFGLWG\",\n    \"MAGFLKVVQILAKYGSKAVQWAWANKGKILDWINAGQAIDWVVEKIKQILGIK\",\n    \"MTQIKVPTALIASVHGEGQHLFEPMAARCTCTTIISSSSTF\",\n]\n```\n\nIf you plan to reuse the database across several queries, you can store it in \na [`Database`](https://pyopal.readthedocs.io/en/stable/api/database.html#pyopal.Database), \nwhich will keep sequences encoded according to \nan [`Alphabet`](https://pyopal.readthedocs.io/en/stable/api/alphabet.html#pyopal.Alphabet):\n\n```python\ndatabase = pyopal.Database(database)\n```\n\nThe top-level function `pyopal.align` can be used to align a query\nsequence against a database, using multithreading to process chunks\nof the database in parallel:\n```python\nfor result in pyopal.align(query, database):\n    print(result.score, result.target_index, database[result.target_index])\n```\n\nSee the [API documentation](https://pyopal.readthedocs.io/en/stable/api/index.html) \nfor more examples, including how to use the internal API, and detailed \nreference of the parameters and result types.\n\n## \ud83e\uddf6 Thread-safety\n\n`Database` objects are thread safe through a\n[C++17 read/write lock](https://en.cppreference.com/w/cpp/thread/shared_mutex)\nthat prevents modification while the database is searched. In addition, the\n`Aligner.align`  method is re-entrant and can be safely used to query the\nsame database in parallel with different queries across different threads:\n\n```python\nimport multiprocessing.pool\nimport pyopal\nimport Bio.SeqIO\n\nqueries = [\n    \"MEQQIELDVLEISDLIAGAGENDDLAQVMAASCTTSSVSTSSSSSSS\",\n    \"MTQIKVPTALIASVHGEGQHLFEPMAARCTCTTIISSSSTF\",\n    \"MGAIAKLVAKFGWPIVKKYYKQIMQFIGEGWAINKIIDWIKKHI\",\n    \"MGPVVVFDCMTADFLNDDPNNAELSALEMEELESWGAWDGEATS\",\n]\n\ndatabase = pyopal.Database([\n    str(record.seq)\n    for record in Bio.SeqIO.parse(\"vendor/opal/test_data/db/uniprot_sprot12071.fasta\", \"fasta\")\n])\n\naligner = pyopal.Aligner()\nwith multiprocessing.pool.ThreadPool() as pool:\n    hits = dict(pool.map(lambda q: (q, aligner.align(q, database)), queries))\n```\n\n<!-- ## \u23f1\ufe0f Benchmarks -->\n\n\n## \ud83d\udcad Feedback\n\n### \u26a0\ufe0f Issue Tracker\n\nFound a bug ? Have an enhancement request ? Head over to the [GitHub issue tracker](https://github.com/althonos/pyopal/issues)\nif you need to report or ask something. If you are filing in on a bug,\nplease include as much information as you can about the issue, and try to\nrecreate the same bug in a simple, easily reproducible situation.\n\n\n### \ud83c\udfd7\ufe0f Contributing\n\nContributions are more than welcome! See\n[`CONTRIBUTING.md`](https://github.com/althonos/pyopal/blob/main/CONTRIBUTING.md)\nfor more details.\n\n\n## \ud83d\udccb Changelog\n\nThis project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)\nand provides a [changelog](https://github.com/althonos/pyopal/blob/main/CHANGELOG.md)\nin the [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) format.\n\n\n## \u2696\ufe0f License\n\nThis library is provided under the [MIT License](https://choosealicense.com/licenses/mit/).\nOpal is developed by [Martin \u0160o\u0161i\u0107](https://github.com/Martinsos) and is distributed under the\nterms of the MIT License as well. See `vendor/opal/LICENSE` for more information.\n\n*This project is in no way not affiliated, sponsored, or otherwise endorsed\nby the [Opal authors](https://github.com/Martinsos). It was developed\nby [Martin Larralde](https://github.com/althonos/) during his PhD project\nat the [European Molecular Biology Laboratory](https://www.embl.de/) in\nthe [Zeller team](https://github.com/zellerlab).*\n\n\n## \ud83d\udcda References\n\n- <a id=\"ref1\">\\[1\\]</a> Korpar Matija, Martin \u0160o\u0161i\u0107, Dino Bla\u017eeka, Mile \u0160iki\u0107. SW#db: \u2018GPU-Accelerated Exact Sequence Similarity Database Search\u2019. PLoS One. 2015 Dec 31;10(12):e0145857. [doi:10.1371/journal.pone.0145857](https://doi.org/10.1371/journal.pone.0145857). [PMID:26719890](https://pubmed.ncbi.nlm.nih.gov/26719890). [PMC4699916](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4699916/).\n- <a id=\"ref2\">\\[2\\]</a> Rognes Torbj\u00f8rn. Faster Smith-Waterman database searches with inter-sequence SIMD parallelisation. BMC Bioinformatics. 2011 Jun 1;12:221. [doi:10.1186/1471-2105-12-221](https://doi.org/10.1186/1471-2105-12-221). [PMID:21631914](https://pubmed.ncbi.nlm.nih.gov/21631914/).[PMC3120707](http://www.ncbi.nlm.nih.gov/pmc/articles/pmc3120707/).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Cython bindings and Python interface to Opal, a SIMD-accelerated pairwise aligner.",
    "version": "0.5.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/althonos/pyopal/issues",
        "Builds": "https://github.com/althonos/pyopal/actions",
        "Changelog": "https://github.com/althonos/pyopal/blob/main/CHANGELOG.md",
        "Coverage": "https://codecov.io/gh/althonos/pyopal/",
        "Documentation": "https://pyopal.readthedocs.io/en/stable/",
        "Homepage": "https://github.com/althonos/pyopal",
        "PyPI": "https://pypi.org/project/pyopal"
    },
    "split_keywords": [
        "bioinformatics",
        "pairwise",
        "sequence",
        "alignment",
        "opal"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40cf5c6fafc2f0f5bb672cdcc88b654f6eba5c42d8a62bb7d84b4221166874fa",
                "md5": "acfab20e68c0254588d9b8b1042457e7",
                "sha256": "3c5dc5831a0a010d3f5dbff057745ce89fdfa118e916f8cace1480fc86fda35e"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "acfab20e68c0254588d9b8b1042457e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 414522,
            "upload_time": "2024-02-28T00:28:32",
            "upload_time_iso_8601": "2024-02-28T00:28:32.904148Z",
            "url": "https://files.pythonhosted.org/packages/40/cf/5c6fafc2f0f5bb672cdcc88b654f6eba5c42d8a62bb7d84b4221166874fa/pyopal-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7025715d6e100b3b537037d9ae7de5bee9a48a824e18a0703dc1e515cbb9d340",
                "md5": "bf8d39b5a04b78bec5760402d2cc64f3",
                "sha256": "e90300fe024bbab6e12bbad8b16cb9243ef7b57312a4bcdf5104ce7a41bee14a"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bf8d39b5a04b78bec5760402d2cc64f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 284081,
            "upload_time": "2024-02-28T00:28:35",
            "upload_time_iso_8601": "2024-02-28T00:28:35.746740Z",
            "url": "https://files.pythonhosted.org/packages/70/25/715d6e100b3b537037d9ae7de5bee9a48a824e18a0703dc1e515cbb9d340/pyopal-0.5.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8502b434d516dab1800631b8989799268e2370f5a6a508bbc0fd60790d090abe",
                "md5": "8d724ea8f5b7e9316fa1c17e7d62f7e9",
                "sha256": "94ca49669d9110ac30d3e2c63ec0a430178e785c59d7912112ee234cf3613e59"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8d724ea8f5b7e9316fa1c17e7d62f7e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 1720718,
            "upload_time": "2024-02-28T00:28:36",
            "upload_time_iso_8601": "2024-02-28T00:28:36.951070Z",
            "url": "https://files.pythonhosted.org/packages/85/02/b434d516dab1800631b8989799268e2370f5a6a508bbc0fd60790d090abe/pyopal-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9b57a58556690a5d6a75ceb51fd609edb738510d0e24b0ecd1e85f2969668a3",
                "md5": "fc0b6a871597da90af3bafe5cdf210bf",
                "sha256": "c859b4da76d78a9d113e8965127829b717ad1e36847695a19f64fd529c0dadb2"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc0b6a871597da90af3bafe5cdf210bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 2295680,
            "upload_time": "2024-02-28T00:28:38",
            "upload_time_iso_8601": "2024-02-28T00:28:38.511074Z",
            "url": "https://files.pythonhosted.org/packages/f9/b5/7a58556690a5d6a75ceb51fd609edb738510d0e24b0ecd1e85f2969668a3/pyopal-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67a8bca62217e28b69111f50ef4a08dff7b06b2ea0b3ad4336464bf05438c4ca",
                "md5": "d3ca0d38fb014225954515ca79876664",
                "sha256": "66e4764d2b0d51e548bf5f2accef025eb77689e673b53cc232974b59627e05cb"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d3ca0d38fb014225954515ca79876664",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 339532,
            "upload_time": "2024-02-28T00:28:40",
            "upload_time_iso_8601": "2024-02-28T00:28:40.551016Z",
            "url": "https://files.pythonhosted.org/packages/67/a8/bca62217e28b69111f50ef4a08dff7b06b2ea0b3ad4336464bf05438c4ca/pyopal-0.5.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cd4c65a0d4bf12d9205cd33a57370470a14e2a0ebbdd7067a1ccd0132e1e53d",
                "md5": "f4daf35b3fc1b6e4fa5b6a66d813afd2",
                "sha256": "6ec7b46d91ade02c1baacd5b9c11ffc3eb906bb5af603864cc80f7199809afb6"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4daf35b3fc1b6e4fa5b6a66d813afd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 413520,
            "upload_time": "2024-02-28T00:28:42",
            "upload_time_iso_8601": "2024-02-28T00:28:42.436817Z",
            "url": "https://files.pythonhosted.org/packages/8c/d4/c65a0d4bf12d9205cd33a57370470a14e2a0ebbdd7067a1ccd0132e1e53d/pyopal-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "953e62e0655177d94f2db143bc2b8d45cdc66a2e982a612707dc26ac4300accf",
                "md5": "c7cc403a5e21fc8982a9191d9b40666c",
                "sha256": "0cf834f3d3f64122511f450a51bba7b8882f7ad830c8a7ffeeecf8e4616d31ab"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c7cc403a5e21fc8982a9191d9b40666c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 283998,
            "upload_time": "2024-02-28T00:28:43",
            "upload_time_iso_8601": "2024-02-28T00:28:43.757508Z",
            "url": "https://files.pythonhosted.org/packages/95/3e/62e0655177d94f2db143bc2b8d45cdc66a2e982a612707dc26ac4300accf/pyopal-0.5.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "796459b6bdde584947de90115ed4ccc432f000c11967b881acc85a2f817532c7",
                "md5": "49d3ba6f3ad2f6d81558c9ede989b71a",
                "sha256": "080202df424ad768bc2a9744d54fc5e16c86ac6eb73d5e50c2eb5a382d16b8d5"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "49d3ba6f3ad2f6d81558c9ede989b71a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 2029491,
            "upload_time": "2024-02-28T00:28:45",
            "upload_time_iso_8601": "2024-02-28T00:28:45.566167Z",
            "url": "https://files.pythonhosted.org/packages/79/64/59b6bdde584947de90115ed4ccc432f000c11967b881acc85a2f817532c7/pyopal-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "107c08b52419f5d253f4d2134c2c02580a12e786e65c71c5f75e12f484a74061",
                "md5": "74d119e511630c9b7c1a1428a800f8e4",
                "sha256": "d1b10c0c52043884b52a9a4c48d3b89decd8f2226483311c24a2a1897f9c6459"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74d119e511630c9b7c1a1428a800f8e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 2646796,
            "upload_time": "2024-02-28T00:28:46",
            "upload_time_iso_8601": "2024-02-28T00:28:46.989620Z",
            "url": "https://files.pythonhosted.org/packages/10/7c/08b52419f5d253f4d2134c2c02580a12e786e65c71c5f75e12f484a74061/pyopal-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb1f82592606c2ee73f83be5f8f35f0c55db5aab6291e64628dfbcbd7aa0d522",
                "md5": "77d7d5ecd057643a429fcb3e279119c5",
                "sha256": "6aa81e00bc710f5b93fe922dc1becb874dd17e811212bbca8596f6d34c323f13"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "77d7d5ecd057643a429fcb3e279119c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 356680,
            "upload_time": "2024-02-28T00:28:48",
            "upload_time_iso_8601": "2024-02-28T00:28:48.975253Z",
            "url": "https://files.pythonhosted.org/packages/bb/1f/82592606c2ee73f83be5f8f35f0c55db5aab6291e64628dfbcbd7aa0d522/pyopal-0.5.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a47eafa16637e9177dd70a03882f24b2df7ec31411657a48db7e9dadb142cedf",
                "md5": "85eea56101c82be7f041858228302535",
                "sha256": "8e9f115b100213eb5d9ba54d710c299a53facbb03abf6000bda14d410fb805cf"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85eea56101c82be7f041858228302535",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 420613,
            "upload_time": "2024-02-28T00:28:50",
            "upload_time_iso_8601": "2024-02-28T00:28:50.853878Z",
            "url": "https://files.pythonhosted.org/packages/a4/7e/afa16637e9177dd70a03882f24b2df7ec31411657a48db7e9dadb142cedf/pyopal-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47fe6bdb1247139072c134467aa27a2f99793555b7bd61193f35518b5031bca3",
                "md5": "4beda7520d1fc52f5ea2b85c1396d4d4",
                "sha256": "c83db2db0690f470016035df82b33b35c5262d6e8fabd2b75803845d77214f8e"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4beda7520d1fc52f5ea2b85c1396d4d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 296778,
            "upload_time": "2024-02-28T00:28:52",
            "upload_time_iso_8601": "2024-02-28T00:28:52.047604Z",
            "url": "https://files.pythonhosted.org/packages/47/fe/6bdb1247139072c134467aa27a2f99793555b7bd61193f35518b5031bca3/pyopal-0.5.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67543c30a1e9f3d3f74fca7ec1e7d36de82ab5131fa8ccf5a615b44bca2d64bc",
                "md5": "ec4f52935237f92b8e34c33468df79ff",
                "sha256": "85d77b2a2c8f8dc15804bf44f342511da571978e5e4bc2a304d0bac6c97a6bb4"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ec4f52935237f92b8e34c33468df79ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 1875547,
            "upload_time": "2024-02-28T00:28:53",
            "upload_time_iso_8601": "2024-02-28T00:28:53.535421Z",
            "url": "https://files.pythonhosted.org/packages/67/54/3c30a1e9f3d3f74fca7ec1e7d36de82ab5131fa8ccf5a615b44bca2d64bc/pyopal-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee45c45cb8b46c73b8706cb15124c93ef6924717ee01362f7ddc6d34e9b8c401",
                "md5": "f57daef17f1e411d5b1b57f4880da573",
                "sha256": "6588d0aade6da1991dc948118be8c9538a921c27a88f0f3a7bd906c93e991a01"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f57daef17f1e411d5b1b57f4880da573",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 2399187,
            "upload_time": "2024-02-28T00:28:55",
            "upload_time_iso_8601": "2024-02-28T00:28:55.563258Z",
            "url": "https://files.pythonhosted.org/packages/ee/45/c45cb8b46c73b8706cb15124c93ef6924717ee01362f7ddc6d34e9b8c401/pyopal-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8497628eb5ef668ecd73e53b3d2e6725923fd1bfe2bd8b65f217b2c648785c3f",
                "md5": "412128f36d48ce3b497e7c6efa825a3b",
                "sha256": "53886e0fbb30cd30d478a2c2f638034c4132a7ddbefb6e8ab228da9615739fb3"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "412128f36d48ce3b497e7c6efa825a3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 337126,
            "upload_time": "2024-02-28T00:28:57",
            "upload_time_iso_8601": "2024-02-28T00:28:57.091641Z",
            "url": "https://files.pythonhosted.org/packages/84/97/628eb5ef668ecd73e53b3d2e6725923fd1bfe2bd8b65f217b2c648785c3f/pyopal-0.5.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "967f863e6b1a498e2559181278d15c30be536754d12e7a38205c0e40b1d80f47",
                "md5": "41bf6667377369e1abfea5225ee560fb",
                "sha256": "22c4fcaa606e2d7c1294bccc8e0cd557ae959e4edf1282dc2a797eedc18ebd71"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp36-cp36m-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "41bf6667377369e1abfea5225ee560fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 405724,
            "upload_time": "2024-02-28T00:28:58",
            "upload_time_iso_8601": "2024-02-28T00:28:58.301453Z",
            "url": "https://files.pythonhosted.org/packages/96/7f/863e6b1a498e2559181278d15c30be536754d12e7a38205c0e40b1d80f47/pyopal-0.5.2-cp36-cp36m-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b97df03423b06ea12f70ce0954259884827fc46706fcb845be7625546653bcfe",
                "md5": "18dc7b6f61ee38632a02d7f7287afef4",
                "sha256": "804047fb8f3328a7cf841a3c24127e200fb47bbe0b800b8d95253074a87f25ae"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "18dc7b6f61ee38632a02d7f7287afef4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 1556523,
            "upload_time": "2024-02-28T00:28:59",
            "upload_time_iso_8601": "2024-02-28T00:28:59.604452Z",
            "url": "https://files.pythonhosted.org/packages/b9/7d/f03423b06ea12f70ce0954259884827fc46706fcb845be7625546653bcfe/pyopal-0.5.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfd839a2bd4551f13fa02c51703055d5c183edf5737b02d37beac11961b280a5",
                "md5": "b3174f6025d667c84672f80a66b3a3d2",
                "sha256": "cd67ac3e1715b74a1f001b369046b038b673fa3d5b2d335cadf51fd55a6cfde8"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3174f6025d667c84672f80a66b3a3d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 2112464,
            "upload_time": "2024-02-28T00:29:01",
            "upload_time_iso_8601": "2024-02-28T00:29:01.200859Z",
            "url": "https://files.pythonhosted.org/packages/cf/d8/39a2bd4551f13fa02c51703055d5c183edf5737b02d37beac11961b280a5/pyopal-0.5.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce81b6186510562fa172d02361014435a99079799318c602de938c3385770627",
                "md5": "734dd6b187a96d30f75b8df3a99dd139",
                "sha256": "8493a8435fa18cbcc9a826e05a204e15be856d44ed8c13cb760ddce97b9c4523"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "734dd6b187a96d30f75b8df3a99dd139",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 454990,
            "upload_time": "2024-02-28T00:29:02",
            "upload_time_iso_8601": "2024-02-28T00:29:02.612505Z",
            "url": "https://files.pythonhosted.org/packages/ce/81/b6186510562fa172d02361014435a99079799318c602de938c3385770627/pyopal-0.5.2-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "265a68de76f8827c17a0178590a8c13e3d836e897bb5fb6ac5dd571a5b25166d",
                "md5": "23622af504bd4736b650c2e141d1ce08",
                "sha256": "c8a915b1209e5b0a4c56bc0336be2ad05c8b817754ba1761ecb75e20ce04ddea"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp37-cp37m-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "23622af504bd4736b650c2e141d1ce08",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 409013,
            "upload_time": "2024-02-28T00:29:04",
            "upload_time_iso_8601": "2024-02-28T00:29:04.593506Z",
            "url": "https://files.pythonhosted.org/packages/26/5a/68de76f8827c17a0178590a8c13e3d836e897bb5fb6ac5dd571a5b25166d/pyopal-0.5.2-cp37-cp37m-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33d77f4a17bdd402f56f30bd45c6f4d4796e10601dd744f17f7a6b61f2317ab5",
                "md5": "7a6756f2748283d61d7efad00e2416b4",
                "sha256": "b3d40a5df27dd26c10c1c253b45a67ac66b656d9a0cfe9ec02e9bb119252f66d"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7a6756f2748283d61d7efad00e2416b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 1565298,
            "upload_time": "2024-02-28T00:29:06",
            "upload_time_iso_8601": "2024-02-28T00:29:06.076702Z",
            "url": "https://files.pythonhosted.org/packages/33/d7/7f4a17bdd402f56f30bd45c6f4d4796e10601dd744f17f7a6b61f2317ab5/pyopal-0.5.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eec8c801162bec31844f302446f8de2ce040be5cd49084ae2c8bd0be0ec4c7ab",
                "md5": "1e300495242fc7d319cc7c09f53c7296",
                "sha256": "67af80af0edb39612755eb88897b4c4dcc4151e5b25703e1a92a9b2dda5875b7"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e300495242fc7d319cc7c09f53c7296",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 2136095,
            "upload_time": "2024-02-28T00:29:07",
            "upload_time_iso_8601": "2024-02-28T00:29:07.392515Z",
            "url": "https://files.pythonhosted.org/packages/ee/c8/c801162bec31844f302446f8de2ce040be5cd49084ae2c8bd0be0ec4c7ab/pyopal-0.5.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "332ceee4a8fe418cd7997d8844aaa482771f06979d05e717ae0c61658fb14f56",
                "md5": "23b97e464c93ab97c00bd311267dd1b9",
                "sha256": "289f797f7d7ad2c5564be964f40c5780557e65f08d575ad32a990661c5d983a4"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "23b97e464c93ab97c00bd311267dd1b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 424564,
            "upload_time": "2024-02-28T00:29:08",
            "upload_time_iso_8601": "2024-02-28T00:29:08.906339Z",
            "url": "https://files.pythonhosted.org/packages/33/2c/eee4a8fe418cd7997d8844aaa482771f06979d05e717ae0c61658fb14f56/pyopal-0.5.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6fbd4b622c9de9c1ebf60827a73a2c44c9a136e8ef92343e1937387abb4ec48",
                "md5": "a116e042f56251e7ba0746e0811678e2",
                "sha256": "60e1d792a3fbd7cd7138528678d42aa2adfe278d08321b58aa41f5dda23bbae5"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a116e042f56251e7ba0746e0811678e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 409955,
            "upload_time": "2024-02-28T00:29:10",
            "upload_time_iso_8601": "2024-02-28T00:29:10.082665Z",
            "url": "https://files.pythonhosted.org/packages/d6/fb/d4b622c9de9c1ebf60827a73a2c44c9a136e8ef92343e1937387abb4ec48/pyopal-0.5.2-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bc5ce281b9abd9658e094c8de529c6807514527f4da9821205dedab461f7fa2",
                "md5": "e35bada61c32853183f35ede8ea7ca60",
                "sha256": "ed6007352f886473d0cb4a109bd1d33c0ae96254f80caf3dc8d685743e1eaf96"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e35bada61c32853183f35ede8ea7ca60",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 280759,
            "upload_time": "2024-02-28T00:29:11",
            "upload_time_iso_8601": "2024-02-28T00:29:11.938819Z",
            "url": "https://files.pythonhosted.org/packages/7b/c5/ce281b9abd9658e094c8de529c6807514527f4da9821205dedab461f7fa2/pyopal-0.5.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e83f40ee6559cbb93032b7625063e423ff0395799aa2aab473b07683cbfc4506",
                "md5": "ddae52e57bbaa8ebd4f36d1e844c1e04",
                "sha256": "bef78a154e7d7f2d364775904e89d42b41443a5c6c7dd0d8d18e674795226b3e"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ddae52e57bbaa8ebd4f36d1e844c1e04",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 1751065,
            "upload_time": "2024-02-28T00:29:13",
            "upload_time_iso_8601": "2024-02-28T00:29:13.136043Z",
            "url": "https://files.pythonhosted.org/packages/e8/3f/40ee6559cbb93032b7625063e423ff0395799aa2aab473b07683cbfc4506/pyopal-0.5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90f54801e964615a2abece5aa302c05685e7fa57eb2ff1849965c990d6e9119d",
                "md5": "0c17f99e48daaa1318e0e51b16718dcc",
                "sha256": "66664610d89fd25d02a49af3df0da896f576f32c52a0d0417910cce20ee076f3"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c17f99e48daaa1318e0e51b16718dcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 2326559,
            "upload_time": "2024-02-28T00:29:14",
            "upload_time_iso_8601": "2024-02-28T00:29:14.441231Z",
            "url": "https://files.pythonhosted.org/packages/90/f5/4801e964615a2abece5aa302c05685e7fa57eb2ff1849965c990d6e9119d/pyopal-0.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cf2b630322d4f5a5dabaa95b3c4d9bd7fdbbb2428b851b391257650a52c00a3",
                "md5": "f26b9dadc0eed5d7e9fff595ea3f61f3",
                "sha256": "53eb093263b3b18350f7e8c342262e5bb9d64ffe173a64fa27077661353c9ed2"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f26b9dadc0eed5d7e9fff595ea3f61f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 340601,
            "upload_time": "2024-02-28T00:29:15",
            "upload_time_iso_8601": "2024-02-28T00:29:15.870139Z",
            "url": "https://files.pythonhosted.org/packages/2c/f2/b630322d4f5a5dabaa95b3c4d9bd7fdbbb2428b851b391257650a52c00a3/pyopal-0.5.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1538b7198bb4a92d79ab3f8b4c1f676b0d18ffa211852dea82d225bd35a90470",
                "md5": "f7a67e00d055d125f1796124cba4e4df",
                "sha256": "9f0f758b90ddfe9b64fed1d429491fa533f18235ff9081c3df19e532005db2b0"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7a67e00d055d125f1796124cba4e4df",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 414830,
            "upload_time": "2024-02-28T00:29:17",
            "upload_time_iso_8601": "2024-02-28T00:29:17.051513Z",
            "url": "https://files.pythonhosted.org/packages/15/38/b7198bb4a92d79ab3f8b4c1f676b0d18ffa211852dea82d225bd35a90470/pyopal-0.5.2-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "845321ac45ca8c7eec45bc544d11d9e8810219fbe93b8cd42c639904938b4b09",
                "md5": "a1d65968591eab53ff44d9ea01e35c0b",
                "sha256": "a89e126dc31cbf5753968f821e45b1980bcb8e617c5f2205162e1db0496eb7ca"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a1d65968591eab53ff44d9ea01e35c0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 284252,
            "upload_time": "2024-02-28T00:29:18",
            "upload_time_iso_8601": "2024-02-28T00:29:18.391003Z",
            "url": "https://files.pythonhosted.org/packages/84/53/21ac45ca8c7eec45bc544d11d9e8810219fbe93b8cd42c639904938b4b09/pyopal-0.5.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c09cf30da4463413e661af777b53d55715ca58f4e88f64ebf1abe742209563e",
                "md5": "b166866e2d5f61e734b73368f478e817",
                "sha256": "63f3472670fa10fbd20dce65b0edb9a55fadd45b34164b80ca766fa7d070967c"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b166866e2d5f61e734b73368f478e817",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 1720426,
            "upload_time": "2024-02-28T00:29:19",
            "upload_time_iso_8601": "2024-02-28T00:29:19.791460Z",
            "url": "https://files.pythonhosted.org/packages/5c/09/cf30da4463413e661af777b53d55715ca58f4e88f64ebf1abe742209563e/pyopal-0.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9ee7bdbfb1ff5d3530994496cbc5df383ca8c6974633ea5c693c30c65e9dba8",
                "md5": "cfd051303d14d3a762bda9894f513ca1",
                "sha256": "78f4e206e1f3afc4246db1a78c8cf6e1dd6a3c4bfd540b0b5bd511a1cce8e49b"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfd051303d14d3a762bda9894f513ca1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 2293652,
            "upload_time": "2024-02-28T00:29:21",
            "upload_time_iso_8601": "2024-02-28T00:29:21.527510Z",
            "url": "https://files.pythonhosted.org/packages/e9/ee/7bdbfb1ff5d3530994496cbc5df383ca8c6974633ea5c693c30c65e9dba8/pyopal-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "335045653d5f686401085c538a084fd143951075702e6fe34e66092c5524e157",
                "md5": "2bdc2c8d3a189b6351b842e1b436e2aa",
                "sha256": "120ac91a69880cbdc02eec3636c0648ce74d86ae64c1e2841f176a0287021556"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2bdc2c8d3a189b6351b842e1b436e2aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 339548,
            "upload_time": "2024-02-28T00:29:23",
            "upload_time_iso_8601": "2024-02-28T00:29:23.841865Z",
            "url": "https://files.pythonhosted.org/packages/33/50/45653d5f686401085c538a084fd143951075702e6fe34e66092c5524e157/pyopal-0.5.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f90740856ac654ddf76bcaccbe81b0f8ace981b7522a50e91dfdec3863893c26",
                "md5": "04e5064d528ee2c66baaa2ddcce5083c",
                "sha256": "a8f17cdfa091506ec348555f376ed369818a7d513a183358b76b13f112e98b31"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04e5064d528ee2c66baaa2ddcce5083c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 346095,
            "upload_time": "2024-02-28T00:29:25",
            "upload_time_iso_8601": "2024-02-28T00:29:25.199276Z",
            "url": "https://files.pythonhosted.org/packages/f9/07/40856ac654ddf76bcaccbe81b0f8ace981b7522a50e91dfdec3863893c26/pyopal-0.5.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4bc036f6d154cbbc2e80cfcdf427ba9537df5101960a89f7787aeadab8c4acd",
                "md5": "071984bc16085eb1a35e2c28602e810d",
                "sha256": "a586d2fcd8bbfca020a2d2a8bc44230185d7e0d54f0948967513ab80e8afce3c"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "071984bc16085eb1a35e2c28602e810d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 372331,
            "upload_time": "2024-02-28T00:29:26",
            "upload_time_iso_8601": "2024-02-28T00:29:26.477596Z",
            "url": "https://files.pythonhosted.org/packages/d4/bc/036f6d154cbbc2e80cfcdf427ba9537df5101960a89f7787aeadab8c4acd/pyopal-0.5.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc437a3ee10a790aa50b579026d71d22ad8bc11ccf95be71a91aaff996ce6fcb",
                "md5": "10d8bb61c6910f7279f07ea37cafeebe",
                "sha256": "c61fadd629c0b158bcb47e3d2473197d47d7c32323c1dc59a0813001fa59ac59"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10d8bb61c6910f7279f07ea37cafeebe",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 502343,
            "upload_time": "2024-02-28T00:29:27",
            "upload_time_iso_8601": "2024-02-28T00:29:27.711448Z",
            "url": "https://files.pythonhosted.org/packages/dc/43/7a3ee10a790aa50b579026d71d22ad8bc11ccf95be71a91aaff996ce6fcb/pyopal-0.5.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a907bda55338a2a42d50662b9b55303b1ba0b28f1dd1532a992f509e596d463",
                "md5": "4c4ff62907b3f766113ff0bf73203772",
                "sha256": "d2a14206637114d8b796a6aec47e4865f8a0f8bcb0b7faf33acfef3e2d666619"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4c4ff62907b3f766113ff0bf73203772",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 355705,
            "upload_time": "2024-02-28T00:29:29",
            "upload_time_iso_8601": "2024-02-28T00:29:29.198660Z",
            "url": "https://files.pythonhosted.org/packages/3a/90/7bda55338a2a42d50662b9b55303b1ba0b28f1dd1532a992f509e596d463/pyopal-0.5.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37a662aaef53ca0d3968f9327762c84731dc1c8baed4be9adfa96311879cc260",
                "md5": "12d4ad1b8554edc2bae5d20c798b97a8",
                "sha256": "3f5872294d01fc315c8b0bab050c654dece7137bbb6849a4de5a8d513efb0ef2"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp37-pypy37_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12d4ad1b8554edc2bae5d20c798b97a8",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 322993,
            "upload_time": "2024-02-28T00:29:30",
            "upload_time_iso_8601": "2024-02-28T00:29:30.605436Z",
            "url": "https://files.pythonhosted.org/packages/37/a6/62aaef53ca0d3968f9327762c84731dc1c8baed4be9adfa96311879cc260/pyopal-0.5.2-pp37-pypy37_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d32de187a1ade8b797446702d50ff7f9b4f0389d40eddd74a67c83298c3f1f4b",
                "md5": "aed8ad4ce3d3bc866b48be589293487b",
                "sha256": "c0e5f6c4365c753d499162affb0d38e2a448ff2dbd1a9f8980fb84100be5d4e3"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aed8ad4ce3d3bc866b48be589293487b",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 376718,
            "upload_time": "2024-02-28T00:29:31",
            "upload_time_iso_8601": "2024-02-28T00:29:31.766401Z",
            "url": "https://files.pythonhosted.org/packages/d3/2d/e187a1ade8b797446702d50ff7f9b4f0389d40eddd74a67c83298c3f1f4b/pyopal-0.5.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2115d6e01c20dfec6bfa7c7507d6477a33cd2950d437960f2f4d92e83803343",
                "md5": "d965fbbf6fcc9f11a40bd31571262e31",
                "sha256": "ab198d870d227523c3d8f42489555a0faa40f42b39574d57cc73977d6a7d15ee"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d965fbbf6fcc9f11a40bd31571262e31",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 503717,
            "upload_time": "2024-02-28T00:29:32",
            "upload_time_iso_8601": "2024-02-28T00:29:32.854822Z",
            "url": "https://files.pythonhosted.org/packages/e2/11/5d6e01c20dfec6bfa7c7507d6477a33cd2950d437960f2f4d92e83803343/pyopal-0.5.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aae8a3198209d04feb84489f44b82cbaeba8da77569605abfcc597b2cc4ff1c7",
                "md5": "0671869bb8fafc18079004d5e1f38c7c",
                "sha256": "6437088ef23dffb8037432b41d6e222891fa26ab732fa08b9cf195e6f258e015"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0671869bb8fafc18079004d5e1f38c7c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 399890,
            "upload_time": "2024-02-28T00:29:34",
            "upload_time_iso_8601": "2024-02-28T00:29:34.759220Z",
            "url": "https://files.pythonhosted.org/packages/aa/e8/a3198209d04feb84489f44b82cbaeba8da77569605abfcc597b2cc4ff1c7/pyopal-0.5.2-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0393053b95767253ed5cad0cd8151dbf8a0d32ffa86e9c727c16e9f9e7c9cd33",
                "md5": "792cede8dd671aa6798f88f025b9e17f",
                "sha256": "edd230e67f15e45328c916713f8f3fd6df79a2fe8a88b642ee70e7c9aa9e07e8"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "792cede8dd671aa6798f88f025b9e17f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 322787,
            "upload_time": "2024-02-28T00:29:36",
            "upload_time_iso_8601": "2024-02-28T00:29:36.674015Z",
            "url": "https://files.pythonhosted.org/packages/03/93/053b95767253ed5cad0cd8151dbf8a0d32ffa86e9c727c16e9f9e7c9cd33/pyopal-0.5.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c21a42cd423a705d2700c53ffe314e8d927cfdc59afc285ef2492b93bf177560",
                "md5": "ced8a8d6ee98901b0d538d1ffdbecb10",
                "sha256": "1d8e87bdaf2aaaadec174ba9f83717b2b316729f695373c4f6ec5d76a2d01ac5"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ced8a8d6ee98901b0d538d1ffdbecb10",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 376535,
            "upload_time": "2024-02-28T00:29:37",
            "upload_time_iso_8601": "2024-02-28T00:29:37.846499Z",
            "url": "https://files.pythonhosted.org/packages/c2/1a/42cd423a705d2700c53ffe314e8d927cfdc59afc285ef2492b93bf177560/pyopal-0.5.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed220a12546d53c312d2b8c0c11476b04ef0277ff30f391733c1573eca87e4b1",
                "md5": "121855033d36855ccd5a47965434abdc",
                "sha256": "099ef20b9eb2ec7d34b23ee085d536ab92186e2fbab363763d479669c36f16ad"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "121855033d36855ccd5a47965434abdc",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 503039,
            "upload_time": "2024-02-28T00:29:39",
            "upload_time_iso_8601": "2024-02-28T00:29:39.188608Z",
            "url": "https://files.pythonhosted.org/packages/ed/22/0a12546d53c312d2b8c0c11476b04ef0277ff30f391733c1573eca87e4b1/pyopal-0.5.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe07fd34f868438468ff6986934c20d2bbe6dafaf1774f2d4ee162e145dbd8b3",
                "md5": "5ff9b3ae4269ea41c99f4da6926666cb",
                "sha256": "fe4f84a9dac0423202e1592e8587a67bf78cba86c5d2958f3f4c77807124854f"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5ff9b3ae4269ea41c99f4da6926666cb",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 400184,
            "upload_time": "2024-02-28T00:29:40",
            "upload_time_iso_8601": "2024-02-28T00:29:40.381537Z",
            "url": "https://files.pythonhosted.org/packages/fe/07/fd34f868438468ff6986934c20d2bbe6dafaf1774f2d4ee162e145dbd8b3/pyopal-0.5.2-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbc608d4568f47a6aa8edbc536f361b730d51096ddf0c54872528b40db3ec90e",
                "md5": "be01d95528c52b30740596a0a570a3de",
                "sha256": "afc557921569caf7dd7857cf6592b91ec61ba250ddc6b11e1c9adaede9fd2d94"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be01d95528c52b30740596a0a570a3de",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 345576,
            "upload_time": "2024-02-28T00:29:41",
            "upload_time_iso_8601": "2024-02-28T00:29:41.582938Z",
            "url": "https://files.pythonhosted.org/packages/bb/c6/08d4568f47a6aa8edbc536f361b730d51096ddf0c54872528b40db3ec90e/pyopal-0.5.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef31c43ea7b3656ace9d0a713887581d4647174762adf0f281a408bbe065c70c",
                "md5": "50e2d4af94f916c1716d5b49ffb0edb6",
                "sha256": "06691a8ac5aa26975975ff0820ff33bd5422f8b779b820140c1543d1a68f49cc"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "50e2d4af94f916c1716d5b49ffb0edb6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 372513,
            "upload_time": "2024-02-28T00:29:42",
            "upload_time_iso_8601": "2024-02-28T00:29:42.856211Z",
            "url": "https://files.pythonhosted.org/packages/ef/31/c43ea7b3656ace9d0a713887581d4647174762adf0f281a408bbe065c70c/pyopal-0.5.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46116ff8d4e5542a69d6809bf41f8ff69e65b586e9f233b6dd0a317757f604df",
                "md5": "287fdfc37c39c5b9ef2030cda56a7d5c",
                "sha256": "eaca718df09b216170e20b586b4875a2402579663bede866ee2c355cc2858b48"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "287fdfc37c39c5b9ef2030cda56a7d5c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 502255,
            "upload_time": "2024-02-28T00:29:44",
            "upload_time_iso_8601": "2024-02-28T00:29:44.123600Z",
            "url": "https://files.pythonhosted.org/packages/46/11/6ff8d4e5542a69d6809bf41f8ff69e65b586e9f233b6dd0a317757f604df/pyopal-0.5.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b34de791003262a79f2a2759262d0393c164beaf86dfc28c608c4a6a10d43e7",
                "md5": "946c03d41f1df0905fcaebfe53611841",
                "sha256": "b76a90f05fb9fc1a362dc107d6f61820711205332f65846486ca1d9a629517fd"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "946c03d41f1df0905fcaebfe53611841",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 355419,
            "upload_time": "2024-02-28T00:29:45",
            "upload_time_iso_8601": "2024-02-28T00:29:45.342051Z",
            "url": "https://files.pythonhosted.org/packages/3b/34/de791003262a79f2a2759262d0393c164beaf86dfc28c608c4a6a10d43e7/pyopal-0.5.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbec109a3c6cc6215ba21fece84470034263439fe289cd50a3e574a42c03f10d",
                "md5": "683c06e0e87b3f7be51e1ab30b1c47a4",
                "sha256": "c58b573890a13197caea03d25b7db1de6fd8f8ece91b1337ab96c7b1668616c9"
            },
            "downloads": -1,
            "filename": "pyopal-0.5.2.tar.gz",
            "has_sig": false,
            "md5_digest": "683c06e0e87b3f7be51e1ab30b1c47a4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 71374,
            "upload_time": "2024-02-28T00:29:46",
            "upload_time_iso_8601": "2024-02-28T00:29:46.654026Z",
            "url": "https://files.pythonhosted.org/packages/db/ec/109a3c6cc6215ba21fece84470034263439fe289cd50a3e574a42c03f10d/pyopal-0.5.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-28 00:29:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "althonos",
    "github_project": "pyopal",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyopal"
}
        
Elapsed time: 0.18741s