chiapos


Namechiapos JSON
Version 2.0.4 PyPI version JSON
download
home_pagehttps://github.com/Chia-Network/chiapos
SummaryChia proof of space plotting, proving, and verifying (wraps C++)
upload_time2024-02-08 19:25:49
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 Proof of Space
![Build](https://github.com/Chia-Network/chiapos/actions/workflows/build-test-cplusplus.yml/badge.svg)
![Wheels](https://github.com/Chia-Network/chiapos/actions/workflows/build-wheels.yml/badge.svg)
![PyPI](https://img.shields.io/pypi/v/chiapos?logo=pypi)
![PyPI - Format](https://img.shields.io/pypi/format/chiapos?logo=pypi)
![GitHub](https://img.shields.io/github/license/Chia-Network/chiapos?logo=Github)


Chia's proof of space is written in C++. Includes a plotter, prover, and
verifier. It exclusively runs on 64 bit architectures. Read the
[Proof of Space document](https://www.chia.net/wp-content/uploads/2022/09/Chia_Proof_of_Space_Construction_v1.1.pdf) to
learn about what proof of space is and how it works.

## C++ Usage Instructions

### Compile

```bash
# Requires cmake 3.14+

mkdir -p build && cd build
cmake ../
cmake --build . -- -j 6
```

## Static Compilation With glibc
### Statically compile ProofOfSpace
```bash
mkdir -p build && cd build
cmake -DBUILD_PROOF_OF_SPACE_STATICALLY=ON ../
cmake --build . -- -j 6
```

### Run tests

```bash
./RunTests
```

### CLI usage

```bash
./ProofOfSpace -k 25 -f "plot.dat" -m "0x1234" create
./ProofOfSpace -k 25 -f "final-plot.dat" -m "0x4567" -t TMPDIR -2 SECOND_TMPDIR create
./ProofOfSpace -f "plot.dat" prove <32 byte hex challenge>
./ProofOfSpace -k 25 verify <hex proof> <32 byte hex challenge>
./ProofOfSpace -f "plot.dat" check <iterations>
```

### Benchmark

```bash
time ./ProofOfSpace -k 25 create
```


### Hellman Attacks usage

There is an experimental implementation which implements some of the Hellman
Attacks that can provide significant space savings for the final file.


```bash
./HellmanAttacks -k 18 -f "plot.dat" -m "0x1234" create
./HellmanAttacks -f "plot.dat" check <iterations>
```

## Python

Finally, python bindings are provided in the python-bindings directory.

### Install

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

### Run python tests

Testings uses pytest. Linting uses flake8 and mypy.

```bash
py.test ./tests -s -v
```

## 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 chiapos` 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/main/CONTRIBUTING.md).

The main branch is usually the currently released latest version on PyPI.
Note that at times chiapos will be ahead of the release version that
chia-blockchain requires in it's main/release version in preparation for a
new chia-blockchain release. Please branch or fork main and then create a
pull request to the main branch. Linear merging is enforced on main and
merging requires a completed review. PRs will kick off a GitHub actions ci build
and analysis of chiapos at
[lgtm.com](https://lgtm.com/projects/g/Chia-Network/chiapos/?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/chiapos",
    "name": "chiapos",
    "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/61/01/ce358d00e1a12a551df05f01284d9fcfd25834e9cceec4b03e3b00b4c1d1/chiapos-2.0.4.tar.gz",
    "platform": null,
    "description": "# Chia Proof of Space\n![Build](https://github.com/Chia-Network/chiapos/actions/workflows/build-test-cplusplus.yml/badge.svg)\n![Wheels](https://github.com/Chia-Network/chiapos/actions/workflows/build-wheels.yml/badge.svg)\n![PyPI](https://img.shields.io/pypi/v/chiapos?logo=pypi)\n![PyPI - Format](https://img.shields.io/pypi/format/chiapos?logo=pypi)\n![GitHub](https://img.shields.io/github/license/Chia-Network/chiapos?logo=Github)\n\n\nChia's proof of space is written in C++. Includes a plotter, prover, and\nverifier. It exclusively runs on 64 bit architectures. Read the\n[Proof of Space document](https://www.chia.net/wp-content/uploads/2022/09/Chia_Proof_of_Space_Construction_v1.1.pdf) to\nlearn about what proof of space is and how it works.\n\n## C++ Usage Instructions\n\n### Compile\n\n```bash\n# Requires cmake 3.14+\n\nmkdir -p build && cd build\ncmake ../\ncmake --build . -- -j 6\n```\n\n## Static Compilation With glibc\n### Statically compile ProofOfSpace\n```bash\nmkdir -p build && cd build\ncmake -DBUILD_PROOF_OF_SPACE_STATICALLY=ON ../\ncmake --build . -- -j 6\n```\n\n### Run tests\n\n```bash\n./RunTests\n```\n\n### CLI usage\n\n```bash\n./ProofOfSpace -k 25 -f \"plot.dat\" -m \"0x1234\" create\n./ProofOfSpace -k 25 -f \"final-plot.dat\" -m \"0x4567\" -t TMPDIR -2 SECOND_TMPDIR create\n./ProofOfSpace -f \"plot.dat\" prove <32 byte hex challenge>\n./ProofOfSpace -k 25 verify <hex proof> <32 byte hex challenge>\n./ProofOfSpace -f \"plot.dat\" check <iterations>\n```\n\n### Benchmark\n\n```bash\ntime ./ProofOfSpace -k 25 create\n```\n\n\n### Hellman Attacks usage\n\nThere is an experimental implementation which implements some of the Hellman\nAttacks that can provide significant space savings for the final file.\n\n\n```bash\n./HellmanAttacks -k 18 -f \"plot.dat\" -m \"0x1234\" create\n./HellmanAttacks -f \"plot.dat\" check <iterations>\n```\n\n## Python\n\nFinally, python bindings are provided in the python-bindings directory.\n\n### Install\n\n```bash\npython3 -m venv .venv\n. .venv/bin/activate\npip3 install .\n```\n\n### Run python tests\n\nTestings uses pytest. Linting uses flake8 and mypy.\n\n```bash\npy.test ./tests -s -v\n```\n\n## ci Building\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 chiapos` e.g.\n\n## Contributing and workflow\nContributions are welcome and more details are available in chia-blockchain's\n[CONTRIBUTING.md](https://github.com/Chia-Network/chia-blockchain/blob/main/CONTRIBUTING.md).\n\nThe main branch is usually the currently released latest version on PyPI.\nNote that at times chiapos will be ahead of the release version that\nchia-blockchain requires in it's main/release version in preparation for a\nnew chia-blockchain release. Please branch or fork main and then create a\npull request to the main branch. Linear merging is enforced on main and\nmerging requires a completed review. PRs will kick off a GitHub actions ci build\nand analysis of chiapos at\n[lgtm.com](https://lgtm.com/projects/g/Chia-Network/chiapos/?mode=list). Please\nmake sure your build is passing and that it does not increase alerts at lgtm.\n",
    "bugtrack_url": null,
    "license": "Apache License",
    "summary": "Chia proof of space plotting, proving, and verifying (wraps C++)",
    "version": "2.0.4",
    "project_urls": {
        "Homepage": "https://github.com/Chia-Network/chiapos"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db6732299edcc0f95e370d9083f59fa343963807b139a4599be6db97e4625a66",
                "md5": "6560d2d478d15988da00055b4ef1fca4",
                "sha256": "fa7d13ad72c97d6081ab494f41ea5dbb1e8e7898ba644b45f4512443a4368f45"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6560d2d478d15988da00055b4ef1fca4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 321565,
            "upload_time": "2024-02-08T19:24:42",
            "upload_time_iso_8601": "2024-02-08T19:24:42.615677Z",
            "url": "https://files.pythonhosted.org/packages/db/67/32299edcc0f95e370d9083f59fa343963807b139a4599be6db97e4625a66/chiapos-2.0.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0823492eab7d63843f77a8a4c55b43769bfff4af3f15366af7197a6b3d1146e6",
                "md5": "49662439f51a20939a11c0dc9a9726a2",
                "sha256": "a9e2cf709690efafa16fa1f66c5b5b8a0e00ed0fa4c66ce6939828035f4bb9f9"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49662439f51a20939a11c0dc9a9726a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 377407,
            "upload_time": "2024-02-08T19:24:45",
            "upload_time_iso_8601": "2024-02-08T19:24:45.574563Z",
            "url": "https://files.pythonhosted.org/packages/08/23/492eab7d63843f77a8a4c55b43769bfff4af3f15366af7197a6b3d1146e6/chiapos-2.0.4-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60508602a28a4be71761153ed5ee9fc4bed43fc2ec0fbbddcc8e5a96a416db7f",
                "md5": "d64f8a3d509d3f8f3cddeddc9c4ef0fb",
                "sha256": "86a6822b5aa7c5855cd5ff59c6644a441a01c2ce09c38a47a292f8bebb0a042c"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d64f8a3d509d3f8f3cddeddc9c4ef0fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 10084483,
            "upload_time": "2024-02-08T19:24:47",
            "upload_time_iso_8601": "2024-02-08T19:24:47.859270Z",
            "url": "https://files.pythonhosted.org/packages/60/50/8602a28a4be71761153ed5ee9fc4bed43fc2ec0fbbddcc8e5a96a416db7f/chiapos-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "249c6a0ec08777d943499cd40360e02809b1c9a07fe07b1984b9ac0c84f0dc47",
                "md5": "88dca6b8e805ca600cd82e0ea651bdce",
                "sha256": "9394d1c02c56829951379d6a2ef155f33760a3722e926f03e5e1e771e7161cd6"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88dca6b8e805ca600cd82e0ea651bdce",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 10140965,
            "upload_time": "2024-02-08T19:24:51",
            "upload_time_iso_8601": "2024-02-08T19:24:51.444853Z",
            "url": "https://files.pythonhosted.org/packages/24/9c/6a0ec08777d943499cd40360e02809b1c9a07fe07b1984b9ac0c84f0dc47/chiapos-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20c4bafd32341e9f69544e7102949454a6176d92b9bc961815376bbc4534fedf",
                "md5": "28574979d2566667302f1d195d76baf2",
                "sha256": "579c87cd8e028f008fe75fb37ad0aea8a80a81774ac269c4bbb6195a5a4f7937"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "28574979d2566667302f1d195d76baf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 8938781,
            "upload_time": "2024-02-08T19:24:54",
            "upload_time_iso_8601": "2024-02-08T19:24:54.398141Z",
            "url": "https://files.pythonhosted.org/packages/20/c4/bafd32341e9f69544e7102949454a6176d92b9bc961815376bbc4534fedf/chiapos-2.0.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8668ba4f40561bdf95040b96cc439ddcbccd1f138b0f68a28d1a9c57dfcee141",
                "md5": "4466f748ccdf2323c223581129956bac",
                "sha256": "8d691cf50beae2f8f7e751a9a376701997b72c8e0c1d8fa56d2c441f4290c30a"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4466f748ccdf2323c223581129956bac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 322614,
            "upload_time": "2024-02-08T19:24:57",
            "upload_time_iso_8601": "2024-02-08T19:24:57.668908Z",
            "url": "https://files.pythonhosted.org/packages/86/68/ba4f40561bdf95040b96cc439ddcbccd1f138b0f68a28d1a9c57dfcee141/chiapos-2.0.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cc830afe4b11e2b4860e32fb93b40f8c339da8c8a24c073b0892187636ab6d2",
                "md5": "8c3e2987df13d7a2c9b472882c61eff0",
                "sha256": "c8c6a0d4a302edb8cecddc253db876ca1727149ddc6911dd255ee058d39c1d78"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp311-cp311-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c3e2987df13d7a2c9b472882c61eff0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 378879,
            "upload_time": "2024-02-08T19:24:59",
            "upload_time_iso_8601": "2024-02-08T19:24:59.336839Z",
            "url": "https://files.pythonhosted.org/packages/2c/c8/30afe4b11e2b4860e32fb93b40f8c339da8c8a24c073b0892187636ab6d2/chiapos-2.0.4-cp311-cp311-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43771e7206d5fce199e078ed69e2e5e8d9c031169ee135149054068c43cf0c4c",
                "md5": "98a5ca32c3afe6cb66b660fb35bd89af",
                "sha256": "2729ca64281b31d05bc1160860a8ed654f2a34a92775ef13292f25e5b64d34ad"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "98a5ca32c3afe6cb66b660fb35bd89af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 10085600,
            "upload_time": "2024-02-08T19:25:01",
            "upload_time_iso_8601": "2024-02-08T19:25:01.977341Z",
            "url": "https://files.pythonhosted.org/packages/43/77/1e7206d5fce199e078ed69e2e5e8d9c031169ee135149054068c43cf0c4c/chiapos-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a16a1ad7e655d3427750f741459387222a6dce74f5dcfe4f9c6f074d4d2f19c",
                "md5": "9332a5128c97c731ca518d777209a598",
                "sha256": "ca1a2f4fe886b71af206966b5c8001df5703d0d3b5a47bf7c207325b25ab784d"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9332a5128c97c731ca518d777209a598",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 10142156,
            "upload_time": "2024-02-08T19:25:05",
            "upload_time_iso_8601": "2024-02-08T19:25:05.291344Z",
            "url": "https://files.pythonhosted.org/packages/5a/16/a1ad7e655d3427750f741459387222a6dce74f5dcfe4f9c6f074d4d2f19c/chiapos-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "862c8386087f76d761eb34229268f2e13c847d43c61dc7a18bc4e331981eec5b",
                "md5": "283fb14f1ec903f86209eb9532a8efe5",
                "sha256": "2c11c6891217ab49e20ef4b9ae1e2e6aaed752fd41e360515b65ee36c0ec29f8"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "283fb14f1ec903f86209eb9532a8efe5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 8939902,
            "upload_time": "2024-02-08T19:25:08",
            "upload_time_iso_8601": "2024-02-08T19:25:08.769482Z",
            "url": "https://files.pythonhosted.org/packages/86/2c/8386087f76d761eb34229268f2e13c847d43c61dc7a18bc4e331981eec5b/chiapos-2.0.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31f3e04e136bba7d25ffcdab8a0157d18ff618c466bd7c4119ace2875f67c7c8",
                "md5": "e7881fb9ea4ff3813141968bfdd164e8",
                "sha256": "cc946f0bb74313c85a5fd769ba2d36a9a3684a111cde38293c8ed7b54f9a4d12"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e7881fb9ea4ff3813141968bfdd164e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 321938,
            "upload_time": "2024-02-08T19:25:11",
            "upload_time_iso_8601": "2024-02-08T19:25:11.497594Z",
            "url": "https://files.pythonhosted.org/packages/31/f3/e04e136bba7d25ffcdab8a0157d18ff618c466bd7c4119ace2875f67c7c8/chiapos-2.0.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7245f67205fe2549831a0df374b85fbc0dd965b898ed5de71996c721580396a2",
                "md5": "982a8b6550265a2fbbc69267bcd60fcc",
                "sha256": "0c9f315b12ddb9b7a726b19711c841b7f199c568963dd6473495074fc23b8f63"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp312-cp312-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "982a8b6550265a2fbbc69267bcd60fcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 378285,
            "upload_time": "2024-02-08T19:25:13",
            "upload_time_iso_8601": "2024-02-08T19:25:13.650677Z",
            "url": "https://files.pythonhosted.org/packages/72/45/f67205fe2549831a0df374b85fbc0dd965b898ed5de71996c721580396a2/chiapos-2.0.4-cp312-cp312-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df7a5a04e4b67b5a0199ed563fbd71b8d515f7fd0ffe1f0a9ac6c138f03b90fe",
                "md5": "db9ada015baf61a9b9eccc6d8c770baa",
                "sha256": "fe238271df585a8277b46775124f4cef1dc28a2a475e9950ec292eadacac1c3f"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "db9ada015baf61a9b9eccc6d8c770baa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 10084803,
            "upload_time": "2024-02-08T19:25:16",
            "upload_time_iso_8601": "2024-02-08T19:25:16.088192Z",
            "url": "https://files.pythonhosted.org/packages/df/7a/5a04e4b67b5a0199ed563fbd71b8d515f7fd0ffe1f0a9ac6c138f03b90fe/chiapos-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a86f58872d6fa8142caff6f54a3573ec9e44a5a5ecbfe226908a9b033c1f4275",
                "md5": "a781e8e897a00808d1becd14c7cf04a4",
                "sha256": "0e120bbca94b511c7fb1c011efbfdd12d2a569a084fed26e53051650fdf28bf2"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a781e8e897a00808d1becd14c7cf04a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 10140658,
            "upload_time": "2024-02-08T19:25:18",
            "upload_time_iso_8601": "2024-02-08T19:25:18.920746Z",
            "url": "https://files.pythonhosted.org/packages/a8/6f/58872d6fa8142caff6f54a3573ec9e44a5a5ecbfe226908a9b033c1f4275/chiapos-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19facab13b5bdcffde6bff173f4dc64b3f02e173256c2070f3436af93fde55ac",
                "md5": "cd866af35d04d8dda3edfa213374e772",
                "sha256": "f662b5b58edc1aebee14e7e0085e9e19793efdf2dfb09956e0fb082bffcd48bd"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cd866af35d04d8dda3edfa213374e772",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 8939266,
            "upload_time": "2024-02-08T19:25:21",
            "upload_time_iso_8601": "2024-02-08T19:25:21.872905Z",
            "url": "https://files.pythonhosted.org/packages/19/fa/cab13b5bdcffde6bff173f4dc64b3f02e173256c2070f3436af93fde55ac/chiapos-2.0.4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b29536fafd7653e14f8b5ce8cf17dbe4d31b6fbfaeceb78fcd4c36320523cc9",
                "md5": "6c87759cb0d9a573573c489e7b9c4f9b",
                "sha256": "f1e2f828b340160813c573bd0c7b11011332203e1c36fa791a685db9c54f2c5b"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c87759cb0d9a573573c489e7b9c4f9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 377267,
            "upload_time": "2024-02-08T19:25:24",
            "upload_time_iso_8601": "2024-02-08T19:25:24.439175Z",
            "url": "https://files.pythonhosted.org/packages/7b/29/536fafd7653e14f8b5ce8cf17dbe4d31b6fbfaeceb78fcd4c36320523cc9/chiapos-2.0.4-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd06463bed7c1fa366277a3372938fab80bfbbecb464d9bec90d8b895f97f280",
                "md5": "1a3328569d2be741613f9a342137439e",
                "sha256": "b5a259f2557d38b4b775ea1943e553b47db599bbd2ba6784f1c26e9ac1cdead8"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1a3328569d2be741613f9a342137439e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 10084709,
            "upload_time": "2024-02-08T19:25:26",
            "upload_time_iso_8601": "2024-02-08T19:25:26.849657Z",
            "url": "https://files.pythonhosted.org/packages/dd/06/463bed7c1fa366277a3372938fab80bfbbecb464d9bec90d8b895f97f280/chiapos-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc0983e7f8cdd0b9edcd32e22523c3db9a88524572035535bf4476aaa742123b",
                "md5": "15b0dc219adc40c8f5f8643561683acd",
                "sha256": "a286924cbba2770551bea1b315741d9980a67f242fe99629d84708a4e3b926df"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15b0dc219adc40c8f5f8643561683acd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 10140957,
            "upload_time": "2024-02-08T19:25:29",
            "upload_time_iso_8601": "2024-02-08T19:25:29.857004Z",
            "url": "https://files.pythonhosted.org/packages/dc/09/83e7f8cdd0b9edcd32e22523c3db9a88524572035535bf4476aaa742123b/chiapos-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "790e65a6350208922e0ee5fbb77627b9027c658db32529545650f8d67d3ff5ec",
                "md5": "ecab8c2d6ff932ef2c24b261631a5072",
                "sha256": "f75920e0a6355b4882834b74d6a325f7bc9b4f20ca776ac79ecbc8dab91dd640"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ecab8c2d6ff932ef2c24b261631a5072",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 8938792,
            "upload_time": "2024-02-08T19:25:32",
            "upload_time_iso_8601": "2024-02-08T19:25:32.763642Z",
            "url": "https://files.pythonhosted.org/packages/79/0e/65a6350208922e0ee5fbb77627b9027c658db32529545650f8d67d3ff5ec/chiapos-2.0.4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "554c96014a36aee7acf94116b80611e674dd0803a9a79021fb0a3662b46c4a8e",
                "md5": "b1eb6fa60ce6f1afd19f87705f70017c",
                "sha256": "86ec4db0980ed9a9e1d72a6a0874c2b51ba58af42f1765fa8b32e674ad46af75"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b1eb6fa60ce6f1afd19f87705f70017c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 321697,
            "upload_time": "2024-02-08T19:25:35",
            "upload_time_iso_8601": "2024-02-08T19:25:35.383203Z",
            "url": "https://files.pythonhosted.org/packages/55/4c/96014a36aee7acf94116b80611e674dd0803a9a79021fb0a3662b46c4a8e/chiapos-2.0.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "923bc6838171c83a26f032ef756cd4ab22cf9728cdc92332d6e3e8671fa3eb3b",
                "md5": "a30ddffe4bef279a093cef3adc353c55",
                "sha256": "82f7c5b2ef0f514321b7edd2ef864e8927ba8b7c15c27a6621ea6fb7a7ad2d19"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a30ddffe4bef279a093cef3adc353c55",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 377563,
            "upload_time": "2024-02-08T19:25:37",
            "upload_time_iso_8601": "2024-02-08T19:25:37.307851Z",
            "url": "https://files.pythonhosted.org/packages/92/3b/c6838171c83a26f032ef756cd4ab22cf9728cdc92332d6e3e8671fa3eb3b/chiapos-2.0.4-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bff8556eebaf47321bba34e3170a5b87af0a37e4471ce308555edb0b5c6a6129",
                "md5": "47c4f16b890218898e58c5df8dbf1661",
                "sha256": "0ae108016b0cad03cd3fa25caf57924781e6e62c99151be581e976966bf48f7d"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "47c4f16b890218898e58c5df8dbf1661",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 10085021,
            "upload_time": "2024-02-08T19:25:40",
            "upload_time_iso_8601": "2024-02-08T19:25:40.029550Z",
            "url": "https://files.pythonhosted.org/packages/bf/f8/556eebaf47321bba34e3170a5b87af0a37e4471ce308555edb0b5c6a6129/chiapos-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e072ed808fdaf52685e952174d829faeaf16b1fd70a3dbf180ea87799ca4df8",
                "md5": "e9fd911841517e976b1f527fbb76fbd5",
                "sha256": "4060e71c468c654778458a47a05a68b6599aeb2f66e2794a820e11b89c6e3c33"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e9fd911841517e976b1f527fbb76fbd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 10141221,
            "upload_time": "2024-02-08T19:25:42",
            "upload_time_iso_8601": "2024-02-08T19:25:42.888949Z",
            "url": "https://files.pythonhosted.org/packages/1e/07/2ed808fdaf52685e952174d829faeaf16b1fd70a3dbf180ea87799ca4df8/chiapos-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "240a21b5ceb02e48e98864cfda2ecf247c9ff9213a66df61704364a7ab4b654a",
                "md5": "28ed7e70f8545a1af3401d0fa8fc047b",
                "sha256": "1dbc6d7e3ce961ecd99c48e9df8d1448ea8623b228927ff91517b903fcf1486f"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "28ed7e70f8545a1af3401d0fa8fc047b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 8938186,
            "upload_time": "2024-02-08T19:25:46",
            "upload_time_iso_8601": "2024-02-08T19:25:46.155778Z",
            "url": "https://files.pythonhosted.org/packages/24/0a/21b5ceb02e48e98864cfda2ecf247c9ff9213a66df61704364a7ab4b654a/chiapos-2.0.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6101ce358d00e1a12a551df05f01284d9fcfd25834e9cceec4b03e3b00b4c1d1",
                "md5": "af55182f8ad7c4aaad4364009051d3ac",
                "sha256": "6498d75a7ac01bb64055055b2937f7f964270582a2f82be9a332aa828fc3e3ce"
            },
            "downloads": -1,
            "filename": "chiapos-2.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "af55182f8ad7c4aaad4364009051d3ac",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 1139181,
            "upload_time": "2024-02-08T19:25:49",
            "upload_time_iso_8601": "2024-02-08T19:25:49.802239Z",
            "url": "https://files.pythonhosted.org/packages/61/01/ce358d00e1a12a551df05f01284d9fcfd25834e9cceec4b03e3b00b4c1d1/chiapos-2.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-08 19:25:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Chia-Network",
    "github_project": "chiapos",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "chiapos"
}
        
Elapsed time: 0.21943s