Skip to main content

Chia BIP158 (wraps C++)

Project description

Chia BIP158

Build PyPI PyPI - Format GitHub

Total alerts Language grade: Python Language grade: C/C++

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

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

Run python tests

python3 tests/simple_test.py

Installation steps on a fresh OSX image

Install brew:

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.

$ 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:

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 to download pybind11. Building is then managed by 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.

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. Please make sure your build is passing and that it does not increase alerts at lgtm.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chiabip158-0.19.tar.gz (117.1 kB view details)

Uploaded Source

Built Distributions

chiabip158-0.19-cp39-cp39-win_amd64.whl (86.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

chiabip158-0.19-cp39-cp39-win32.whl (78.1 kB view details)

Uploaded CPython 3.9 Windows x86

chiabip158-0.19-cp39-cp39-manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

chiabip158-0.19-cp39-cp39-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

chiabip158-0.19-cp39-cp39-macosx_10_14_x86_64.whl (143.7 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

chiabip158-0.19-cp39-cp39-macosx_10_14_universal2.whl (277.0 kB view details)

Uploaded CPython 3.9 macOS 10.14+ universal2 (ARM64, x86-64)

chiabip158-0.19-cp38-cp38-win_amd64.whl (87.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

chiabip158-0.19-cp38-cp38-win32.whl (78.3 kB view details)

Uploaded CPython 3.8 Windows x86

chiabip158-0.19-cp38-cp38-manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

chiabip158-0.19-cp38-cp38-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

chiabip158-0.19-cp38-cp38-macosx_10_14_x86_64.whl (144.5 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

chiabip158-0.19-cp37-cp37m-win_amd64.whl (88.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

chiabip158-0.19-cp37-cp37m-win32.whl (79.0 kB view details)

Uploaded CPython 3.7m Windows x86

chiabip158-0.19-cp37-cp37m-manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.7m

chiabip158-0.19-cp37-cp37m-manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

chiabip158-0.19-cp37-cp37m-manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

chiabip158-0.19-cp37-cp37m-macosx_10_14_x86_64.whl (143.9 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

File details

Details for the file chiabip158-0.19.tar.gz.

File metadata

  • Download URL: chiabip158-0.19.tar.gz
  • Upload date:
  • Size: 117.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19.tar.gz
Algorithm Hash digest
SHA256 8fba3d474ad78d1d8a7a1847d2d4dd1a36d6e1f0c251ee5eee65a2945ead93d3
MD5 f5bef742eefe607e790ea0ac679189a5
BLAKE2b-256 b5d19d5c6ab66387aada284239a3031e6cac51a480d4c70b52384d75f46b4d3f

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: chiabip158-0.19-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 86.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 63d0acfc2921fc7d358735adaeba2189189154fffec97535ab1227774fca7d7e
MD5 6cdeed9e5c630037b68da78979993c41
BLAKE2b-256 51721d1da9c80410b9f69e93b3ac0cf5f1b1de2bcfaa63570af6ad3dab68f622

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp39-cp39-win32.whl.

File metadata

  • Download URL: chiabip158-0.19-cp39-cp39-win32.whl
  • Upload date:
  • Size: 78.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 50b51f735f671742595ef0e14226aaa748623007ea08ae9652ddbca7e6bba7b7
MD5 38b49bdec3040dc111d35e28bc128bd4
BLAKE2b-256 410a8ce950070c906617d55c4a32fbcca7e737bc43b7e30b0893b48a550c8f59

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: chiabip158-0.19-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for chiabip158-0.19-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6d0855509b79196e044d006dbd339d929e256b20b113661b2548ac60441e1f8
MD5 85dc587af78c02441f3a0725f2f8e0c6
BLAKE2b-256 86184ee34a3ce55e6bb983cc2c836124f3ebb70bb8c0305ec762043c36b700e1

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: chiabip158-0.19-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ed9e3a24b89460ee4d96d4d385a41a13a4a4815921cb3cf4fd117454f45022dd
MD5 183b191bd0720a766bd93650b7a2deed
BLAKE2b-256 81ff85bec9597869857c09264ed57674cddfd662630a280df4b194ca5725631c

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: chiabip158-0.19-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0fbc7164792f30c73abff86b9cf72a73344a44cbb7746825324e6d137bfcdf11
MD5 758a552f5f78a37b7d633728c0ee3f16
BLAKE2b-256 002bf0cf641b0223cf42709614b064b7cb3a67ae445ece94f148180a61d8678f

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: chiabip158-0.19-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 143.7 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c8ed5bee04dd8497e39dedb286d364459fb1851a4f058843edede13e4ccaaf41
MD5 79e78f66c01224842ca306062e695433
BLAKE2b-256 d99c2ef833ba0d739d43190fea4b94da9ae6711b030948d437c69f15d801c236

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp39-cp39-macosx_10_14_universal2.whl.

File metadata

  • Download URL: chiabip158-0.19-cp39-cp39-macosx_10_14_universal2.whl
  • Upload date:
  • Size: 277.0 kB
  • Tags: CPython 3.9, macOS 10.14+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp39-cp39-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 d9b203b05cf95a8fedf70daaae212ede635b7217d89cd344e1b008b775038369
MD5 b9d34305797eb5cb328b96239c7cf700
BLAKE2b-256 91d602806de55c1121c7ba618020d2bd14325405a1417ec2a6b2e90adcbe4a34

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: chiabip158-0.19-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 87.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1fde1f5d32b8e4068cc7c4fd188ed05af5d98f1bc064de247ce8cc68f6e408b7
MD5 e336a7647c8627202e2e5c8d1d8967fa
BLAKE2b-256 fe429dea9120cae8c5388d379cb02656cb9a8055dd61e34e74e49945d97bf96c

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp38-cp38-win32.whl.

File metadata

  • Download URL: chiabip158-0.19-cp38-cp38-win32.whl
  • Upload date:
  • Size: 78.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 268cbcc51b63b212c2c4e84ce5be74d20596c43cf95f533000e1583f70a2e159
MD5 9b100e19b720fe1267a1b027f3d87adf
BLAKE2b-256 aa18eab23097f3ed140143c35cf79f5d544f0048e306f3e6d52817d7287b4779

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: chiabip158-0.19-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for chiabip158-0.19-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64bd27c4801cb09ae4af303388378642508a39ed7324f8c9813a2d33893fc02f
MD5 28821d832d6902799c7b1fc1192d89aa
BLAKE2b-256 962b116bd7183a391b1c9e1717c5af0c16cf0defd0ecb5656e6c3caca50337bf

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: chiabip158-0.19-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7657ac3a564bb2e9441397096db5094b2b66eb06539e31d3d3c8ec0ce37d9211
MD5 ce881e8f330386ee37f8369c9ae957e5
BLAKE2b-256 431eaf5c86dee4b4e52b05b82c489eb853da8d83d8c72f9ac431b263abcece1b

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: chiabip158-0.19-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 63d6fab4e018b180bccd7a0a7f5aadbbaf95b84363826818bb4919dbc6c02081
MD5 75a66801f92f67c28005dd56fd6ec901
BLAKE2b-256 ec23a4af76a2f706156fdc67d9a523315b8d84ec46aa2b519c979b34fdcaa33a

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: chiabip158-0.19-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 144.5 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 260785d92b2b4c2ca88469e520c30da09588e970bf75ec02993a00ff809d5eb4
MD5 61f6ae63f7d7d3ce8e126a2e3f673c6b
BLAKE2b-256 ed85686cbce32b0770c4fbbf9bc4a1b0d25c85ff1f8ab5f489d3b1d8c715d5d4

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: chiabip158-0.19-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 88.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 26d009f2d5374a1bf5c7d5a425fbdcf21b2aa452059148d76cb8e494fd4073c4
MD5 454ee0b51ab5ada2e8c8fa3e80a052e4
BLAKE2b-256 3b33ebd96a87b946999fef27d49a6cb6f92623afbc4de36d8efca6c2ee07c1bd

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp37-cp37m-win32.whl.

File metadata

  • Download URL: chiabip158-0.19-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 79.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 85fea3c6b31f688f13388404ae088b16340c7a6f8889d0917b7c30f5afac14f7
MD5 61b2901490d26334ecadeeb2f9c08ab1
BLAKE2b-256 82748315b67faa36a200d2e8c0fceef24a1636b36693b4a22747bf6c52827ea6

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: chiabip158-0.19-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for chiabip158-0.19-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da3c91d2b481fff1cef544cb53148ea16fee5f87560a7f497a0c191367265b67
MD5 5db6fbd8b196ba3ef52827f11328534f
BLAKE2b-256 ed9957050e77bd685926873fb382cfbfe447cc8f3ab260de07e2681ce266c595

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: chiabip158-0.19-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 88f0969113e42fd1622e0f3e9bc719972a6e97d8e2759b91a7e5b51451a06238
MD5 eb64f905cbac5a1ff39b22096cdf012a
BLAKE2b-256 a70336e5091f3093ad14309138e569bbe19504c50e88366a24aaa5f807f7160e

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: chiabip158-0.19-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 aa8daa1f55d90c110cad446a46ba93a5eb6abceba6898356bfb301d32894dab5
MD5 ffd5a62f0ae3a730cd8d876fd6d5c341
BLAKE2b-256 dfda9616319bd129f5f11e33cbb3baad6288d551eff1ff784b6870c2373882a3

See more details on using hashes here.

File details

Details for the file chiabip158-0.19-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: chiabip158-0.19-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 143.9 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for chiabip158-0.19-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 00b1cd851aa72c499878eeea99eeaf010256ea0548f7e8f4b3c1c224efc6cd2e
MD5 e8d21258afa76e2f5a281ee51054b9b3
BLAKE2b-256 6e086b4f6288cda92a4a30d559259b056abbc22f87307ee0e4ff03e827370c5e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page