pybcl


Namepybcl JSON
Version 1.0.0 PyPI version JSON
download
home_page
SummaryCompression and decompression using various algorithms provided by the basic compression library (BCL).
upload_time2023-12-01 22:55:15
maintainer
docs_urlNone
author
requires_python>=3.7
license
keywords compression decompression bcl basic compression library bcl1 lz77 huffman rle shannon-fano rice
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pybcl

<p align="left">
<a><img alt="Python versions" src="https://img.shields.io/pypi/pyversions/pybcl"></a>
<a href="https://pypi.org/project/pybcl/"><img alt="PyPI" src="https://img.shields.io/pypi/v/pybcl"></a>
<a href="https://github.com/AT0myks/pybcl/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/pypi/l/pybcl"></a>
</p>

* [Algorithms](#algorithms)
* [Requirements](#requirements)
* [Installation](#installation)
* [Usage](#usage)
* [Header variant](#header-variant)
* [Original library](#original-library)

This project brings the basic compression library (BCL) to Python.
These are not bindings, the wrapped library is bundled in the compiled binary.
A [few changes](https://github.com/AT0myks/pybcl/commit/5555256e39648f040f41f3ee4da2b8d4316e8ec1)
have been made to the original BCL in order to (hopefully) prevent segmentation
faults for LZ77 and RLE decompression, and to ease the development of the module.

## Algorithms

The BCL contains a C implementation of these five algorithms:
- Huffman
- Lempel-Ziv (LZ77)
- Rice
- RLE (Run-length encoding)
- Shannon-Fano

## Requirements

Python 3.7+

## Installation

```
pip install pybcl
```

## Usage

> [!CAUTION]
> While there's been an effort to prevent buffer overflows for the RLE and LZ77
> decompression algorithms, the other three are very likely to segfault if you
> give them corrupt/random data.

### API

```py
from pybcl import compress, decompress, ...

# Functions exposed by the C extension.
def compress(data, algo, header=False): ...
def decompress(data, algo=0, outsize=0): ...

# Shortcut functions.
def huffman_compress(data, header=False): ...
def lz_compress_fast(data, header=False): ...
def rice_compress(data, format, header=False): ...
def rle_compress(data, header=False): ...
def sf_compress(data, header=False): ...

def huffman_decompress(data, outsize=0): ...
def lz_decompress(data, outsize=0): ...
def rice_decompress(data, format, outsize=0): ...
def rle_decompress(data, outsize=0): ...
def sf_decompress(data, outsize=0): ...
```

For compression you can choose whether the header should be included in the result.

For decompression you can override `outsize` by giving a positive value. `algo`
and `outsize` aren't required if the data contains a header.

Two enums are provided for the algorithms and Rice formats. Example:

```py
from pybcl import Algorithm, RiceFormat

data = b"test"
compressed = compress(data, Algorithm.RICE8)
decompressed = rice_decompress(compressed, RiceFormat.UINT8, len(data))
```

### Command line

Compression:

```
usage: pybcl c [-h] [-a ALGO] [-o OFFSET] [-m SIZE] [-f] [--no-header] src dest

positional arguments:
  src                         input file
  dest                        output file

options:
  -h, --help                  show this help message and exit
  -a ALGO, --algo ALGO        algorithm for (de)compression. Not required for decompression if a header is present
  -o OFFSET, --offset OFFSET  position in src where to start reading from
  -m SIZE, --maxread SIZE     max amount of bytes to read from src. Default: all that can be read
  -f, --force                 overwrite dest
  --no-header                 do not write a header for the file
```

Decompression:

```
usage: pybcl d [-h] [-a ALGO] [-o OFFSET] [-m SIZE] [-f] [-s SIZE] [--hvariant] src dest

positional arguments:
  src                         input file
  dest                        output file

options:
  -h, --help                  show this help message and exit
  -a ALGO, --algo ALGO        algorithm for (de)compression. Not required for decompression if a header is present
  -o OFFSET, --offset OFFSET  position in src where to start reading from
  -m SIZE, --maxread SIZE     max amount of bytes to read from src. Default: all that can be read
  -f, --force                 overwrite dest
  -s SIZE, --outsize SIZE     required if no header
  --hvariant                  force reading the header variant
```

When decompressing data that has a header with LZ77 or RLE, if you get an
`OutputOverrun` error you can override the header's outsize to specify a higher value.

## Header variant

Some camera firmwares contain parts that are compressed with a modified version
of the BCL that adds the size of the compressed data to the header and replaces
two of the always empty bytes of the algo by unknown data (maybe a checksum).
A `HeaderVariant` class is provided for this specific case. For now only the CLI
makes use of this class. Note that this has nothing to do with the original
library and is only included because I need it for another project.
See [here](https://reverseengineering.stackexchange.com/questions/6591/non-standard-lz77-compression-header)
for an example.

## Original library

The BCL is written by [Marcus Geelnard](https://github.com/mbitsnbites) and
licensed under the terms of the zlib license.

You can find it here:

- https://web.archive.org/web/20181025055443/http://bcl.comli.eu/
- https://sourceforge.net/projects/bcl/
- https://github.com/mbitsnbites/bcl
- https://gitlab.com/mbitsnbites/bcl

It comes with the basic file compressor, or BFC, which is a test application for
the BCL. Data compressed with the BFC starts with the `BCL1` magic.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pybcl",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "compression,decompression,bcl,basic compression library,bcl1,lz77,huffman,rle,shannon-fano,rice",
    "author": "",
    "author_email": "AT0myks <at0myks.dev@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/bd/51/f05bbc53611bca6903871d5499dda74f331aecdef5f974221b5513605f6d/pybcl-1.0.0.tar.gz",
    "platform": null,
    "description": "# pybcl\n\n<p align=\"left\">\n<a><img alt=\"Python versions\" src=\"https://img.shields.io/pypi/pyversions/pybcl\"></a>\n<a href=\"https://pypi.org/project/pybcl/\"><img alt=\"PyPI\" src=\"https://img.shields.io/pypi/v/pybcl\"></a>\n<a href=\"https://github.com/AT0myks/pybcl/blob/main/LICENSE\"><img alt=\"License\" src=\"https://img.shields.io/pypi/l/pybcl\"></a>\n</p>\n\n* [Algorithms](#algorithms)\n* [Requirements](#requirements)\n* [Installation](#installation)\n* [Usage](#usage)\n* [Header variant](#header-variant)\n* [Original library](#original-library)\n\nThis project brings the basic compression library (BCL) to Python.\nThese are not bindings, the wrapped library is bundled in the compiled binary.\nA [few changes](https://github.com/AT0myks/pybcl/commit/5555256e39648f040f41f3ee4da2b8d4316e8ec1)\nhave been made to the original BCL in order to (hopefully) prevent segmentation\nfaults for LZ77 and RLE decompression, and to ease the development of the module.\n\n## Algorithms\n\nThe BCL contains a C implementation of these five algorithms:\n- Huffman\n- Lempel-Ziv (LZ77)\n- Rice\n- RLE (Run-length encoding)\n- Shannon-Fano\n\n## Requirements\n\nPython 3.7+\n\n## Installation\n\n```\npip install pybcl\n```\n\n## Usage\n\n> [!CAUTION]\n> While there's been an effort to prevent buffer overflows for the RLE and LZ77\n> decompression algorithms, the other three are very likely to segfault if you\n> give them corrupt/random data.\n\n### API\n\n```py\nfrom pybcl import compress, decompress, ...\n\n# Functions exposed by the C extension.\ndef compress(data, algo, header=False): ...\ndef decompress(data, algo=0, outsize=0): ...\n\n# Shortcut functions.\ndef huffman_compress(data, header=False): ...\ndef lz_compress_fast(data, header=False): ...\ndef rice_compress(data, format, header=False): ...\ndef rle_compress(data, header=False): ...\ndef sf_compress(data, header=False): ...\n\ndef huffman_decompress(data, outsize=0): ...\ndef lz_decompress(data, outsize=0): ...\ndef rice_decompress(data, format, outsize=0): ...\ndef rle_decompress(data, outsize=0): ...\ndef sf_decompress(data, outsize=0): ...\n```\n\nFor compression you can choose whether the header should be included in the result.\n\nFor decompression you can override `outsize` by giving a positive value. `algo`\nand `outsize` aren't required if the data contains a header.\n\nTwo enums are provided for the algorithms and Rice formats. Example:\n\n```py\nfrom pybcl import Algorithm, RiceFormat\n\ndata = b\"test\"\ncompressed = compress(data, Algorithm.RICE8)\ndecompressed = rice_decompress(compressed, RiceFormat.UINT8, len(data))\n```\n\n### Command line\n\nCompression:\n\n```\nusage: pybcl c [-h] [-a ALGO] [-o OFFSET] [-m SIZE] [-f] [--no-header] src dest\n\npositional arguments:\n  src                         input file\n  dest                        output file\n\noptions:\n  -h, --help                  show this help message and exit\n  -a ALGO, --algo ALGO        algorithm for (de)compression. Not required for decompression if a header is present\n  -o OFFSET, --offset OFFSET  position in src where to start reading from\n  -m SIZE, --maxread SIZE     max amount of bytes to read from src. Default: all that can be read\n  -f, --force                 overwrite dest\n  --no-header                 do not write a header for the file\n```\n\nDecompression:\n\n```\nusage: pybcl d [-h] [-a ALGO] [-o OFFSET] [-m SIZE] [-f] [-s SIZE] [--hvariant] src dest\n\npositional arguments:\n  src                         input file\n  dest                        output file\n\noptions:\n  -h, --help                  show this help message and exit\n  -a ALGO, --algo ALGO        algorithm for (de)compression. Not required for decompression if a header is present\n  -o OFFSET, --offset OFFSET  position in src where to start reading from\n  -m SIZE, --maxread SIZE     max amount of bytes to read from src. Default: all that can be read\n  -f, --force                 overwrite dest\n  -s SIZE, --outsize SIZE     required if no header\n  --hvariant                  force reading the header variant\n```\n\nWhen decompressing data that has a header with LZ77 or RLE, if you get an\n`OutputOverrun` error you can override the header's outsize to specify a higher value.\n\n## Header variant\n\nSome camera firmwares contain parts that are compressed with a modified version\nof the BCL that adds the size of the compressed data to the header and replaces\ntwo of the always empty bytes of the algo by unknown data (maybe a checksum).\nA `HeaderVariant` class is provided for this specific case. For now only the CLI\nmakes use of this class. Note that this has nothing to do with the original\nlibrary and is only included because I need it for another project.\nSee [here](https://reverseengineering.stackexchange.com/questions/6591/non-standard-lz77-compression-header)\nfor an example.\n\n## Original library\n\nThe BCL is written by [Marcus Geelnard](https://github.com/mbitsnbites) and\nlicensed under the terms of the zlib license.\n\nYou can find it here:\n\n- https://web.archive.org/web/20181025055443/http://bcl.comli.eu/\n- https://sourceforge.net/projects/bcl/\n- https://github.com/mbitsnbites/bcl\n- https://gitlab.com/mbitsnbites/bcl\n\nIt comes with the basic file compressor, or BFC, which is a test application for\nthe BCL. Data compressed with the BFC starts with the `BCL1` magic.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Compression and decompression using various algorithms provided by the basic compression library (BCL).",
    "version": "1.0.0",
    "project_urls": {
        "Issues": "https://github.com/AT0myks/pybcl/issues",
        "Source": "https://github.com/AT0myks/pybcl"
    },
    "split_keywords": [
        "compression",
        "decompression",
        "bcl",
        "basic compression library",
        "bcl1",
        "lz77",
        "huffman",
        "rle",
        "shannon-fano",
        "rice"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cdb38a0a2aeb466dbb07bfa516df5b636c29fba77acd16e613fbce5fc8980c7",
                "md5": "d774bd7d4ffc3b49a9ca5b2e63488805",
                "sha256": "cbc6610bb2f231976917077ef88e6dd6c99a5156082e89b5b19d2158440955b7"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d774bd7d4ffc3b49a9ca5b2e63488805",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 25285,
            "upload_time": "2023-12-01T22:53:12",
            "upload_time_iso_8601": "2023-12-01T22:53:12.346299Z",
            "url": "https://files.pythonhosted.org/packages/2c/db/38a0a2aeb466dbb07bfa516df5b636c29fba77acd16e613fbce5fc8980c7/pybcl-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89158b7d94496e868601049171301cba6852d5e395b737d44c37b7e1573dd956",
                "md5": "e7e6fc5d963d1a84ca309a6a4b6d232c",
                "sha256": "c83b2e1a924fdadee046c66c7e0c63515e81facc214f70b1bf14c816b859fbf7"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e7e6fc5d963d1a84ca309a6a4b6d232c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 24125,
            "upload_time": "2023-12-01T22:53:13",
            "upload_time_iso_8601": "2023-12-01T22:53:13.360520Z",
            "url": "https://files.pythonhosted.org/packages/89/15/8b7d94496e868601049171301cba6852d5e395b737d44c37b7e1573dd956/pybcl-1.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14f46ab06fec90b4a963e71f2a57552a56c8e090f0be0e1fa8c95455e5090df0",
                "md5": "80a295a9502e3b091d0c8d82680211aa",
                "sha256": "8aaf612b1f0a137ba6048061374d4219372b2cdcf7d4021a8a9019872e238045"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "80a295a9502e3b091d0c8d82680211aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 63984,
            "upload_time": "2023-12-01T22:53:14",
            "upload_time_iso_8601": "2023-12-01T22:53:14.719597Z",
            "url": "https://files.pythonhosted.org/packages/14/f4/6ab06fec90b4a963e71f2a57552a56c8e090f0be0e1fa8c95455e5090df0/pybcl-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce4a2210963b557a1929d56e088d4b77fe4d0e9eb15e381aeecd699900b85f33",
                "md5": "f26badef4edc51b156bfd2d2548728a9",
                "sha256": "a791330f42a638352d0b3c839430f5c4dc2a5564ba88a810fd25f2b5b9619c23"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f26badef4edc51b156bfd2d2548728a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 68959,
            "upload_time": "2023-12-01T22:53:16",
            "upload_time_iso_8601": "2023-12-01T22:53:16.143587Z",
            "url": "https://files.pythonhosted.org/packages/ce/4a/2210963b557a1929d56e088d4b77fe4d0e9eb15e381aeecd699900b85f33/pybcl-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4065b81f9f78dae57d8b29e417c48c88241812208a312fa44d940ce8f43d11d",
                "md5": "e3c6dbedcdfd9572f27c53ffebfb438f",
                "sha256": "f61b22d351ea02e2ed73f5cdd6ab6ead487e3bbc65078d6952fb252790e37025"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e3c6dbedcdfd9572f27c53ffebfb438f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 73399,
            "upload_time": "2023-12-01T22:53:17",
            "upload_time_iso_8601": "2023-12-01T22:53:17.301184Z",
            "url": "https://files.pythonhosted.org/packages/d4/06/5b81f9f78dae57d8b29e417c48c88241812208a312fa44d940ce8f43d11d/pybcl-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bd5280308bec1a66ea06655037681a1dfc904da241f415e4d6a6d24d42a3fa3",
                "md5": "ffbc775faa72fbb8f93f65fd461156ee",
                "sha256": "de2049175bee6d4e2e3d46ac52983237a7c052cf0ce423ec84e74eef768ab309"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ffbc775faa72fbb8f93f65fd461156ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 62406,
            "upload_time": "2023-12-01T22:53:18",
            "upload_time_iso_8601": "2023-12-01T22:53:18.848661Z",
            "url": "https://files.pythonhosted.org/packages/7b/d5/280308bec1a66ea06655037681a1dfc904da241f415e4d6a6d24d42a3fa3/pybcl-1.0.0-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": "f0b5cddd279e7087937331d7963541031c1c47744589c3911c6a08ae103700c4",
                "md5": "a5ce2377cb5e45abb77c8e5ae903d3e2",
                "sha256": "aa00dc0971b6f978b71fc60c806b8de4545c31aa6734a8d2a994fe058b3d7a31"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5ce2377cb5e45abb77c8e5ae903d3e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 64153,
            "upload_time": "2023-12-01T22:53:19",
            "upload_time_iso_8601": "2023-12-01T22:53:19.774345Z",
            "url": "https://files.pythonhosted.org/packages/f0/b5/cddd279e7087937331d7963541031c1c47744589c3911c6a08ae103700c4/pybcl-1.0.0-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": "8270c11af87bad8cac340fee77f85ed2fbcb896697c6cc95c0585c731cd96c57",
                "md5": "4695ef9ac7a762b22ea2c06dbdb219b0",
                "sha256": "65f146e15a73cbf9825c7a6bcc9e58d43fe2c6598721c7caaee94a7ec25c1972"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4695ef9ac7a762b22ea2c06dbdb219b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 66095,
            "upload_time": "2023-12-01T22:53:21",
            "upload_time_iso_8601": "2023-12-01T22:53:21.354738Z",
            "url": "https://files.pythonhosted.org/packages/82/70/c11af87bad8cac340fee77f85ed2fbcb896697c6cc95c0585c731cd96c57/pybcl-1.0.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccd8207f29e017c0bf592f3cc663bc682410ceef44fceca41367b477a82d4f19",
                "md5": "a01857833d97ac022139b255150e2479",
                "sha256": "8a8d72e323edbdff246b6ad9b98fda58b97c0246d2514190b114ddab8d8b6dd5"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a01857833d97ac022139b255150e2479",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 64837,
            "upload_time": "2023-12-01T22:53:22",
            "upload_time_iso_8601": "2023-12-01T22:53:22.286578Z",
            "url": "https://files.pythonhosted.org/packages/cc/d8/207f29e017c0bf592f3cc663bc682410ceef44fceca41367b477a82d4f19/pybcl-1.0.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c3149f1c9663fe3833458fe90a415ba8b8468dcbc2ce386fecfe23c7e6b04b6",
                "md5": "39a4bc06814fc2e4e636fff762b2e6b9",
                "sha256": "113cf0a5688fd06d0890b56708fc4bf798cedd07d8bd91c9b3be16f62dba41ee"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "39a4bc06814fc2e4e636fff762b2e6b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 71709,
            "upload_time": "2023-12-01T22:53:23",
            "upload_time_iso_8601": "2023-12-01T22:53:23.799863Z",
            "url": "https://files.pythonhosted.org/packages/5c/31/49f1c9663fe3833458fe90a415ba8b8468dcbc2ce386fecfe23c7e6b04b6/pybcl-1.0.0-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75ddc0be1103ccea09eb9e17df5fb0df3b22268d7cf6e7217cbbb3a6ba2c7921",
                "md5": "a22d791231ff4a347e29dffcb3023acf",
                "sha256": "d208b29ab99f3bb209f1f3e8fe0135d7a9597f227339d5590741899f7b63d381"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "a22d791231ff4a347e29dffcb3023acf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 73632,
            "upload_time": "2023-12-01T22:53:24",
            "upload_time_iso_8601": "2023-12-01T22:53:24.764750Z",
            "url": "https://files.pythonhosted.org/packages/75/dd/c0be1103ccea09eb9e17df5fb0df3b22268d7cf6e7217cbbb3a6ba2c7921/pybcl-1.0.0-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3134ab539c5ade51c6131c9d26a2629f4553cbdbc4ebae8c56b646574be25bb2",
                "md5": "e03c74e1b11c9e4cb77353cb5136dfdc",
                "sha256": "9874e00aab5b4e8eab76db95242f2b6ad4e1be75b7457a531ad64194dd88d76b"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e03c74e1b11c9e4cb77353cb5136dfdc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 66151,
            "upload_time": "2023-12-01T22:53:26",
            "upload_time_iso_8601": "2023-12-01T22:53:26.058720Z",
            "url": "https://files.pythonhosted.org/packages/31/34/ab539c5ade51c6131c9d26a2629f4553cbdbc4ebae8c56b646574be25bb2/pybcl-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c360d41bd88b0ca70563615f3d3c44e54768550adf0be6544bd2c7fe30b24aba",
                "md5": "c3a7c06bbeafa329a3d2e7557d4ab4f2",
                "sha256": "445e5f2ec320ed15349ba5176f5061d2d850de3975a0c484549d7922e58e1844"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "c3a7c06bbeafa329a3d2e7557d4ab4f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 23911,
            "upload_time": "2023-12-01T22:53:27",
            "upload_time_iso_8601": "2023-12-01T22:53:27.160922Z",
            "url": "https://files.pythonhosted.org/packages/c3/60/d41bd88b0ca70563615f3d3c44e54768550adf0be6544bd2c7fe30b24aba/pybcl-1.0.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42dad8ea7b6bb48e2f41986383be75fda8c436eed2870b8684834fe1ba94b801",
                "md5": "0e4f9f92a0c4cf7ea4eb7d90605a299c",
                "sha256": "6146a839ede0b36cd32aebbb85abfe0725b78373e55485db17ac9c779413e9c2"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0e4f9f92a0c4cf7ea4eb7d90605a299c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 26246,
            "upload_time": "2023-12-01T22:53:28",
            "upload_time_iso_8601": "2023-12-01T22:53:28.027865Z",
            "url": "https://files.pythonhosted.org/packages/42/da/d8ea7b6bb48e2f41986383be75fda8c436eed2870b8684834fe1ba94b801/pybcl-1.0.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d57b9565ce04e2367e086df0f177952836e9e25b084f19d6b68244efc56c8210",
                "md5": "b831cba3fc6ef82555183a398ee1817a",
                "sha256": "638e48d14cb7f3c74e873cb4cb137b694cd529f3851050b70337d0f6e669f587"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "b831cba3fc6ef82555183a398ee1817a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 23462,
            "upload_time": "2023-12-01T22:53:29",
            "upload_time_iso_8601": "2023-12-01T22:53:29.503692Z",
            "url": "https://files.pythonhosted.org/packages/d5/7b/9565ce04e2367e086df0f177952836e9e25b084f19d6b68244efc56c8210/pybcl-1.0.0-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59f258f6d6cba46599fa2b4b0302c8ca11c7e146b1ef1f27155904b2f0241070",
                "md5": "051712d0c487e8231ffcdade544c9d8a",
                "sha256": "fb2d7108cc1ad4ba424dd0dbe7bb253b89dde681dcab1989b53b82fbd27ba718"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "051712d0c487e8231ffcdade544c9d8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 25277,
            "upload_time": "2023-12-01T22:53:30",
            "upload_time_iso_8601": "2023-12-01T22:53:30.380769Z",
            "url": "https://files.pythonhosted.org/packages/59/f2/58f6d6cba46599fa2b4b0302c8ca11c7e146b1ef1f27155904b2f0241070/pybcl-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74be079a752a0940205e04ab12426b39945842517dada6c99ddf742f8ba9aee8",
                "md5": "a13a807527fb8e5120acda7aae857431",
                "sha256": "d653b327b506a68563f461ee9c598a6d2141dfd10a6bf49e41f56af1b3dd96a2"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a13a807527fb8e5120acda7aae857431",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 24120,
            "upload_time": "2023-12-01T22:53:31",
            "upload_time_iso_8601": "2023-12-01T22:53:31.365321Z",
            "url": "https://files.pythonhosted.org/packages/74/be/079a752a0940205e04ab12426b39945842517dada6c99ddf742f8ba9aee8/pybcl-1.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a37fdf98f7c70e4d013140b51e318ce7ab6d7da6f812c414428910db73e9704",
                "md5": "82a9e0aa0d588e2c36e7485cd69e7668",
                "sha256": "ec6eaeb9563bf1ff98b9ed59f70c9059f8045f764ae62501ecdeb2e3eb89b5f4"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "82a9e0aa0d588e2c36e7485cd69e7668",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 64772,
            "upload_time": "2023-12-01T22:53:32",
            "upload_time_iso_8601": "2023-12-01T22:53:32.864135Z",
            "url": "https://files.pythonhosted.org/packages/2a/37/fdf98f7c70e4d013140b51e318ce7ab6d7da6f812c414428910db73e9704/pybcl-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82300ba4042f4fb41090a910d3a42502687ed65a4af82046895ade7c4836a86f",
                "md5": "80cde7c973927ef1a76a00347a3ecbd6",
                "sha256": "9b417aab380108c5c962a66accbe65c5e8877834046a7bd2747571945aa4e676"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "80cde7c973927ef1a76a00347a3ecbd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 69693,
            "upload_time": "2023-12-01T22:53:34",
            "upload_time_iso_8601": "2023-12-01T22:53:34.829292Z",
            "url": "https://files.pythonhosted.org/packages/82/30/0ba4042f4fb41090a910d3a42502687ed65a4af82046895ade7c4836a86f/pybcl-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f8dc90f0d7285b790957334eb50bfcff9a63e69cb4dc742c51df26e13887a45",
                "md5": "97521112077914155de5953c6883c0be",
                "sha256": "7677302b6cb617b84ff440ef6c4b272d9170d047c637a32ae23a010e8389a735"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "97521112077914155de5953c6883c0be",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 74150,
            "upload_time": "2023-12-01T22:53:35",
            "upload_time_iso_8601": "2023-12-01T22:53:35.776755Z",
            "url": "https://files.pythonhosted.org/packages/4f/8d/c90f0d7285b790957334eb50bfcff9a63e69cb4dc742c51df26e13887a45/pybcl-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37fa313dd6139326bfebadb859226579cf7899687dafc9c1ed2e419d82a6a59f",
                "md5": "a41e1ef77d163ce6949efdbc0267f133",
                "sha256": "42160428d49b7a7e249457c2c5986fc598b2071c2ecc6ebc0309a40c995674b2"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a41e1ef77d163ce6949efdbc0267f133",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 63197,
            "upload_time": "2023-12-01T22:53:37",
            "upload_time_iso_8601": "2023-12-01T22:53:37.295687Z",
            "url": "https://files.pythonhosted.org/packages/37/fa/313dd6139326bfebadb859226579cf7899687dafc9c1ed2e419d82a6a59f/pybcl-1.0.0-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": "f05e9e6bdf10d525a3d7842566517a7a7799b18209d8d80e9ccf299d283299e3",
                "md5": "8b1d59ddab9bc8b010710f0b6f6a34db",
                "sha256": "64bd9e591cf79cd913069b660cddf89c82139392e6bf926a020bc5c41aae532d"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b1d59ddab9bc8b010710f0b6f6a34db",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 64952,
            "upload_time": "2023-12-01T22:53:38",
            "upload_time_iso_8601": "2023-12-01T22:53:38.208197Z",
            "url": "https://files.pythonhosted.org/packages/f0/5e/9e6bdf10d525a3d7842566517a7a7799b18209d8d80e9ccf299d283299e3/pybcl-1.0.0-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": "62456726b81697c9ed9b9d3a3bdd0a847afa5d428c7e4a91fc74948e3d6e6cd5",
                "md5": "813e3f035b5246fa9830ae40fd4e5484",
                "sha256": "8fc787d72436e0db6120d3240d14b0c525f53bd7c858814b20e1ecc3706b485e"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "813e3f035b5246fa9830ae40fd4e5484",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 66914,
            "upload_time": "2023-12-01T22:53:39",
            "upload_time_iso_8601": "2023-12-01T22:53:39.143972Z",
            "url": "https://files.pythonhosted.org/packages/62/45/6726b81697c9ed9b9d3a3bdd0a847afa5d428c7e4a91fc74948e3d6e6cd5/pybcl-1.0.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57675bbf45b50af17f9460abb49dccb9409cf7924c56151e9a1aa4e9a7e8c8a0",
                "md5": "26759bd06ec9acebdf124b4ef047b44f",
                "sha256": "5f033fa3f6ab9fda30fc321b3faaacf85b612ae159c35ba7545db27755b35df3"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "26759bd06ec9acebdf124b4ef047b44f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 65644,
            "upload_time": "2023-12-01T22:53:40",
            "upload_time_iso_8601": "2023-12-01T22:53:40.330201Z",
            "url": "https://files.pythonhosted.org/packages/57/67/5bbf45b50af17f9460abb49dccb9409cf7924c56151e9a1aa4e9a7e8c8a0/pybcl-1.0.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05b3c9d0602b0a3d95f8848c5d88cdbabd4e83c0ef6e32eeb73a30eb01542cc3",
                "md5": "a886e6383e2655d847f6b56f61ad6aec",
                "sha256": "b7481a2e27e9dd5efa842c0e60a776da1b2c16fae441b70c26418297e3873f7b"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a886e6383e2655d847f6b56f61ad6aec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 72515,
            "upload_time": "2023-12-01T22:53:41",
            "upload_time_iso_8601": "2023-12-01T22:53:41.269782Z",
            "url": "https://files.pythonhosted.org/packages/05/b3/c9d0602b0a3d95f8848c5d88cdbabd4e83c0ef6e32eeb73a30eb01542cc3/pybcl-1.0.0-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36d9635147d9ecd32a9fc6cc1a1fc51d7967aea432d93f95c5cff5a92303d72b",
                "md5": "234bf95efc18fefaaeb8db718a2b2854",
                "sha256": "a49a7b8d1a1b5da4b05162ad2223911e75c578e943b8539a7cc4783b55dc1dd5"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "234bf95efc18fefaaeb8db718a2b2854",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 74420,
            "upload_time": "2023-12-01T22:53:42",
            "upload_time_iso_8601": "2023-12-01T22:53:42.247826Z",
            "url": "https://files.pythonhosted.org/packages/36/d9/635147d9ecd32a9fc6cc1a1fc51d7967aea432d93f95c5cff5a92303d72b/pybcl-1.0.0-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4739e716f5cf5b949add25ca5d6dfde87552e84130a2d57fc188db9e957e825",
                "md5": "1fb1aac112bcf5c457395d529bc1488f",
                "sha256": "2c18d13d4818822a421921f11cb398812bdc72f7fd1f600052bf34b51b27b6e2"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1fb1aac112bcf5c457395d529bc1488f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 66961,
            "upload_time": "2023-12-01T22:53:43",
            "upload_time_iso_8601": "2023-12-01T22:53:43.831004Z",
            "url": "https://files.pythonhosted.org/packages/d4/73/9e716f5cf5b949add25ca5d6dfde87552e84130a2d57fc188db9e957e825/pybcl-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "096637831006cdb34044675c60dd41f19fd0ac5ab88ef7564affc9d2a62902b9",
                "md5": "4485848b9dc1c18901a8338761f31746",
                "sha256": "63354345789f0569d9a0270a5822f46e39ef322a4a9f178f7582f7ea752c2b52"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "4485848b9dc1c18901a8338761f31746",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 23914,
            "upload_time": "2023-12-01T22:53:44",
            "upload_time_iso_8601": "2023-12-01T22:53:44.706885Z",
            "url": "https://files.pythonhosted.org/packages/09/66/37831006cdb34044675c60dd41f19fd0ac5ab88ef7564affc9d2a62902b9/pybcl-1.0.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77a15b6f530a2f0cee79ca68b8abc2acf8ce8feada3bd6f5f7e9f700604a4109",
                "md5": "d0302e23168f140f422e79625dd4d95f",
                "sha256": "159c74b53aa6ab652d5c354dc7cbfb1648b617e5b6a45f75fb25f0963e7d7de6"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d0302e23168f140f422e79625dd4d95f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 26251,
            "upload_time": "2023-12-01T22:53:45",
            "upload_time_iso_8601": "2023-12-01T22:53:45.618513Z",
            "url": "https://files.pythonhosted.org/packages/77/a1/5b6f530a2f0cee79ca68b8abc2acf8ce8feada3bd6f5f7e9f700604a4109/pybcl-1.0.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f75605f4c779e0716c089ac81c3bf9098f2f83289d79955627e6db09d152284",
                "md5": "7c45ba946729e02905334ee2f3f18c43",
                "sha256": "86e23bd1d447b59f5c5343bada54f339f629d0569ca41280dbb2ca533bf317d8"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "7c45ba946729e02905334ee2f3f18c43",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 23465,
            "upload_time": "2023-12-01T22:53:46",
            "upload_time_iso_8601": "2023-12-01T22:53:46.520701Z",
            "url": "https://files.pythonhosted.org/packages/8f/75/605f4c779e0716c089ac81c3bf9098f2f83289d79955627e6db09d152284/pybcl-1.0.0-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3673d62ed16a9c517eeb74eeca89703051cacfad1fadadde9c278f5d09473474",
                "md5": "fca250163d75bdb4998729bd20d2cdb0",
                "sha256": "e0115cec97859948a1e3f959fc978eefc3662dda5e5b1dec546b2dd70fa8624b"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fca250163d75bdb4998729bd20d2cdb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 25284,
            "upload_time": "2023-12-01T22:53:48",
            "upload_time_iso_8601": "2023-12-01T22:53:48.052334Z",
            "url": "https://files.pythonhosted.org/packages/36/73/d62ed16a9c517eeb74eeca89703051cacfad1fadadde9c278f5d09473474/pybcl-1.0.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e87abbc79e14d50e274657482fab5db36868b9d07933a2d6c96ee891ae0837b5",
                "md5": "42297fa7ebe411e65850eff2a92947e6",
                "sha256": "ff856d5012200d59750159ccef8498d5e9ea5966c717f489f2da769aba16a534"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "42297fa7ebe411e65850eff2a92947e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 24125,
            "upload_time": "2023-12-01T22:53:49",
            "upload_time_iso_8601": "2023-12-01T22:53:49.367111Z",
            "url": "https://files.pythonhosted.org/packages/e8/7a/bbc79e14d50e274657482fab5db36868b9d07933a2d6c96ee891ae0837b5/pybcl-1.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68d6465c5e03d4cb26a3ae337db4564dc64b475db294f9898c3652342d818479",
                "md5": "67c6cf265c5338a1f966053c2c823843",
                "sha256": "1b9c9e8d595bcdacdf5450091af30601bdcec2dcaf112f7391fde3c9ccba0a9b"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "67c6cf265c5338a1f966053c2c823843",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 64551,
            "upload_time": "2023-12-01T22:53:50",
            "upload_time_iso_8601": "2023-12-01T22:53:50.647461Z",
            "url": "https://files.pythonhosted.org/packages/68/d6/465c5e03d4cb26a3ae337db4564dc64b475db294f9898c3652342d818479/pybcl-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a897777d237c0b6468ca6d4002cd0ad94dd759bbbb72810af8ba5a7721bd1713",
                "md5": "a6bb21552b180a06685f9676c36ac2d0",
                "sha256": "6c18081c509b6620bdd1e186d3305b3eb578bbb1fecce61f877b636a6e75554f"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a6bb21552b180a06685f9676c36ac2d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 69472,
            "upload_time": "2023-12-01T22:53:51",
            "upload_time_iso_8601": "2023-12-01T22:53:51.904776Z",
            "url": "https://files.pythonhosted.org/packages/a8/97/777d237c0b6468ca6d4002cd0ad94dd759bbbb72810af8ba5a7721bd1713/pybcl-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcb95cf89680c34968bb041a8924b880bc2899c46af9c9100e2fafce2af0a7d1",
                "md5": "eecb971f7de91c71eb98c30175863f8d",
                "sha256": "5f28c0e6238bfd6acda73da40a64424e5d6baf209f7b825135cfa84d2942d585"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "eecb971f7de91c71eb98c30175863f8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 73931,
            "upload_time": "2023-12-01T22:53:52",
            "upload_time_iso_8601": "2023-12-01T22:53:52.862750Z",
            "url": "https://files.pythonhosted.org/packages/bc/b9/5cf89680c34968bb041a8924b880bc2899c46af9c9100e2fafce2af0a7d1/pybcl-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8524c43c7ac17796c820db8cb021c6a63667fda4aaa6beb245ee88307a8725c1",
                "md5": "eaeec880dfadb0a50a25a77c483673b5",
                "sha256": "68e143401ee9485cc9c65dde8929f310ddf40add779f4999e0a2ab75a3974380"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "eaeec880dfadb0a50a25a77c483673b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 62931,
            "upload_time": "2023-12-01T22:53:53",
            "upload_time_iso_8601": "2023-12-01T22:53:53.752960Z",
            "url": "https://files.pythonhosted.org/packages/85/24/c43c7ac17796c820db8cb021c6a63667fda4aaa6beb245ee88307a8725c1/pybcl-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef53f832d587f88682e7f3cc82e38a13b684cf059d42bb9d82a250fce3774e56",
                "md5": "8c32b05bfbd0757d48ce255800c03fa0",
                "sha256": "03d772a0239d5f33c5cff4db7622cec73a3c0aead9729e2625ee57c21b1082ae"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c32b05bfbd0757d48ce255800c03fa0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 64715,
            "upload_time": "2023-12-01T22:53:54",
            "upload_time_iso_8601": "2023-12-01T22:53:54.696992Z",
            "url": "https://files.pythonhosted.org/packages/ef/53/f832d587f88682e7f3cc82e38a13b684cf059d42bb9d82a250fce3774e56/pybcl-1.0.0-cp312-cp312-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": "66b38c13e8eb2b4a5de551f3668239ba788aa942e39ad9cb6f6f1a85397582f3",
                "md5": "ef4213269107e47f755bdf191088140f",
                "sha256": "9487959e451bd6995b4c09f469a59362d8a8180ef031f23641fb0aec503c23c9"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef4213269107e47f755bdf191088140f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 66712,
            "upload_time": "2023-12-01T22:53:55",
            "upload_time_iso_8601": "2023-12-01T22:53:55.604751Z",
            "url": "https://files.pythonhosted.org/packages/66/b3/8c13e8eb2b4a5de551f3668239ba788aa942e39ad9cb6f6f1a85397582f3/pybcl-1.0.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00b3a6277eab5612c7b11f6e68ebe3c0eaf41a3b94c8f2603cef5381444e29df",
                "md5": "51010b98653c5a718d5bc2f9b497d3fb",
                "sha256": "009de527127e093e9c082912b3ceb3b2c7403f76a2529c2baf8fbd97cbd2b46c"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "51010b98653c5a718d5bc2f9b497d3fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 65401,
            "upload_time": "2023-12-01T22:53:56",
            "upload_time_iso_8601": "2023-12-01T22:53:56.532533Z",
            "url": "https://files.pythonhosted.org/packages/00/b3/a6277eab5612c7b11f6e68ebe3c0eaf41a3b94c8f2603cef5381444e29df/pybcl-1.0.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d93468ea317b8f50bf529d775952d27a262cc3d2e69b66a4f16bd5767c8a9849",
                "md5": "84420260b2ac67d27380c1d680eed0b9",
                "sha256": "cbb3adea3c3bc9b681eb0eb38c3d991d454712f8c9eabd0d6134a57a9ccb0ab0"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "84420260b2ac67d27380c1d680eed0b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 72297,
            "upload_time": "2023-12-01T22:53:58",
            "upload_time_iso_8601": "2023-12-01T22:53:58.011910Z",
            "url": "https://files.pythonhosted.org/packages/d9/34/68ea317b8f50bf529d775952d27a262cc3d2e69b66a4f16bd5767c8a9849/pybcl-1.0.0-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fac1ac2170317f7e36927b6d5a74aa3b512aaf3657dfc66b32737d5c036e1a5b",
                "md5": "10aefa418417c53e7707c8fa7a8fb028",
                "sha256": "35b9a16f817ea8230200e79f4b9f71cea11838a38b4e4c8e86f7289a4df4ff66"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "10aefa418417c53e7707c8fa7a8fb028",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 74210,
            "upload_time": "2023-12-01T22:53:58",
            "upload_time_iso_8601": "2023-12-01T22:53:58.945508Z",
            "url": "https://files.pythonhosted.org/packages/fa/c1/ac2170317f7e36927b6d5a74aa3b512aaf3657dfc66b32737d5c036e1a5b/pybcl-1.0.0-cp312-cp312-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af7d85d7a3b0ed368b00f6360dfb918a1783e652f1f9bb19ffe83746f0a1e32f",
                "md5": "22696bbf3d018b4e30e06a18eba8e56a",
                "sha256": "dda261bc59ced6d3578c5097ec6de5c9e5eac35da70c2a102011fe2aea352408"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22696bbf3d018b4e30e06a18eba8e56a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 66750,
            "upload_time": "2023-12-01T22:54:01",
            "upload_time_iso_8601": "2023-12-01T22:54:01.008715Z",
            "url": "https://files.pythonhosted.org/packages/af/7d/85d7a3b0ed368b00f6360dfb918a1783e652f1f9bb19ffe83746f0a1e32f/pybcl-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b61992a44fbe8759814fa830ceca479e0f62988c034203ef2cf6b4d3be6a4cb",
                "md5": "8a9a2384e5a63372321970ce1aa70331",
                "sha256": "18538eed3551a83cd8c682ebab1b539dfb10dc21f049913278f035dc4c5e7f4c"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "8a9a2384e5a63372321970ce1aa70331",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 23915,
            "upload_time": "2023-12-01T22:54:02",
            "upload_time_iso_8601": "2023-12-01T22:54:02.051940Z",
            "url": "https://files.pythonhosted.org/packages/7b/61/992a44fbe8759814fa830ceca479e0f62988c034203ef2cf6b4d3be6a4cb/pybcl-1.0.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57e7d6426e19ac48d9408c1930962e82b9bada46d8cc0d6d73149296dd6d44d8",
                "md5": "801610d06ab0f4c86d81603d449bddf4",
                "sha256": "4829004d37cd5b43aa42afc25f4419985a0a344921eb938eba2c8ebdd927e613"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "801610d06ab0f4c86d81603d449bddf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 26257,
            "upload_time": "2023-12-01T22:54:02",
            "upload_time_iso_8601": "2023-12-01T22:54:02.985741Z",
            "url": "https://files.pythonhosted.org/packages/57/e7/d6426e19ac48d9408c1930962e82b9bada46d8cc0d6d73149296dd6d44d8/pybcl-1.0.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31bbbeb92b5343825b9c82df2ada66d332415335838f05b86b6744c5313e9e31",
                "md5": "6dd4d82d50cc19c4121da2be87610caf",
                "sha256": "c8aa00f557642d889cad577a7a6bb9f5c1361ef0202ea2566906677d4f6fa896"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "6dd4d82d50cc19c4121da2be87610caf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 23473,
            "upload_time": "2023-12-01T22:54:03",
            "upload_time_iso_8601": "2023-12-01T22:54:03.832495Z",
            "url": "https://files.pythonhosted.org/packages/31/bb/beb92b5343825b9c82df2ada66d332415335838f05b86b6744c5313e9e31/pybcl-1.0.0-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed572c5c1c1a33e447753cc5e1e937b1d9e3eb96a64f5878920f041be5cea681",
                "md5": "2030af629ff68aff99d9a143da5a253c",
                "sha256": "e65ec07aa7dc43e828dc9bcd73eb270ca7371720d53ff8a71b4b30b36e0dd3e8"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2030af629ff68aff99d9a143da5a253c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 24821,
            "upload_time": "2023-12-01T22:54:05",
            "upload_time_iso_8601": "2023-12-01T22:54:05.378551Z",
            "url": "https://files.pythonhosted.org/packages/ed/57/2c5c1c1a33e447753cc5e1e937b1d9e3eb96a64f5878920f041be5cea681/pybcl-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "738cb772ef459642f7fcd4e35f2c58da25c3cab91ff164faafc887864b9a68fc",
                "md5": "ae5d914ca108c2010aa49da5ff0bad7e",
                "sha256": "e5049e0dcccc97f8e2c0bf9e60ca440147050f585b9986e4155dd5fbb471e3c5"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ae5d914ca108c2010aa49da5ff0bad7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 65120,
            "upload_time": "2023-12-01T22:54:06",
            "upload_time_iso_8601": "2023-12-01T22:54:06.232392Z",
            "url": "https://files.pythonhosted.org/packages/73/8c/b772ef459642f7fcd4e35f2c58da25c3cab91ff164faafc887864b9a68fc/pybcl-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77204f96e3dbe0c228dec82d0cff5cbd63d573f0c6d6083e96598e1bdd91aaf2",
                "md5": "1d985b7be67bca7343a0e44ad9441efc",
                "sha256": "4eb6b9a6acf9913778e569fe06c71affbf9cf38194da91bf5a4d0354ed4894b3"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1d985b7be67bca7343a0e44ad9441efc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 70328,
            "upload_time": "2023-12-01T22:54:07",
            "upload_time_iso_8601": "2023-12-01T22:54:07.683393Z",
            "url": "https://files.pythonhosted.org/packages/77/20/4f96e3dbe0c228dec82d0cff5cbd63d573f0c6d6083e96598e1bdd91aaf2/pybcl-1.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcb08c792142a8f88964f83f03b21e5680bcc4c51d8f630e49e18502349394b9",
                "md5": "f3530388f63d4773360d9d1a15bdc5cf",
                "sha256": "5b0df6078359c8dca3f4095ac8f592b6677483e8728f52df95970709a4b34cab"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f3530388f63d4773360d9d1a15bdc5cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 74578,
            "upload_time": "2023-12-01T22:54:08",
            "upload_time_iso_8601": "2023-12-01T22:54:08.841721Z",
            "url": "https://files.pythonhosted.org/packages/dc/b0/8c792142a8f88964f83f03b21e5680bcc4c51d8f630e49e18502349394b9/pybcl-1.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "261082dc424731020baa267adbdfcc046c11aa608fc613668c2b332f2d6652bd",
                "md5": "cc436bfbb4fcbbd01b10953937c95da3",
                "sha256": "b4df21f724682ab63659e9392f26d7c4dcc5d7fc91debe7f90272195e1858a51"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cc436bfbb4fcbbd01b10953937c95da3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 63592,
            "upload_time": "2023-12-01T22:54:09",
            "upload_time_iso_8601": "2023-12-01T22:54:09.800627Z",
            "url": "https://files.pythonhosted.org/packages/26/10/82dc424731020baa267adbdfcc046c11aa608fc613668c2b332f2d6652bd/pybcl-1.0.0-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": "cfbc4ddad00d5c3a5fb0d9f70ac0b084f85554582166713e7df74ce592e1dac3",
                "md5": "b89ed2c0c1286d1475cd8b9a77960184",
                "sha256": "659163fb81cdf00ca3cb03ec9de18b6afd493753612bede13f1b665773b69eed"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b89ed2c0c1286d1475cd8b9a77960184",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 65364,
            "upload_time": "2023-12-01T22:54:10",
            "upload_time_iso_8601": "2023-12-01T22:54:10.790872Z",
            "url": "https://files.pythonhosted.org/packages/cf/bc/4ddad00d5c3a5fb0d9f70ac0b084f85554582166713e7df74ce592e1dac3/pybcl-1.0.0-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": "726e60c7cb2a8f00980dbb249496e61b8e474db2ba72a41241c2d1f8b2526856",
                "md5": "9098b1182c7fb7434297c579b5410499",
                "sha256": "7e4a27c0d9f6aef27398c49c6dfe25f9c93f874fde335b9753c996be98e6ca46"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9098b1182c7fb7434297c579b5410499",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 66849,
            "upload_time": "2023-12-01T22:54:11",
            "upload_time_iso_8601": "2023-12-01T22:54:11.739387Z",
            "url": "https://files.pythonhosted.org/packages/72/6e/60c7cb2a8f00980dbb249496e61b8e474db2ba72a41241c2d1f8b2526856/pybcl-1.0.0-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7aa98f53da768959d466265f3933dd444a0c130d95d64a4bbb5dee5343273815",
                "md5": "bcc64af7665c5057a282da62b67dedd8",
                "sha256": "078f7263086ad7f9d5a8b8d92bf3bfec65f95e28fa90a1ef42a31c6b37411332"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "bcc64af7665c5057a282da62b67dedd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 65631,
            "upload_time": "2023-12-01T22:54:12",
            "upload_time_iso_8601": "2023-12-01T22:54:12.740274Z",
            "url": "https://files.pythonhosted.org/packages/7a/a9/8f53da768959d466265f3933dd444a0c130d95d64a4bbb5dee5343273815/pybcl-1.0.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12a600443e4014248c83372df85284eb36a5416133957124b8e8ee4a8ef2adce",
                "md5": "77fa19188fe63a771fcfbe76c44b445d",
                "sha256": "913a148ea1eb7113c5a902cb90306f74e766a43d346e5f916b43d22a2f58e513"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "77fa19188fe63a771fcfbe76c44b445d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 72636,
            "upload_time": "2023-12-01T22:54:13",
            "upload_time_iso_8601": "2023-12-01T22:54:13.725837Z",
            "url": "https://files.pythonhosted.org/packages/12/a6/00443e4014248c83372df85284eb36a5416133957124b8e8ee4a8ef2adce/pybcl-1.0.0-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f58a38b537659952fcfd48056813d95c85ecde7addcaecf0d837fe0bbac8b00",
                "md5": "200420682eeae7ddbdfcc42958dd8701",
                "sha256": "19074fe3cf5e2f1ac2ec436575731d435b22ff54e2173e2d268dd1bc220e5693"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "200420682eeae7ddbdfcc42958dd8701",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 74492,
            "upload_time": "2023-12-01T22:54:14",
            "upload_time_iso_8601": "2023-12-01T22:54:14.673859Z",
            "url": "https://files.pythonhosted.org/packages/0f/58/a38b537659952fcfd48056813d95c85ecde7addcaecf0d837fe0bbac8b00/pybcl-1.0.0-cp37-cp37m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2222298d1ba8524a5fc242f1963ee62211f10e06ec35b9560412fdd73a9fc433",
                "md5": "86a29ce8df8304afaab9f36bdb38a91b",
                "sha256": "31b07c0113e6d899ba456c059e721f527530ee51a221fe9a86535e6e7fe25641"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86a29ce8df8304afaab9f36bdb38a91b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 66921,
            "upload_time": "2023-12-01T22:54:15",
            "upload_time_iso_8601": "2023-12-01T22:54:15.618052Z",
            "url": "https://files.pythonhosted.org/packages/22/22/298d1ba8524a5fc242f1963ee62211f10e06ec35b9560412fdd73a9fc433/pybcl-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "547ca2bda8dcb9d8aa6d9d5dd63a10163315c5e7a2c89244300639896a6ea9a4",
                "md5": "65c28d94ad43ba61deb5a73a9e6d6fe0",
                "sha256": "9d426bb164add1c3b9eb64ed3b04b9fa63135a8f228e41f376717ecbba9ee36e"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "65c28d94ad43ba61deb5a73a9e6d6fe0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 23450,
            "upload_time": "2023-12-01T22:54:16",
            "upload_time_iso_8601": "2023-12-01T22:54:16.947565Z",
            "url": "https://files.pythonhosted.org/packages/54/7c/a2bda8dcb9d8aa6d9d5dd63a10163315c5e7a2c89244300639896a6ea9a4/pybcl-1.0.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fff019d85cfaa2da937ab87e73dac9d113c372c7a64f863159a01818fd4cc15",
                "md5": "3c6011a389c76a3624a3d7b5da31160b",
                "sha256": "ac4da5e7edb5ae7e129f772a4966db4dfb75d024c8e4f7b94801a4ac02a24485"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3c6011a389c76a3624a3d7b5da31160b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 25792,
            "upload_time": "2023-12-01T22:54:18",
            "upload_time_iso_8601": "2023-12-01T22:54:18.509348Z",
            "url": "https://files.pythonhosted.org/packages/0f/ff/019d85cfaa2da937ab87e73dac9d113c372c7a64f863159a01818fd4cc15/pybcl-1.0.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff0cf877262f44c550fcc9d69302f8461e5fed267063f363d9153a63a7318a79",
                "md5": "50b4511bb12824d8fc147a2ca506aeb5",
                "sha256": "ec51300123f6d9a9cb35eac2f3fd83520f6bd7d0c6c58c8a2df7efc910cde018"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50b4511bb12824d8fc147a2ca506aeb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 25364,
            "upload_time": "2023-12-01T22:54:19",
            "upload_time_iso_8601": "2023-12-01T22:54:19.948161Z",
            "url": "https://files.pythonhosted.org/packages/ff/0c/f877262f44c550fcc9d69302f8461e5fed267063f363d9153a63a7318a79/pybcl-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c08303f04b9690212377d37866a000d71a2c38c9ab25a18d1882a93536e67fce",
                "md5": "65364fa2da185f1087c30b00f0d9c698",
                "sha256": "99c9059bb39d3e1aa75d402a26f54b3dfcd4162bb333c02147a4e59675291b93"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "65364fa2da185f1087c30b00f0d9c698",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 24158,
            "upload_time": "2023-12-01T22:54:20",
            "upload_time_iso_8601": "2023-12-01T22:54:20.930860Z",
            "url": "https://files.pythonhosted.org/packages/c0/83/03f04b9690212377d37866a000d71a2c38c9ab25a18d1882a93536e67fce/pybcl-1.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdf6549c687a9bddaf227b78903d9d57106e68a641fe29467ba5c55a78ee3b01",
                "md5": "e3ccbb24830bc9fd42e1239faadbdd63",
                "sha256": "2bf77b4125d6cf88ea11c8c8d4956abfbb8193d3aac60da327fa1b21f65c5e94"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e3ccbb24830bc9fd42e1239faadbdd63",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 64902,
            "upload_time": "2023-12-01T22:54:21",
            "upload_time_iso_8601": "2023-12-01T22:54:21.826025Z",
            "url": "https://files.pythonhosted.org/packages/fd/f6/549c687a9bddaf227b78903d9d57106e68a641fe29467ba5c55a78ee3b01/pybcl-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6852805d27c2d43f9d8ca0b7b52e00ed2caaaee8b6e37a9f6ef4868c2353ef7",
                "md5": "8762de4c8b8c0c9d1b9d5cd8f10891b7",
                "sha256": "e664244138b96b85f71c6885d880d2ab0581ecc1ec4a53738cd846ffe28b22d2"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8762de4c8b8c0c9d1b9d5cd8f10891b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 69963,
            "upload_time": "2023-12-01T22:54:22",
            "upload_time_iso_8601": "2023-12-01T22:54:22.839793Z",
            "url": "https://files.pythonhosted.org/packages/a6/85/2805d27c2d43f9d8ca0b7b52e00ed2caaaee8b6e37a9f6ef4868c2353ef7/pybcl-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1be0d207cd53a6c2207e43462cc96c77f01d969f646742c5cbcfdddedecc9a9",
                "md5": "3db6d1f74305a2e3cea82f14672857fd",
                "sha256": "e49292f745af9712a14f7d48ce37fb12a4a911482d102c1b55e93fa18453a6da"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3db6d1f74305a2e3cea82f14672857fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 74185,
            "upload_time": "2023-12-01T22:54:23",
            "upload_time_iso_8601": "2023-12-01T22:54:23.765264Z",
            "url": "https://files.pythonhosted.org/packages/c1/be/0d207cd53a6c2207e43462cc96c77f01d969f646742c5cbcfdddedecc9a9/pybcl-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "306b145ba6081e94d69cf0eb6a5f3a06180c48c05464b22015998f02ef8425c1",
                "md5": "435d7bb0660be3d0dff82a12e51f51c5",
                "sha256": "92191689a64439dec6ca9cad4b26833186b48f3ee8cc485adeacf59859a2c5aa"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "435d7bb0660be3d0dff82a12e51f51c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 63284,
            "upload_time": "2023-12-01T22:54:24",
            "upload_time_iso_8601": "2023-12-01T22:54:24.730568Z",
            "url": "https://files.pythonhosted.org/packages/30/6b/145ba6081e94d69cf0eb6a5f3a06180c48c05464b22015998f02ef8425c1/pybcl-1.0.0-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": "adc15c9dcf55083954f90f3c1a4a6d58843b65ba778b219b853b2ace188147b4",
                "md5": "e86775006de130adb5ac89ba7e3fed9f",
                "sha256": "c2b50e5e192ce09a575fc76c43e5a269d313162117c94f292063cd6974e93bde"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e86775006de130adb5ac89ba7e3fed9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 65025,
            "upload_time": "2023-12-01T22:54:25",
            "upload_time_iso_8601": "2023-12-01T22:54:25.662569Z",
            "url": "https://files.pythonhosted.org/packages/ad/c1/5c9dcf55083954f90f3c1a4a6d58843b65ba778b219b853b2ace188147b4/pybcl-1.0.0-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": "3b73820d8a34aa175a15701d2b9364ef38ff9c1334dd5c01822aada3778459d2",
                "md5": "d67b03c46e1b369d685e55f44e1fa534",
                "sha256": "bfe44cc955395056ff97397856200b524c9ce213ceca2972ad83fe3ebfa35089"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d67b03c46e1b369d685e55f44e1fa534",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 66731,
            "upload_time": "2023-12-01T22:54:26",
            "upload_time_iso_8601": "2023-12-01T22:54:26.565007Z",
            "url": "https://files.pythonhosted.org/packages/3b/73/820d8a34aa175a15701d2b9364ef38ff9c1334dd5c01822aada3778459d2/pybcl-1.0.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02f1ee61ce418604df2282e894eee40b5c3a5019d1e291ea1dfc5418a870f121",
                "md5": "1b7ff590b596c065c45917aaf7ce0b17",
                "sha256": "f9fb80482dae03695237efc994c9e6985796befd4d8fc630be629b62aa67e8a7"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1b7ff590b596c065c45917aaf7ce0b17",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 65389,
            "upload_time": "2023-12-01T22:54:27",
            "upload_time_iso_8601": "2023-12-01T22:54:27.539666Z",
            "url": "https://files.pythonhosted.org/packages/02/f1/ee61ce418604df2282e894eee40b5c3a5019d1e291ea1dfc5418a870f121/pybcl-1.0.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7762042b5e5e6ec638ebea0ae0272bd66943a5fab9818793dd4a687204121360",
                "md5": "e9dfdb7853e9abe03dbda177b9129b02",
                "sha256": "8d837465fcb42ee373e6d2f803b696aeaefa777db2e536f847e84c69bc62bcc3"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e9dfdb7853e9abe03dbda177b9129b02",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 72463,
            "upload_time": "2023-12-01T22:54:28",
            "upload_time_iso_8601": "2023-12-01T22:54:28.513426Z",
            "url": "https://files.pythonhosted.org/packages/77/62/042b5e5e6ec638ebea0ae0272bd66943a5fab9818793dd4a687204121360/pybcl-1.0.0-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be3517a2ee03a8143f7c1c89f79fbbdf591905f4dd684fa682a54f890ec29c83",
                "md5": "4835b541dfd8722d08c167f46c7efff2",
                "sha256": "46d441bda063c81a36380e816b787e3d5378311afb69d341e16efcc9b6eb839f"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "4835b541dfd8722d08c167f46c7efff2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 74148,
            "upload_time": "2023-12-01T22:54:29",
            "upload_time_iso_8601": "2023-12-01T22:54:29.445770Z",
            "url": "https://files.pythonhosted.org/packages/be/35/17a2ee03a8143f7c1c89f79fbbdf591905f4dd684fa682a54f890ec29c83/pybcl-1.0.0-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2ee2bac7fe9f8abce9b83d686656c5c57ae42ea24c148a70b2bc6a332561399",
                "md5": "66977ed10ba674328262c0b5e059ba83",
                "sha256": "5a220515070462e9c41ba718a1ad7838e25fc4e8c187c352f22a79712f6e534a"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66977ed10ba674328262c0b5e059ba83",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 66712,
            "upload_time": "2023-12-01T22:54:30",
            "upload_time_iso_8601": "2023-12-01T22:54:30.488748Z",
            "url": "https://files.pythonhosted.org/packages/e2/ee/2bac7fe9f8abce9b83d686656c5c57ae42ea24c148a70b2bc6a332561399/pybcl-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4607100f1f44149570fef041d701682404ddcd9795a30f164e18a33790333b83",
                "md5": "3f4e0382b9aed066f5e78359cd110369",
                "sha256": "16000b42550882c5dbf3fdecafe6f69b0c66a6cd99221fe992aac8abee81fbb8"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "3f4e0382b9aed066f5e78359cd110369",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 23943,
            "upload_time": "2023-12-01T22:54:31",
            "upload_time_iso_8601": "2023-12-01T22:54:31.439564Z",
            "url": "https://files.pythonhosted.org/packages/46/07/100f1f44149570fef041d701682404ddcd9795a30f164e18a33790333b83/pybcl-1.0.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd7382eb7aa8cfb535a3d4fd1026fb1a4eab3f847b8383f11ce9ee7d27035fa3",
                "md5": "11ad86333db3b5ee6bf0d4699315fc57",
                "sha256": "b36777655ca063e6c86189aeac2c1a9fb17aa843a052131c15d435e080d6d2d2"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "11ad86333db3b5ee6bf0d4699315fc57",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 26274,
            "upload_time": "2023-12-01T22:54:32",
            "upload_time_iso_8601": "2023-12-01T22:54:32.610961Z",
            "url": "https://files.pythonhosted.org/packages/fd/73/82eb7aa8cfb535a3d4fd1026fb1a4eab3f847b8383f11ce9ee7d27035fa3/pybcl-1.0.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9bd4012515df5194d05bf7b8ab7575fc6ed4be1743d6eb1da2d0124882aa0825",
                "md5": "54ded0689b8a1ebac36ed797131daa55",
                "sha256": "223288fdb48ae98d3763637a56925b1576e6a389bb6c7a2a3f14a848007cbf13"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54ded0689b8a1ebac36ed797131daa55",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 25364,
            "upload_time": "2023-12-01T22:54:33",
            "upload_time_iso_8601": "2023-12-01T22:54:33.485869Z",
            "url": "https://files.pythonhosted.org/packages/9b/d4/012515df5194d05bf7b8ab7575fc6ed4be1743d6eb1da2d0124882aa0825/pybcl-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcb89b9b317b7bcd0beb74b31375b12e5c955854d938cf6c8eab8d319d0bdb48",
                "md5": "164065ecda5914b5796de3ea5aa48656",
                "sha256": "b1ff52df3d042b7d48d3d9f1c9b983900248fb27a1b35e29ae3c8b85af1be048"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "164065ecda5914b5796de3ea5aa48656",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 24160,
            "upload_time": "2023-12-01T22:54:34",
            "upload_time_iso_8601": "2023-12-01T22:54:34.658407Z",
            "url": "https://files.pythonhosted.org/packages/fc/b8/9b9b317b7bcd0beb74b31375b12e5c955854d938cf6c8eab8d319d0bdb48/pybcl-1.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab89c66159856416f54acd844955096e624d2492f87423fb46919b6ed8487981",
                "md5": "d39d4e7a987e85d576419ad9ac94759d",
                "sha256": "d3701d1d190b0d81d34558225376377f1864fa235de6a141ad20f282db3691c8"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d39d4e7a987e85d576419ad9ac94759d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 64132,
            "upload_time": "2023-12-01T22:54:35",
            "upload_time_iso_8601": "2023-12-01T22:54:35.651205Z",
            "url": "https://files.pythonhosted.org/packages/ab/89/c66159856416f54acd844955096e624d2492f87423fb46919b6ed8487981/pybcl-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44722ef86583a3c064dbcd20c4cfed4e903b1649d44875e827d0e0cc09e4d757",
                "md5": "40a0fd58e5008bb521a7911ea50f633b",
                "sha256": "581a9794b2d5b287dc11e03f0ebefaf78762047b0a147894c0988b5b966b51b8"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "40a0fd58e5008bb521a7911ea50f633b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 69251,
            "upload_time": "2023-12-01T22:54:36",
            "upload_time_iso_8601": "2023-12-01T22:54:36.581525Z",
            "url": "https://files.pythonhosted.org/packages/44/72/2ef86583a3c064dbcd20c4cfed4e903b1649d44875e827d0e0cc09e4d757/pybcl-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e60c431e77b68932d6af6c5d0d05a64f2fe949be07c1783e8bc6ea5c2f0e920",
                "md5": "2c27ff521b98e2e9d63d51af1c565171",
                "sha256": "bca082475a965ffbc95074a09c48cf81fa010116e90becf1476eeb118b686019"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2c27ff521b98e2e9d63d51af1c565171",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 73506,
            "upload_time": "2023-12-01T22:54:37",
            "upload_time_iso_8601": "2023-12-01T22:54:37.688656Z",
            "url": "https://files.pythonhosted.org/packages/7e/60/c431e77b68932d6af6c5d0d05a64f2fe949be07c1783e8bc6ea5c2f0e920/pybcl-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bfd40ef6c2c6be4bba93670f99f7978771084a03ffabd0fcc36c8604aabf7e19",
                "md5": "4db38357b628010df4b497a87b934907",
                "sha256": "d2daa42f7796ea052c8aab753d233854408554e72c26836b90180258e8f6ce8d"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4db38357b628010df4b497a87b934907",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 62539,
            "upload_time": "2023-12-01T22:54:39",
            "upload_time_iso_8601": "2023-12-01T22:54:39.458376Z",
            "url": "https://files.pythonhosted.org/packages/bf/d4/0ef6c2c6be4bba93670f99f7978771084a03ffabd0fcc36c8604aabf7e19/pybcl-1.0.0-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": "58ce3357ffbb59d55bf6870ede51551f0e3ca4d7bb8756e3a6e6701c344778f9",
                "md5": "f59e7a41744dcee5ce5c8455752bc0c9",
                "sha256": "90fec65d211df3c2f08781307d9eb6ca6752930db70d31276683ff38f81d25c5"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f59e7a41744dcee5ce5c8455752bc0c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 64286,
            "upload_time": "2023-12-01T22:54:41",
            "upload_time_iso_8601": "2023-12-01T22:54:41.031087Z",
            "url": "https://files.pythonhosted.org/packages/58/ce/3357ffbb59d55bf6870ede51551f0e3ca4d7bb8756e3a6e6701c344778f9/pybcl-1.0.0-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": "561aba7c202e9eaca3e4eb0c87909eca87d34c13c485e7b27ee46188fc25fe63",
                "md5": "08c515409c5a97990d5f6fb5810294e6",
                "sha256": "d487e2ad26ed315016e17bdebeb093c59f216a467c11c38b781505893f7487e8"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "08c515409c5a97990d5f6fb5810294e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 66282,
            "upload_time": "2023-12-01T22:54:42",
            "upload_time_iso_8601": "2023-12-01T22:54:42.159470Z",
            "url": "https://files.pythonhosted.org/packages/56/1a/ba7c202e9eaca3e4eb0c87909eca87d34c13c485e7b27ee46188fc25fe63/pybcl-1.0.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ce49474da194bba98b594ad8f3869c558a7552b11a54a77cf94abcd23cf82fa",
                "md5": "c976d53224cca1e2a5956769a81de366",
                "sha256": "747231ad8e31b0b8759a8184476c5dc434fd50f087f7d2d6b573b4f4c4bb41bf"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c976d53224cca1e2a5956769a81de366",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 65011,
            "upload_time": "2023-12-01T22:54:43",
            "upload_time_iso_8601": "2023-12-01T22:54:43.815143Z",
            "url": "https://files.pythonhosted.org/packages/7c/e4/9474da194bba98b594ad8f3869c558a7552b11a54a77cf94abcd23cf82fa/pybcl-1.0.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "382e0ef16e32c4ecd7c6ec98a4e82607ef39138d301bbd114a24984fcab92b24",
                "md5": "1577dacb501cd32f62cfcce9b95638b2",
                "sha256": "4f571b78b712a3d7528160a7ed455199e0089acabd10d29ae8a733a9a7917fcf"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1577dacb501cd32f62cfcce9b95638b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 72016,
            "upload_time": "2023-12-01T22:54:45",
            "upload_time_iso_8601": "2023-12-01T22:54:45.382561Z",
            "url": "https://files.pythonhosted.org/packages/38/2e/0ef16e32c4ecd7c6ec98a4e82607ef39138d301bbd114a24984fcab92b24/pybcl-1.0.0-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7872cb9e70eb956d0062b3cbdb20af20a2d160bc83895b3da9c51e940f274634",
                "md5": "a88655c22ad604d39abee7b035415390",
                "sha256": "bc00fc26fe9b89024f4511c1f2653f7cf3ad907c1fac7d37b04dfece82ba3f1a"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "a88655c22ad604d39abee7b035415390",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 73778,
            "upload_time": "2023-12-01T22:54:46",
            "upload_time_iso_8601": "2023-12-01T22:54:46.536667Z",
            "url": "https://files.pythonhosted.org/packages/78/72/cb9e70eb956d0062b3cbdb20af20a2d160bc83895b3da9c51e940f274634/pybcl-1.0.0-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e1d7835f4b1bf28bc08b610a1fa10b6b0ea343b481132e90f4e71e6fdb5da00",
                "md5": "39baba2fa518c55e0d984d2714345066",
                "sha256": "ad112b531c140a5023e7723bff66bc6ffec5eb8dd558ba0d751c46cc8a9d1ddb"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39baba2fa518c55e0d984d2714345066",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 66294,
            "upload_time": "2023-12-01T22:54:48",
            "upload_time_iso_8601": "2023-12-01T22:54:48.033621Z",
            "url": "https://files.pythonhosted.org/packages/8e/1d/7835f4b1bf28bc08b610a1fa10b6b0ea343b481132e90f4e71e6fdb5da00/pybcl-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5f5f231a7933fbc6319864d19514ce156763ecd5a296d0fbe82e7a1ea31a5dd",
                "md5": "436d08c52a44cadee011dddda92501b1",
                "sha256": "f71eeede4f544e0f60f6dea8fe1ee509afc6310038e9da5b57dc941fa5859505"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "436d08c52a44cadee011dddda92501b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 23940,
            "upload_time": "2023-12-01T22:54:49",
            "upload_time_iso_8601": "2023-12-01T22:54:49.040409Z",
            "url": "https://files.pythonhosted.org/packages/c5/f5/f231a7933fbc6319864d19514ce156763ecd5a296d0fbe82e7a1ea31a5dd/pybcl-1.0.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "007b4599486db55da372880db7bcb852ec3164691e4286eb873d1f2c051182f1",
                "md5": "572d208992e9b357e2c944078516fc81",
                "sha256": "cfb76b8d6d396912fb964f1e44164943334857ea7c26191a8f5cb37b9452cb3f"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "572d208992e9b357e2c944078516fc81",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 26271,
            "upload_time": "2023-12-01T22:54:49",
            "upload_time_iso_8601": "2023-12-01T22:54:49.927538Z",
            "url": "https://files.pythonhosted.org/packages/00/7b/4599486db55da372880db7bcb852ec3164691e4286eb873d1f2c051182f1/pybcl-1.0.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff7e4978f6226195084e7cb81a0bb73f30fb8b1f889555f718dde1a7b62f0aad",
                "md5": "47b4619d0ec79c3c0e012ecb61813696",
                "sha256": "826a1c659d4623d03d467cd84d615c105ece244dd320f5c51daa120cac35ff97"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "47b4619d0ec79c3c0e012ecb61813696",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 23480,
            "upload_time": "2023-12-01T22:54:51",
            "upload_time_iso_8601": "2023-12-01T22:54:51.034993Z",
            "url": "https://files.pythonhosted.org/packages/ff/7e/4978f6226195084e7cb81a0bb73f30fb8b1f889555f718dde1a7b62f0aad/pybcl-1.0.0-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "540330dd38444552103d0584a72615dc17fa29f9dbae46a36e8c6cab947eea20",
                "md5": "7280350973c351f0e9ed68c343654602",
                "sha256": "9856b5b08b23b93ee4245d767d5afa7856c6d402fd0bf16e353d30b31b4cd551"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7280350973c351f0e9ed68c343654602",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 24498,
            "upload_time": "2023-12-01T22:54:52",
            "upload_time_iso_8601": "2023-12-01T22:54:52.009175Z",
            "url": "https://files.pythonhosted.org/packages/54/03/30dd38444552103d0584a72615dc17fa29f9dbae46a36e8c6cab947eea20/pybcl-1.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19c07840f95dd4847c46be5d82e58c723f1b681eb0a10d0a9e7756da63edf1c2",
                "md5": "0cccc5765b0a415251de9a88783cdf0d",
                "sha256": "28e4a4f25ca16f36c0d48f5136f432e26323e96082ec3b6808594225a874d117"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0cccc5765b0a415251de9a88783cdf0d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 24939,
            "upload_time": "2023-12-01T22:54:52",
            "upload_time_iso_8601": "2023-12-01T22:54:52.906573Z",
            "url": "https://files.pythonhosted.org/packages/19/c0/7840f95dd4847c46be5d82e58c723f1b681eb0a10d0a9e7756da63edf1c2/pybcl-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4b1c45166f03ded1e33484d6dde1cd5ea4f6b78679dc81dc01985083f98d5cc",
                "md5": "5ab16cfb5372be584e65ec7bba2d0a3c",
                "sha256": "550d9527da416220e3ebd91a28bb301732fb964b50a9e5b957d5efff09908d44"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5ab16cfb5372be584e65ec7bba2d0a3c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 24385,
            "upload_time": "2023-12-01T22:54:53",
            "upload_time_iso_8601": "2023-12-01T22:54:53.855753Z",
            "url": "https://files.pythonhosted.org/packages/a4/b1/c45166f03ded1e33484d6dde1cd5ea4f6b78679dc81dc01985083f98d5cc/pybcl-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "068fb5d728bbafc1f146abfa03bdde426aebf25bf3dce9ae38efbda61958f4af",
                "md5": "33e1d1524506ff64adfcbf5b17ef829d",
                "sha256": "094f0a21712af5505be3d18cb78850d8f3cef16001c678df53f7d961b040c209"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33e1d1524506ff64adfcbf5b17ef829d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 23881,
            "upload_time": "2023-12-01T22:54:55",
            "upload_time_iso_8601": "2023-12-01T22:54:55.552815Z",
            "url": "https://files.pythonhosted.org/packages/06/8f/b5d728bbafc1f146abfa03bdde426aebf25bf3dce9ae38efbda61958f4af/pybcl-1.0.0-pp310-pypy310_pp73-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": "1ef52d2dde4f2acd5e546f9db588ecebd8799fd5ab72ffa283541a4e3d756493",
                "md5": "01b7ff27f9328fc0ebe0356bb28841f0",
                "sha256": "5c34bb6394f7e59e4f1f0d2dabbfa861a89cdca336da00e02fcfa08868d335a5"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "01b7ff27f9328fc0ebe0356bb28841f0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 26246,
            "upload_time": "2023-12-01T22:54:57",
            "upload_time_iso_8601": "2023-12-01T22:54:57.023990Z",
            "url": "https://files.pythonhosted.org/packages/1e/f5/2d2dde4f2acd5e546f9db588ecebd8799fd5ab72ffa283541a4e3d756493/pybcl-1.0.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c7d4934adf56ab8b5a71852cbd73a446ab1079b1dae552848017afa53829bb9",
                "md5": "564dd36321d9a2217f92c28f3f8700f6",
                "sha256": "20c104cabb3f5bbe031e1768a1bd334e0da137b2dd24cca6f41d0b20c30a802b"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "564dd36321d9a2217f92c28f3f8700f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 24524,
            "upload_time": "2023-12-01T22:54:58",
            "upload_time_iso_8601": "2023-12-01T22:54:58.198044Z",
            "url": "https://files.pythonhosted.org/packages/1c/7d/4934adf56ab8b5a71852cbd73a446ab1079b1dae552848017afa53829bb9/pybcl-1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e56b3d2b180a4e8c768de3d030855ba5a989ededd77192659bfb3f9eb6325a91",
                "md5": "b4414fce764cbafdb2c9997fe8ef831b",
                "sha256": "b6c7c988337974d520d37053c12bad1ef14e099052095dea21b00fbd9ae7d6a5"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b4414fce764cbafdb2c9997fe8ef831b",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 24953,
            "upload_time": "2023-12-01T22:54:59",
            "upload_time_iso_8601": "2023-12-01T22:54:59.129933Z",
            "url": "https://files.pythonhosted.org/packages/e5/6b/3d2b180a4e8c768de3d030855ba5a989ededd77192659bfb3f9eb6325a91/pybcl-1.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d890709264a89ca37c491781eb2b3c9fc8ba605009d6918796772ee80f9c5aa",
                "md5": "d58631479653006145625ef1087d7f07",
                "sha256": "aa927c9b73f56d12b44e7d8479749d40f69adc0a368a684081ab15c1aad9b359"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d58631479653006145625ef1087d7f07",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 24534,
            "upload_time": "2023-12-01T22:55:00",
            "upload_time_iso_8601": "2023-12-01T22:55:00.018768Z",
            "url": "https://files.pythonhosted.org/packages/0d/89/0709264a89ca37c491781eb2b3c9fc8ba605009d6918796772ee80f9c5aa/pybcl-1.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b8456be2951d4003e1dda297f96c5a7d5a33f855fc196b028044d7a78602875",
                "md5": "f44767365e7248bcd6dd4c9601571395",
                "sha256": "6d3128aa2cda0b97858f07773eafcce7a19b91eb7ebc1ac9cc2c16057f4fa546"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f44767365e7248bcd6dd4c9601571395",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 23992,
            "upload_time": "2023-12-01T22:55:01",
            "upload_time_iso_8601": "2023-12-01T22:55:01.423200Z",
            "url": "https://files.pythonhosted.org/packages/8b/84/56be2951d4003e1dda297f96c5a7d5a33f855fc196b028044d7a78602875/pybcl-1.0.0-pp37-pypy37_pp73-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": "059c732ef1016fbfb53b044e30bb00c0c2ed2c47eb007abd4ac90333f6cd9dfc",
                "md5": "91ddd013788fbbcb0bb7df18c9d14aa4",
                "sha256": "ca3fe66f0d73d6b381247e633563e6e959c6662ed15a06d2f88c14c92194b8ce"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "91ddd013788fbbcb0bb7df18c9d14aa4",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 26272,
            "upload_time": "2023-12-01T22:55:02",
            "upload_time_iso_8601": "2023-12-01T22:55:02.387364Z",
            "url": "https://files.pythonhosted.org/packages/05/9c/732ef1016fbfb53b044e30bb00c0c2ed2c47eb007abd4ac90333f6cd9dfc/pybcl-1.0.0-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ce76a0d3cb2568386bc0541eb123eefa83e5692defb38b23f0920ba7df1ae01",
                "md5": "1bb67905f93afd016bd8c092a10c2dec",
                "sha256": "4e2e631e67c9646c20832d6416d7a70685da3a73b4ed350b702e029cba067bf3"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1bb67905f93afd016bd8c092a10c2dec",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 24524,
            "upload_time": "2023-12-01T22:55:03",
            "upload_time_iso_8601": "2023-12-01T22:55:03.686886Z",
            "url": "https://files.pythonhosted.org/packages/9c/e7/6a0d3cb2568386bc0541eb123eefa83e5692defb38b23f0920ba7df1ae01/pybcl-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d970db6991ba2cf7f84ead046f7b9ca89f504efb7bba2d24599f03eade9c543",
                "md5": "a36fd47feab1855308ecfc3703db048a",
                "sha256": "47ec3637a6b5d24bfbfa30664e0f2447b50382a8e42090d2e41c78135fd7b886"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a36fd47feab1855308ecfc3703db048a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 24963,
            "upload_time": "2023-12-01T22:55:05",
            "upload_time_iso_8601": "2023-12-01T22:55:05.037851Z",
            "url": "https://files.pythonhosted.org/packages/9d/97/0db6991ba2cf7f84ead046f7b9ca89f504efb7bba2d24599f03eade9c543/pybcl-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8c7500eb433926de051e2b7e3119bad07be93beec28561ce8cf75a50c319e29",
                "md5": "ea16f2787a0c351f855fc39791e93bad",
                "sha256": "25b00fb9f5af110eeb3aa7ea4afd29274c45caeda5479f45899433257f671c4f"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ea16f2787a0c351f855fc39791e93bad",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 24406,
            "upload_time": "2023-12-01T22:55:06",
            "upload_time_iso_8601": "2023-12-01T22:55:06.876562Z",
            "url": "https://files.pythonhosted.org/packages/e8/c7/500eb433926de051e2b7e3119bad07be93beec28561ce8cf75a50c319e29/pybcl-1.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cabd7a149412bb5193a18c730cee01015711369d8d0340e8975e27e87228f6eb",
                "md5": "8254c7f093f97f31ec65479cc5e7bf38",
                "sha256": "19e62c230fdb7c25f7a53d60e9778568f41ce52e5f6822df484448d4e9226d46"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8254c7f093f97f31ec65479cc5e7bf38",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 23898,
            "upload_time": "2023-12-01T22:55:07",
            "upload_time_iso_8601": "2023-12-01T22:55:07.854707Z",
            "url": "https://files.pythonhosted.org/packages/ca/bd/7a149412bb5193a18c730cee01015711369d8d0340e8975e27e87228f6eb/pybcl-1.0.0-pp38-pypy38_pp73-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": "6020eda273188296c83b4dbcf29719d0ebb57a860313f8e507c8949edb0b6aaa",
                "md5": "4f65057e50211d05c94dcdc0b6271e3a",
                "sha256": "8aa5ec7ba2d5ff1f1e1d30b491f0d3d67d116c3dd95c6b5d2750a63b06141696"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4f65057e50211d05c94dcdc0b6271e3a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 26268,
            "upload_time": "2023-12-01T22:55:08",
            "upload_time_iso_8601": "2023-12-01T22:55:08.812371Z",
            "url": "https://files.pythonhosted.org/packages/60/20/eda273188296c83b4dbcf29719d0ebb57a860313f8e507c8949edb0b6aaa/pybcl-1.0.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdbc70bba9411d5de4a97f94070ef1fbd6252703d2e81c1ba11380c58c8e9d1c",
                "md5": "52a82177126dfd4f8029432605becf15",
                "sha256": "a8b2c490035c9e2affa4ac9e66648700d825fea83860b0d8d7f1200c2f00e6db"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52a82177126dfd4f8029432605becf15",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 24524,
            "upload_time": "2023-12-01T22:55:09",
            "upload_time_iso_8601": "2023-12-01T22:55:09.742235Z",
            "url": "https://files.pythonhosted.org/packages/cd/bc/70bba9411d5de4a97f94070ef1fbd6252703d2e81c1ba11380c58c8e9d1c/pybcl-1.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d305c2c5214282a6e64536ccc672238859dcbbd9c63f50abcd843b1d2a65155",
                "md5": "eb1adb480aeedc8a4efea5de4a30e294",
                "sha256": "7490751525731b721230a00217b6a10b40104289ee87747f4c0ec5e5a8df0af0"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eb1adb480aeedc8a4efea5de4a30e294",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 24964,
            "upload_time": "2023-12-01T22:55:11",
            "upload_time_iso_8601": "2023-12-01T22:55:11.459991Z",
            "url": "https://files.pythonhosted.org/packages/4d/30/5c2c5214282a6e64536ccc672238859dcbbd9c63f50abcd843b1d2a65155/pybcl-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "deb4e601f4e1d66b65a4e8500b287600894d002e6aa8e54eea51c4f1fa84a00d",
                "md5": "55f8df1e1c35636683068c2be4d3c04c",
                "sha256": "5b0335137d0dfcad06c482e539681bf336f8bf30bf999fbe89d715a6622d4dd0"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "55f8df1e1c35636683068c2be4d3c04c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 24407,
            "upload_time": "2023-12-01T22:55:12",
            "upload_time_iso_8601": "2023-12-01T22:55:12.415712Z",
            "url": "https://files.pythonhosted.org/packages/de/b4/e601f4e1d66b65a4e8500b287600894d002e6aa8e54eea51c4f1fa84a00d/pybcl-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8146cd20e5b9376b9f98a4e43bbf25595d063c395ddf82d767c95d335efd934",
                "md5": "900f7213888381da64d51a3311dfb81a",
                "sha256": "e65989b2f34e319043875aa9b81e29f26f1b827f76b99bdaaa0722a8a7558271"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "900f7213888381da64d51a3311dfb81a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 23897,
            "upload_time": "2023-12-01T22:55:13",
            "upload_time_iso_8601": "2023-12-01T22:55:13.611047Z",
            "url": "https://files.pythonhosted.org/packages/d8/14/6cd20e5b9376b9f98a4e43bbf25595d063c395ddf82d767c95d335efd934/pybcl-1.0.0-pp39-pypy39_pp73-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": "a5b91b88f6946f34cf090373acc5fc396c5f7612641f5be2693dd085b4b9cc94",
                "md5": "b4e38fbde8dbb8f5809854b4d303e710",
                "sha256": "9360e4954534e3f82700534976b2889ffba7daf2c010467733e8c9e4dcb9622f"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b4e38fbde8dbb8f5809854b4d303e710",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 26270,
            "upload_time": "2023-12-01T22:55:14",
            "upload_time_iso_8601": "2023-12-01T22:55:14.567928Z",
            "url": "https://files.pythonhosted.org/packages/a5/b9/1b88f6946f34cf090373acc5fc396c5f7612641f5be2693dd085b4b9cc94/pybcl-1.0.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd51f05bbc53611bca6903871d5499dda74f331aecdef5f974221b5513605f6d",
                "md5": "67e8df34dd92b6d92249a57a9ffdcf58",
                "sha256": "004c553ec045d4118e8f8257eb114bb34746c8c15966528dca8e06a11f42d5f1"
            },
            "downloads": -1,
            "filename": "pybcl-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "67e8df34dd92b6d92249a57a9ffdcf58",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 65455,
            "upload_time": "2023-12-01T22:55:15",
            "upload_time_iso_8601": "2023-12-01T22:55:15.490596Z",
            "url": "https://files.pythonhosted.org/packages/bd/51/f05bbc53611bca6903871d5499dda74f331aecdef5f974221b5513605f6d/pybcl-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-01 22:55:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "AT0myks",
    "github_project": "pybcl",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pybcl"
}
        
Elapsed time: 0.14691s