chiabip158


Namechiabip158 JSON
Version 1.5.1 PyPI version JSON
download
home_pagehttps://github.com/Chia-Network/chiabip158
SummaryChia BIP158 (wraps C++)
upload_time2024-03-15 17:25:35
maintainer
docs_urlNone
authorMariano Sorgente
requires_python>=3.7
licenseApache License
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Chia BIP158

![Build](https://github.com/Chia-Network/chiabip158/workflows/Build/badge.svg)
![PyPI](https://img.shields.io/pypi/v/chiabip158?logo=pypi)
![PyPI - Format](https://img.shields.io/pypi/format/chiabip158?logo=pypi)
![GitHub](https://img.shields.io/github/license/Chia-Network/chiabip158?logo=Github)

[![Total alerts](https://img.shields.io/lgtm/alerts/g/Chia-Network/chiabip158.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Chia-Network/chiabip158/alerts/)
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/Chia-Network/chiabip158.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Chia-Network/chiabip158/context:python)
[![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/Chia-Network/chiabip158.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Chia-Network/chiabip158/context:cpp)

This implements the compact block filter construction in BIP 158. The code is
not used anywhere in the Bitcoin Core code base yet. The next step towards
BIP 157 support would be to create an indexing module similar to TxIndex that
constructs the basic and extended filters for each validated block.

## Install

```bash
python3 -m venv venv
. venv/bin/activate
pip3 install .
```

## Run python tests

```bash
python3 tests/simple_test.py
```

## Installation steps on a fresh OSX image

Install brew:

```bash
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

brew install python3  
brew install boost  
```

At this point the only error is can’t find boost_thread lib

The issue is the homebrew boost ships libboost_thread-mt libs but doesn’t
include plain libboost_thread, so clang can’t find it. Interestingly, homebrew
boost does have both plain and -mt files for the libboost_system libraries.

```bash
$ find /usr/local/lib/ | grep boost_thread  
libboost_thread-mt.a  
libboost_thread-mt.dylib  
```

Solution, with no guarantees that this is "the Right Way to do things", but
appears to work fine for the configure stage:

```bash
cd /usr/local/lib  
ln -s libboost_thread-mt.a libboost_thread.a  
ln -s libboost_thread-mt.dylib libboost_thread.dylib  
```

## ci Building

The primary build process for this repository is to use GitHub Actions to
build binary wheels for MacOS, Linux (x64 and aarch64), and Windows and publish
them with a source wheel on PyPi. See `.github/workflows/build.yml`. CMake uses
[FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html)
to download [pybind11](https://github.com/pybind/pybind11). Building is then
managed by [cibuildwheel](https://github.com/joerick/cibuildwheel). Further
installation is then available via `pip install chiabip158` e.g.

## Contributing and workflow

Contributions are welcome and more details are available in chia-blockchain's
[CONTRIBUTING.md](https://github.com/Chia-Network/chia-blockchain/blob/master/CONTRIBUTING.md).

The master branch is usually the currently released latest version on PyPI.
Note that at times chiabip158 will be ahead of the release version that
chia-blockchain requires in it's master/release version in preparation for a
new chia-blockchain release. Please branch or fork master and then create a
pull request to the master branch. Linear merging is enforced on master and
merging requires a completed review. PRs will kick off a GitHub actions ci
build and analysis of chiabip158 at
[lgtm.com](https://lgtm.com/projects/g/Chia-Network/chiabip158/?mode=list).
Please make sure your build is passing and that it does not increase alerts
at lgtm.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Chia-Network/chiabip158",
    "name": "chiabip158",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Mariano Sorgente",
    "author_email": "mariano@chia.net",
    "download_url": "https://files.pythonhosted.org/packages/31/7d/1e492cb76d2f7ab2ca5b242a027a7fd0a553fee0cf8a81cba05fb5c5afe1/chiabip158-1.5.1.tar.gz",
    "platform": null,
    "description": "# Chia BIP158\n\n![Build](https://github.com/Chia-Network/chiabip158/workflows/Build/badge.svg)\n![PyPI](https://img.shields.io/pypi/v/chiabip158?logo=pypi)\n![PyPI - Format](https://img.shields.io/pypi/format/chiabip158?logo=pypi)\n![GitHub](https://img.shields.io/github/license/Chia-Network/chiabip158?logo=Github)\n\n[![Total alerts](https://img.shields.io/lgtm/alerts/g/Chia-Network/chiabip158.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Chia-Network/chiabip158/alerts/)\n[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/Chia-Network/chiabip158.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Chia-Network/chiabip158/context:python)\n[![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/Chia-Network/chiabip158.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Chia-Network/chiabip158/context:cpp)\n\nThis implements the compact block filter construction in BIP 158. The code is\nnot used anywhere in the Bitcoin Core code base yet. The next step towards\nBIP 157 support would be to create an indexing module similar to TxIndex that\nconstructs the basic and extended filters for each validated block.\n\n## Install\n\n```bash\npython3 -m venv venv\n. venv/bin/activate\npip3 install .\n```\n\n## Run python tests\n\n```bash\npython3 tests/simple_test.py\n```\n\n## Installation steps on a fresh OSX image\n\nInstall brew:\n\n```bash\nruby -e \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\"\n\nbrew install python3  \nbrew install boost  \n```\n\nAt this point the only error is can\u2019t find boost_thread lib\n\nThe issue is the homebrew boost ships\u00a0libboost_thread-mt\u00a0libs but doesn\u2019t\ninclude plain\u00a0libboost_thread, so clang can\u2019t find it. Interestingly, homebrew\nboost does have both plain and\u00a0-mt\u00a0files for the\u00a0libboost_system\u00a0libraries.\n\n```bash\n$ find /usr/local/lib/ | grep boost_thread  \nlibboost_thread-mt.a  \nlibboost_thread-mt.dylib  \n```\n\nSolution, with no guarantees that this is \"the Right Way to do things\", but\nappears to work fine for the configure stage:\n\n```bash\ncd /usr/local/lib  \nln -s libboost_thread-mt.a libboost_thread.a  \nln -s libboost_thread-mt.dylib libboost_thread.dylib  \n```\n\n## ci Building\n\nThe primary build process for this repository is to use GitHub Actions to\nbuild binary wheels for MacOS, Linux (x64 and aarch64), and Windows and publish\nthem with a source wheel on PyPi. See `.github/workflows/build.yml`. CMake uses\n[FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html)\nto download [pybind11](https://github.com/pybind/pybind11). Building is then\nmanaged by [cibuildwheel](https://github.com/joerick/cibuildwheel). Further\ninstallation is then available via `pip install chiabip158` e.g.\n\n## Contributing and workflow\n\nContributions are welcome and more details are available in chia-blockchain's\n[CONTRIBUTING.md](https://github.com/Chia-Network/chia-blockchain/blob/master/CONTRIBUTING.md).\n\nThe master branch is usually the currently released latest version on PyPI.\nNote that at times chiabip158 will be ahead of the release version that\nchia-blockchain requires in it's master/release version in preparation for a\nnew chia-blockchain release. Please branch or fork master and then create a\npull request to the master branch. Linear merging is enforced on master and\nmerging requires a completed review. PRs will kick off a GitHub actions ci\nbuild and analysis of chiabip158 at\n[lgtm.com](https://lgtm.com/projects/g/Chia-Network/chiabip158/?mode=list).\nPlease make sure your build is passing and that it does not increase alerts\nat lgtm.\n",
    "bugtrack_url": null,
    "license": "Apache License",
    "summary": "Chia BIP158 (wraps C++)",
    "version": "1.5.1",
    "project_urls": {
        "Homepage": "https://github.com/Chia-Network/chiabip158"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79190a8d3a0d797542f836c372671ebeb8da6e8642e723a655796bc6d462a71a",
                "md5": "25fb0057c37231c8a558dc6eb55212f8",
                "sha256": "c889ad321d4aca4e0a9820665d264d1822b8d2e2402eaf5a3d36a5fdb5502b76"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "25fb0057c37231c8a558dc6eb55212f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 150252,
            "upload_time": "2024-03-15T17:24:47",
            "upload_time_iso_8601": "2024-03-15T17:24:47.518528Z",
            "url": "https://files.pythonhosted.org/packages/79/19/0a8d3a0d797542f836c372671ebeb8da6e8642e723a655796bc6d462a71a/chiabip158-1.5.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a331a67a11b38e612da67fb186dd4e7c457034058964f02f11dc68a5a9f4c59",
                "md5": "2d2b2f1115c1f224e277405745123551",
                "sha256": "cda3bdf571919b510a739d0bfa4a936da6f2df0a87946c8f78b4d87e0a6c6274"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d2b2f1115c1f224e277405745123551",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 156040,
            "upload_time": "2024-03-15T17:24:50",
            "upload_time_iso_8601": "2024-03-15T17:24:50.321312Z",
            "url": "https://files.pythonhosted.org/packages/1a/33/1a67a11b38e612da67fb186dd4e7c457034058964f02f11dc68a5a9f4c59/chiabip158-1.5.1-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fc06515fefbab42635618c2b8936a636b311c6fc0837618e900a5bc531eea15",
                "md5": "8ac10d26a272f5a0819cf9b05399f9c5",
                "sha256": "54c31058d6425b707373c1d1ee377c5963bf0f027b36d1cb9efd93c251444bf8"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ac10d26a272f5a0819cf9b05399f9c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2395496,
            "upload_time": "2024-03-15T17:24:52",
            "upload_time_iso_8601": "2024-03-15T17:24:52.440448Z",
            "url": "https://files.pythonhosted.org/packages/9f/c0/6515fefbab42635618c2b8936a636b311c6fc0837618e900a5bc531eea15/chiabip158-1.5.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9daf85173a800ef6dcb4aaee2bb04173525dad40daa1e2ee2dff1273cd7a312",
                "md5": "ea112971c9b7a5ac431a780e3ba1ecaf",
                "sha256": "3111434ebc61ec182a04841adc23bc19a093457f4f4893df388d9e62d7890a88"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ea112971c9b7a5ac431a780e3ba1ecaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2016896,
            "upload_time": "2024-03-15T17:24:54",
            "upload_time_iso_8601": "2024-03-15T17:24:54.768897Z",
            "url": "https://files.pythonhosted.org/packages/a9/da/f85173a800ef6dcb4aaee2bb04173525dad40daa1e2ee2dff1273cd7a312/chiabip158-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "697f5bdbe7999af063be8c9cd3b4bff5546fdada00aac109939d33ff7fc2a7e6",
                "md5": "a1a97e053b4095501ca14fee1095c523",
                "sha256": "7530bf8253a3774415e400c927f9b292a63038160e00afd46ed0a3d49a677214"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a1a97e053b4095501ca14fee1095c523",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 79036,
            "upload_time": "2024-03-15T17:24:56",
            "upload_time_iso_8601": "2024-03-15T17:24:56.048324Z",
            "url": "https://files.pythonhosted.org/packages/69/7f/5bdbe7999af063be8c9cd3b4bff5546fdada00aac109939d33ff7fc2a7e6/chiabip158-1.5.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af45e1119b86ec34272d2322f92abd4f80226d48b37970c13e3ba55c4c2ec8b8",
                "md5": "042dfaa15fb3058a7097cf31b4e03d1b",
                "sha256": "61bf7d6092ae5db09ff962cddf93ab851a74218c07768ffd3b981bd05766bed5"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "042dfaa15fb3058a7097cf31b4e03d1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 151705,
            "upload_time": "2024-03-15T17:24:58",
            "upload_time_iso_8601": "2024-03-15T17:24:58.215133Z",
            "url": "https://files.pythonhosted.org/packages/af/45/e1119b86ec34272d2322f92abd4f80226d48b37970c13e3ba55c4c2ec8b8/chiabip158-1.5.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01b75f56a6a1b191c0225a5d7153555f1ae468840b59404e737d40f70ac0f62d",
                "md5": "ed10d50c8ee231bd873c001438832d16",
                "sha256": "9baffcfbcb26d630b35f6a0b4b64b3acd4b70ca8badf9728c4d5544a1e727d4e"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp311-cp311-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed10d50c8ee231bd873c001438832d16",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 157563,
            "upload_time": "2024-03-15T17:24:59",
            "upload_time_iso_8601": "2024-03-15T17:24:59.649018Z",
            "url": "https://files.pythonhosted.org/packages/01/b7/5f56a6a1b191c0225a5d7153555f1ae468840b59404e737d40f70ac0f62d/chiabip158-1.5.1-cp311-cp311-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b33536fe982592cd100efa18066b0d674465ee5c27a2599bd9410cf210e117de",
                "md5": "78143b51ddf4872d221956b21c2b0d99",
                "sha256": "6d468a38ea70016db649b95bd647d2c7225a6ea7d8187dd4c33b5298cc4f4002"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "78143b51ddf4872d221956b21c2b0d99",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2036171,
            "upload_time": "2024-03-15T17:25:02",
            "upload_time_iso_8601": "2024-03-15T17:25:02.219876Z",
            "url": "https://files.pythonhosted.org/packages/b3/35/36fe982592cd100efa18066b0d674465ee5c27a2599bd9410cf210e117de/chiabip158-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a26d3a37cb6b7deec2873bf673d98ba732317c39eb62626cc03a9522f670386",
                "md5": "556c1b323e25c59482730ac837c963d8",
                "sha256": "80249a8e8e7a1a9239fa3d5166aa0106d74bcd1ccd5d6f63018d2ea1e5e81c5f"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "556c1b323e25c59482730ac837c963d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2061826,
            "upload_time": "2024-03-15T17:25:05",
            "upload_time_iso_8601": "2024-03-15T17:25:05.056834Z",
            "url": "https://files.pythonhosted.org/packages/5a/26/d3a37cb6b7deec2873bf673d98ba732317c39eb62626cc03a9522f670386/chiabip158-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48f206655833c6c68ca60681228661287f22820d9d339b3aa9cece9751b7e706",
                "md5": "d469ee9cca64daa41d5b822f08dbb319",
                "sha256": "5aebca9e77e41c16e0e764534c50fbf262ec6c868834a37597f82b5813a48180"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d469ee9cca64daa41d5b822f08dbb319",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 79926,
            "upload_time": "2024-03-15T17:25:06",
            "upload_time_iso_8601": "2024-03-15T17:25:06.610097Z",
            "url": "https://files.pythonhosted.org/packages/48/f2/06655833c6c68ca60681228661287f22820d9d339b3aa9cece9751b7e706/chiabip158-1.5.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b527289c710d2236e6132c4f42ed9a7f3f003cfb042519b1b4418b29354972a4",
                "md5": "bd1d2dcd20cbb1ac94f8a954413f2f18",
                "sha256": "a964b036cef3d8dbb75368109aa00c0c83659cda02bf97b4de34f20ab8ccc58a"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bd1d2dcd20cbb1ac94f8a954413f2f18",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 148783,
            "upload_time": "2024-03-15T17:25:08",
            "upload_time_iso_8601": "2024-03-15T17:25:08.907804Z",
            "url": "https://files.pythonhosted.org/packages/b5/27/289c710d2236e6132c4f42ed9a7f3f003cfb042519b1b4418b29354972a4/chiabip158-1.5.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbcac635432e6d6c77fb5bd3e88321461169cb8923ab0bacb6e668d660d1865f",
                "md5": "715b793ef6a887e0a0b2d0ed1f489ae9",
                "sha256": "9039051893b5f526d916da771a8a920d082c2a8ac07f0020d59754c0bf3fd60a"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp312-cp312-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "715b793ef6a887e0a0b2d0ed1f489ae9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 155077,
            "upload_time": "2024-03-15T17:25:10",
            "upload_time_iso_8601": "2024-03-15T17:25:10.164180Z",
            "url": "https://files.pythonhosted.org/packages/fb/ca/c635432e6d6c77fb5bd3e88321461169cb8923ab0bacb6e668d660d1865f/chiabip158-1.5.1-cp312-cp312-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff7065fab8df908d66cc94a3f1262ca6ea22086414a62464b23ebee561330f73",
                "md5": "51c0d8e64b0b884024540b3092866bba",
                "sha256": "bc169685d5d5896a58cf795a3ecf8eb35ca388db823878233b45aef3f1498971"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "51c0d8e64b0b884024540b3092866bba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2036008,
            "upload_time": "2024-03-15T17:25:12",
            "upload_time_iso_8601": "2024-03-15T17:25:12.031898Z",
            "url": "https://files.pythonhosted.org/packages/ff/70/65fab8df908d66cc94a3f1262ca6ea22086414a62464b23ebee561330f73/chiabip158-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51687f7d59dfbdfaa3e9f4b0d3719105ffba11b34a8f1965e981c946f436b21f",
                "md5": "e0845fefd89b802de6bdd4b8bd9859ac",
                "sha256": "9e54ee97844c327ddcfc4a1053671238b79d0d9a23524858a6b4b85ac26e2ac0"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e0845fefd89b802de6bdd4b8bd9859ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2063622,
            "upload_time": "2024-03-15T17:25:14",
            "upload_time_iso_8601": "2024-03-15T17:25:14.255257Z",
            "url": "https://files.pythonhosted.org/packages/51/68/7f7d59dfbdfaa3e9f4b0d3719105ffba11b34a8f1965e981c946f436b21f/chiabip158-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92bb55fadee085684ea240a4fb3f2f977a6e39333a94d90d7b0ecd49943ec0c8",
                "md5": "dc8c7dde2052ee9acec5dbe55ddb9178",
                "sha256": "09405564e2a42b08a698d3865669a6a1aff66f3d55947304a2b7e7702e97d81a"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dc8c7dde2052ee9acec5dbe55ddb9178",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 79142,
            "upload_time": "2024-03-15T17:25:16",
            "upload_time_iso_8601": "2024-03-15T17:25:16.007082Z",
            "url": "https://files.pythonhosted.org/packages/92/bb/55fadee085684ea240a4fb3f2f977a6e39333a94d90d7b0ecd49943ec0c8/chiabip158-1.5.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03bd061023ebdfa2a1518252971c9d9ba124c0cf44741b02bfca2a6494b3a2a4",
                "md5": "4a08803baa7524029c06f82640f33db0",
                "sha256": "8f6b25950aa04168110729a5949480b3031cc9670b0cc1ac13e7b43d3317e78e"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4a08803baa7524029c06f82640f33db0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 150134,
            "upload_time": "2024-03-15T17:25:17",
            "upload_time_iso_8601": "2024-03-15T17:25:17.300213Z",
            "url": "https://files.pythonhosted.org/packages/03/bd/061023ebdfa2a1518252971c9d9ba124c0cf44741b02bfca2a6494b3a2a4/chiabip158-1.5.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70d612ef8611f467264b1acd7aba7025ebcebe33f1391aa6dbd132cd41ca4df2",
                "md5": "0882a61a44d25b0aee498a7e03791780",
                "sha256": "a7794c92db245ea3ccdc7579c2ce1191d9a5b24512d9404c724b03009e035403"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0882a61a44d25b0aee498a7e03791780",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 155992,
            "upload_time": "2024-03-15T17:25:19",
            "upload_time_iso_8601": "2024-03-15T17:25:19.499140Z",
            "url": "https://files.pythonhosted.org/packages/70/d6/12ef8611f467264b1acd7aba7025ebcebe33f1391aa6dbd132cd41ca4df2/chiabip158-1.5.1-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29e6b0eb60787b8989a98dd4a1bba5a9f9740eedd35d0f2de24b94a2bd5c2199",
                "md5": "5baf5f68a50a0400051fcc313a5fe8fe",
                "sha256": "bec5fcdc258944e6bc73efb478ae873b28f11bb54a3137ddc4f220c3a5733714"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5baf5f68a50a0400051fcc313a5fe8fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2394557,
            "upload_time": "2024-03-15T17:25:21",
            "upload_time_iso_8601": "2024-03-15T17:25:21.205997Z",
            "url": "https://files.pythonhosted.org/packages/29/e6/b0eb60787b8989a98dd4a1bba5a9f9740eedd35d0f2de24b94a2bd5c2199/chiabip158-1.5.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16719e6ba1bf1d414294a4db35fdc54f1906f8fafb934f10459ad6b9d31a8e7f",
                "md5": "b6f545a545e5849304fd4859e69612d0",
                "sha256": "38624f9a99193c44c0c1b88a2ab8b78221092c72a294904a1a596c3cf412f82d"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b6f545a545e5849304fd4859e69612d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2016521,
            "upload_time": "2024-03-15T17:25:22",
            "upload_time_iso_8601": "2024-03-15T17:25:22.786093Z",
            "url": "https://files.pythonhosted.org/packages/16/71/9e6ba1bf1d414294a4db35fdc54f1906f8fafb934f10459ad6b9d31a8e7f/chiabip158-1.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bad5661876c4cddb591da8aef8e3dcce7ddacd3b9cfe913c6083f6c582f570dc",
                "md5": "4276ef23251289a16f4cf9a7e22b4bbc",
                "sha256": "2470e45be8e48d902b3adf1be048e2440f13a0d4a2515848bf30e4087d8de51a"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4276ef23251289a16f4cf9a7e22b4bbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 78870,
            "upload_time": "2024-03-15T17:25:24",
            "upload_time_iso_8601": "2024-03-15T17:25:24.815766Z",
            "url": "https://files.pythonhosted.org/packages/ba/d5/661876c4cddb591da8aef8e3dcce7ddacd3b9cfe913c6083f6c582f570dc/chiabip158-1.5.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af20b02fd0822559620084bd88ab8b5e6fe2a3a51b85fa9e0f74d6ded91966f9",
                "md5": "dfe8624d1cce92cd4e62998a97621085",
                "sha256": "a2d5308a6670df533e161d0b7c6e2f03e58b2d8670c3661d144338f8d2153f5b"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dfe8624d1cce92cd4e62998a97621085",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 150461,
            "upload_time": "2024-03-15T17:25:26",
            "upload_time_iso_8601": "2024-03-15T17:25:26.114492Z",
            "url": "https://files.pythonhosted.org/packages/af/20/b02fd0822559620084bd88ab8b5e6fe2a3a51b85fa9e0f74d6ded91966f9/chiabip158-1.5.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8484a2f7352834903c9af1341c2eac3c8de93a072fd2407794c362c87290f523",
                "md5": "9b11640672e3f682103cc72646d45ca5",
                "sha256": "59a422e8888124250e9a1dbf1ec43ea29b640ed0379053724cd5f027b42dbdfa"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b11640672e3f682103cc72646d45ca5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 156279,
            "upload_time": "2024-03-15T17:25:27",
            "upload_time_iso_8601": "2024-03-15T17:25:27.575421Z",
            "url": "https://files.pythonhosted.org/packages/84/84/a2f7352834903c9af1341c2eac3c8de93a072fd2407794c362c87290f523/chiabip158-1.5.1-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea2839c0fa67d480b0e78a8a3cbee0724f328d6c77e3dd7a188d91809bca62fe",
                "md5": "460222ab8f6d8d698fe93df139a386c1",
                "sha256": "78086ceb66dcd5001bf1700de4e3b484a97862b398940238e6b3d56c668cbbe4"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "460222ab8f6d8d698fe93df139a386c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2395669,
            "upload_time": "2024-03-15T17:25:30",
            "upload_time_iso_8601": "2024-03-15T17:25:30.306120Z",
            "url": "https://files.pythonhosted.org/packages/ea/28/39c0fa67d480b0e78a8a3cbee0724f328d6c77e3dd7a188d91809bca62fe/chiabip158-1.5.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdea910c97f390c86079042d20ec9bb775588375d464f65f40352dfb00f487e1",
                "md5": "8865aa0ff3ee012bc5165924b91afe56",
                "sha256": "6f41a044cbfebac2f92377902293a5e45e9445d811f721eb176f5790e6a6fe97"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8865aa0ff3ee012bc5165924b91afe56",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2015871,
            "upload_time": "2024-03-15T17:25:31",
            "upload_time_iso_8601": "2024-03-15T17:25:31.930380Z",
            "url": "https://files.pythonhosted.org/packages/bd/ea/910c97f390c86079042d20ec9bb775588375d464f65f40352dfb00f487e1/chiabip158-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10b437d667b7aed51838250933dbc478f30810d91a909683816c6d390e6113b0",
                "md5": "ac9d77e991883006351ebb02d2963f3d",
                "sha256": "bfeece41abea633aab2b768ca704f981472dd2878e9c89cbe46a84c3fb4459c9"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ac9d77e991883006351ebb02d2963f3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 78978,
            "upload_time": "2024-03-15T17:25:34",
            "upload_time_iso_8601": "2024-03-15T17:25:34.573186Z",
            "url": "https://files.pythonhosted.org/packages/10/b4/37d667b7aed51838250933dbc478f30810d91a909683816c6d390e6113b0/chiabip158-1.5.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "317d1e492cb76d2f7ab2ca5b242a027a7fd0a553fee0cf8a81cba05fb5c5afe1",
                "md5": "e041227ddc06c8f20ecad2f272f7a4f0",
                "sha256": "c883fe663bc7ea6951ad91be40e0ebcddadfe5049f82e531db989b8710bcd8c9"
            },
            "downloads": -1,
            "filename": "chiabip158-1.5.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e041227ddc06c8f20ecad2f272f7a4f0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 125516,
            "upload_time": "2024-03-15T17:25:35",
            "upload_time_iso_8601": "2024-03-15T17:25:35.793355Z",
            "url": "https://files.pythonhosted.org/packages/31/7d/1e492cb76d2f7ab2ca5b242a027a7fd0a553fee0cf8a81cba05fb5c5afe1/chiabip158-1.5.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-15 17:25:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Chia-Network",
    "github_project": "chiabip158",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "chiabip158"
}
        
Elapsed time: 0.20904s