fastcdc


Namefastcdc JSON
Version 1.6.0 PyPI version JSON
download
home_pagehttps://github.com/iscc/fastcdc-py
SummaryFastCDC (content defined chunking) in pure Python.
upload_time2024-05-09 19:28:22
maintainerNone
docs_urlNone
authorTitusz Pan
requires_python<4.0,>=3.7.2
licenseMIT
keywords cdc chunking
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # FastCDC

[![Tests](https://github.com/titusz/fastcdc-py/workflows/Tests/badge.svg)](https://github.com/titusz/fastcdc-py/actions?query=workflow%3ATests)
[![Version](https://img.shields.io/pypi/v/fastcdc.svg)](https://pypi.python.org/pypi/fastcdc/)
[![Downloads](https://pepy.tech/badge/fastcdc)](https://pepy.tech/project/fastcdc)

This package implements the "FastCDC" content defined chunking algorithm in
Python with optional cython support. To learn more about content
defined chunking and its applications, see the reference material linked below.


## Requirements

* [Python](https://www.python.org/) Version 3.7 and later. Tested on Linux, Mac and
Windows

## Installing

```shell
$ pip install fastcdc
```

To enable add additional support for the hash algorithms
([xxhash](https://github.com/Cyan4973/xxHash) and
[blake3](https://github.com/BLAKE3-team/BLAKE3/)) use

```shell
$ pip install fastcdc[hashes]
```

## Usage

### Calculate chunks with default settings:
```shell
$ fastcdc tests/SekienAkashita.jpg
hash=103159aa68bb1ea98f64248c647b8fe9a303365d80cb63974a73bba8bc3167d7 offset=0 size=22366
hash=3f2b58dc77982e763e75db76c4205aaab4e18ff8929e298ca5c58500fee5530d offset=22366 size=10491
hash=fcfb2f49ccb2640887a74fad1fb8a32368b5461a9dccc28f29ddb896b489b913 offset=32857 size=14094
hash=bd1198535cdb87c5571378db08b6e886daf810873f5d77000a54795409464138 offset=46951 size=18696
hash=d6347a2e5bf586d42f2d80559d4f4a2bf160dce8f77eede023ad2314856f3086 offset=65647 size=43819
```

### Customize min-size, avg-size, max-size, and hash function
```shell
$ fastcdc -mi 16384 -s 32768 -ma 65536 -hf sha256 tests/SekienAkashita.jpg
hash=5a80871bad4588c7278d39707fe68b8b174b1aa54c59169d3c2c72f1e16ef46d offset=0 size=32857
hash=13f6a4c6d42df2b76c138c13e86e1379c203445055c2b5f043a5f6c291fa520d offset=32857 size=16408
hash=0fe7305ba21a5a5ca9f89962c5a6f3e29cd3e2b36f00e565858e0012e5f8df36 offset=49265 size=60201
```

###  Scan files in directory and report duplication.
```shell
$ fastcdc scan ~/Downloads
[####################################]  100%
Files:          1,332
Chunk Sizes:    min 4096 - avg 16384 - max 131072
Unique Chunks:  506,077
Total Data:     9.3 GB
Dupe Data:      873.8 MB
DeDupe Ratio:   9.36 %
Throughput:     135.2 MB/s
```

### Show help

```shell
$ fastcdc
Usage: fastcdc [OPTIONS] COMMAND [ARGS]...

Options:
  --version  Show the version and exit.
  --help     Show this message and exit.

Commands:
  chunkify*  Find variable sized chunks for FILE and compute hashes.
  benchmark  Benchmark chunking performance.
  scan       Scan files in directory and report duplication.
```

### Use from your python code
The  tests also have some short examples of using the chunker, of which this
code snippet is an example:

```python
from fastcdc import fastcdc

results = list(fastcdc("tests/SekienAkashita.jpg", 16384, 32768, 65536))
assert len(results) == 3
assert results[0].offset == 0
assert results[0].length == 32857
assert results[1].offset == 32857
assert results[1].length == 16408
assert results[2].offset == 49265
assert results[2].length == 60201
```

## Reference Material

The algorithm is as described in "FastCDC: a Fast and Efficient Content-Defined
Chunking Approach for Data Deduplication"; see the
[paper](https://www.usenix.org/system/files/conference/atc16/atc16-paper-xia.pdf),
and
[presentation](https://www.usenix.org/sites/default/files/conference/protected-files/atc16_slides_xia.pdf)
for details. There are some minor differences, as described below.

### Differences with the FastCDC paper

The explanation below is copied from
[ronomon/deduplication](https://github.com/ronomon/deduplication) since this
codebase is little more than a translation of that implementation:

> The following optimizations and variations on FastCDC are involved in the chunking algorithm:
> * 31 bit integers to avoid 64 bit integers for the sake of the Javascript reference implementation.
> * A right shift instead of a left shift to remove the need for an additional modulus operator, which would otherwise have been necessary to prevent overflow.
> * Masks are no longer zero-padded since a right shift is used instead of a left shift.
> * A more adaptive threshold based on a combination of average and minimum chunk size (rather than just average chunk size) to decide the pivot point at which to switch masks. A larger minimum chunk size now switches from the strict mask to the eager mask earlier.
> * Masks use 1 bit of chunk size normalization instead of 2 bits of chunk size normalization.

The primary objective of this codebase was to have a Python implementation with a
permissive license, which could be used for new projects, without concern for
data parity with existing implementations.

## Prior Art

This package started as Python port of the implementation by Nathan Fiedler (see the
nlfiedler link below).

* [nlfiedler/fastcdc-rs](https://github.com/nlfiedler/fastcdc-rs)
    + Rust implementation on which this code is based.
* [ronomon/deduplication](https://github.com/ronomon/deduplication)
    + C++ and JavaScript implementation on which the rust implementation is based.
* [rdedup_cdc at docs.rs](https://docs.rs/crate/rdedup-cdc/0.1.0/source/src/fastcdc.rs)
    + An alternative implementation of FastCDC to the one in this crate.
* [jrobhoward/quickcdc](https://github.com/jrobhoward/quickcdc)
    + Similar but slightly earlier algorithm by some of the same researchers.

## Change Log

## [1.6.0] - 2024-05-09
- added python 3.12 support
- removed python 3.7 support
- updated dependencies

## [1.5.0] - 2023-03-13
- added python 3.10/3.11 support
- removed python 3.6 support
- update dependencies

## [1.4.2] - 2020-11-25
- add binary releases to PyPI (Xie Yanbo)
- update dependencies

## [1.4.1] - 2020-09-30
- fix issue with fat option in cython version
- updated dependencies

## [1.4.0] - 2020-08-08
- add support for multiple path with scan command
- fix issue with building cython extension
- fix issue with fat option
- fix zero-devision error

## [1.3.0] - 2020-06-26
- add new `scan` command to calculate deduplication ratio for directories

## [1.2.0] - 2020-05-23

### Added
- faster optional cython implementation
- benchmark command

## [1.1.0] - 2020-05-09

### Added
- high-level API
- support for streams
- support for custom hash functions


## [1.0.0] - 2020-05-07

### Added
- Initial release (port of [nlfiedler/fastcdc-rs](https://github.com/nlfiedler/fastcdc-rs)).


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/iscc/fastcdc-py",
    "name": "fastcdc",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.7.2",
    "maintainer_email": null,
    "keywords": "cdc, chunking",
    "author": "Titusz Pan",
    "author_email": "tp@py7.de",
    "download_url": "https://files.pythonhosted.org/packages/da/16/a745ac0828417fe7abe2529fec02fe1c0257941907d5ac06708142ef48ed/fastcdc-1.6.0.tar.gz",
    "platform": null,
    "description": "# FastCDC\n\n[![Tests](https://github.com/titusz/fastcdc-py/workflows/Tests/badge.svg)](https://github.com/titusz/fastcdc-py/actions?query=workflow%3ATests)\n[![Version](https://img.shields.io/pypi/v/fastcdc.svg)](https://pypi.python.org/pypi/fastcdc/)\n[![Downloads](https://pepy.tech/badge/fastcdc)](https://pepy.tech/project/fastcdc)\n\nThis package implements the \"FastCDC\" content defined chunking algorithm in\nPython with optional cython support. To learn more about content\ndefined chunking and its applications, see the reference material linked below.\n\n\n## Requirements\n\n* [Python](https://www.python.org/) Version 3.7 and later. Tested on Linux, Mac and\nWindows\n\n## Installing\n\n```shell\n$ pip install fastcdc\n```\n\nTo enable add additional support for the hash algorithms\n([xxhash](https://github.com/Cyan4973/xxHash) and\n[blake3](https://github.com/BLAKE3-team/BLAKE3/)) use\n\n```shell\n$ pip install fastcdc[hashes]\n```\n\n## Usage\n\n### Calculate chunks with default settings:\n```shell\n$ fastcdc tests/SekienAkashita.jpg\nhash=103159aa68bb1ea98f64248c647b8fe9a303365d80cb63974a73bba8bc3167d7 offset=0 size=22366\nhash=3f2b58dc77982e763e75db76c4205aaab4e18ff8929e298ca5c58500fee5530d offset=22366 size=10491\nhash=fcfb2f49ccb2640887a74fad1fb8a32368b5461a9dccc28f29ddb896b489b913 offset=32857 size=14094\nhash=bd1198535cdb87c5571378db08b6e886daf810873f5d77000a54795409464138 offset=46951 size=18696\nhash=d6347a2e5bf586d42f2d80559d4f4a2bf160dce8f77eede023ad2314856f3086 offset=65647 size=43819\n```\n\n### Customize min-size, avg-size, max-size, and hash function\n```shell\n$ fastcdc -mi 16384 -s 32768 -ma 65536 -hf sha256 tests/SekienAkashita.jpg\nhash=5a80871bad4588c7278d39707fe68b8b174b1aa54c59169d3c2c72f1e16ef46d offset=0 size=32857\nhash=13f6a4c6d42df2b76c138c13e86e1379c203445055c2b5f043a5f6c291fa520d offset=32857 size=16408\nhash=0fe7305ba21a5a5ca9f89962c5a6f3e29cd3e2b36f00e565858e0012e5f8df36 offset=49265 size=60201\n```\n\n###  Scan files in directory and report duplication.\n```shell\n$ fastcdc scan ~/Downloads\n[####################################]  100%\nFiles:          1,332\nChunk Sizes:    min 4096 - avg 16384 - max 131072\nUnique Chunks:  506,077\nTotal Data:     9.3 GB\nDupe Data:      873.8 MB\nDeDupe Ratio:   9.36 %\nThroughput:     135.2 MB/s\n```\n\n### Show help\n\n```shell\n$ fastcdc\nUsage: fastcdc [OPTIONS] COMMAND [ARGS]...\n\nOptions:\n  --version  Show the version and exit.\n  --help     Show this message and exit.\n\nCommands:\n  chunkify*  Find variable sized chunks for FILE and compute hashes.\n  benchmark  Benchmark chunking performance.\n  scan       Scan files in directory and report duplication.\n```\n\n### Use from your python code\nThe  tests also have some short examples of using the chunker, of which this\ncode snippet is an example:\n\n```python\nfrom fastcdc import fastcdc\n\nresults = list(fastcdc(\"tests/SekienAkashita.jpg\", 16384, 32768, 65536))\nassert len(results) == 3\nassert results[0].offset == 0\nassert results[0].length == 32857\nassert results[1].offset == 32857\nassert results[1].length == 16408\nassert results[2].offset == 49265\nassert results[2].length == 60201\n```\n\n## Reference Material\n\nThe algorithm is as described in \"FastCDC: a Fast and Efficient Content-Defined\nChunking Approach for Data Deduplication\"; see the\n[paper](https://www.usenix.org/system/files/conference/atc16/atc16-paper-xia.pdf),\nand\n[presentation](https://www.usenix.org/sites/default/files/conference/protected-files/atc16_slides_xia.pdf)\nfor details. There are some minor differences, as described below.\n\n### Differences with the FastCDC paper\n\nThe explanation below is copied from\n[ronomon/deduplication](https://github.com/ronomon/deduplication) since this\ncodebase is little more than a translation of that implementation:\n\n> The following optimizations and variations on FastCDC are involved in the chunking algorithm:\n> * 31 bit integers to avoid 64 bit integers for the sake of the Javascript reference implementation.\n> * A right shift instead of a left shift to remove the need for an additional modulus operator, which would otherwise have been necessary to prevent overflow.\n> * Masks are no longer zero-padded since a right shift is used instead of a left shift.\n> * A more adaptive threshold based on a combination of average and minimum chunk size (rather than just average chunk size) to decide the pivot point at which to switch masks. A larger minimum chunk size now switches from the strict mask to the eager mask earlier.\n> * Masks use 1 bit of chunk size normalization instead of 2 bits of chunk size normalization.\n\nThe primary objective of this codebase was to have a Python implementation with a\npermissive license, which could be used for new projects, without concern for\ndata parity with existing implementations.\n\n## Prior Art\n\nThis package started as Python port of the implementation by Nathan Fiedler (see the\nnlfiedler link below).\n\n* [nlfiedler/fastcdc-rs](https://github.com/nlfiedler/fastcdc-rs)\n    + Rust implementation on which this code is based.\n* [ronomon/deduplication](https://github.com/ronomon/deduplication)\n    + C++ and JavaScript implementation on which the rust implementation is based.\n* [rdedup_cdc at docs.rs](https://docs.rs/crate/rdedup-cdc/0.1.0/source/src/fastcdc.rs)\n    + An alternative implementation of FastCDC to the one in this crate.\n* [jrobhoward/quickcdc](https://github.com/jrobhoward/quickcdc)\n    + Similar but slightly earlier algorithm by some of the same researchers.\n\n## Change Log\n\n## [1.6.0] - 2024-05-09\n- added python 3.12 support\n- removed python 3.7 support\n- updated dependencies\n\n## [1.5.0] - 2023-03-13\n- added python 3.10/3.11 support\n- removed python 3.6 support\n- update dependencies\n\n## [1.4.2] - 2020-11-25\n- add binary releases to PyPI (Xie Yanbo)\n- update dependencies\n\n## [1.4.1] - 2020-09-30\n- fix issue with fat option in cython version\n- updated dependencies\n\n## [1.4.0] - 2020-08-08\n- add support for multiple path with scan command\n- fix issue with building cython extension\n- fix issue with fat option\n- fix zero-devision error\n\n## [1.3.0] - 2020-06-26\n- add new `scan` command to calculate deduplication ratio for directories\n\n## [1.2.0] - 2020-05-23\n\n### Added\n- faster optional cython implementation\n- benchmark command\n\n## [1.1.0] - 2020-05-09\n\n### Added\n- high-level API\n- support for streams\n- support for custom hash functions\n\n\n## [1.0.0] - 2020-05-07\n\n### Added\n- Initial release (port of [nlfiedler/fastcdc-rs](https://github.com/nlfiedler/fastcdc-rs)).\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "FastCDC (content defined chunking) in pure Python.",
    "version": "1.6.0",
    "project_urls": {
        "Homepage": "https://github.com/iscc/fastcdc-py",
        "Repository": "https://github.com/iscc/fastcdc-py"
    },
    "split_keywords": [
        "cdc",
        " chunking"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f8dee6eb180bd8c007e2844dbb6c67eec4532081fa94995e7e59b27d4dfa463",
                "md5": "8b092815a473cd4e536ee76e43587a3a",
                "sha256": "b755c490bef330a796eb6a8f175ed5f7afcda9967c959afd447b0fa2367f2f38"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b092815a473cd4e536ee76e43587a3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.7.2",
            "size": 280665,
            "upload_time": "2024-05-09T19:27:36",
            "upload_time_iso_8601": "2024-05-09T19:27:36.643513Z",
            "url": "https://files.pythonhosted.org/packages/7f/8d/ee6eb180bd8c007e2844dbb6c67eec4532081fa94995e7e59b27d4dfa463/fastcdc-1.6.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bccf424916d980bef71962b85f9179915d29d8db5c2a1ef79a18f02691b6fa9d",
                "md5": "b85b19dd26e97d507936d057d6b8b507",
                "sha256": "470e22ece244adc00dd744eab71591daa6ca4da7f52d1e95a308ad9f731a0a02"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp310-cp310-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b85b19dd26e97d507936d057d6b8b507",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.7.2",
            "size": 280518,
            "upload_time": "2024-05-09T19:27:38",
            "upload_time_iso_8601": "2024-05-09T19:27:38.562763Z",
            "url": "https://files.pythonhosted.org/packages/bc/cf/424916d980bef71962b85f9179915d29d8db5c2a1ef79a18f02691b6fa9d/fastcdc-1.6.0-cp310-cp310-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88b54804766f898626ca047bdd8deaa31486629607476d4c077682f9b7c08ba1",
                "md5": "45d166391e310738ab0022369cbce008",
                "sha256": "e3037026e3c553d0a678e2d2b70affa62dc5183dba14b0d3daa91b5acb196120"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp310-cp310-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45d166391e310738ab0022369cbce008",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.7.2",
            "size": 725942,
            "upload_time": "2024-05-09T19:27:41",
            "upload_time_iso_8601": "2024-05-09T19:27:41.917442Z",
            "url": "https://files.pythonhosted.org/packages/88/b5/4804766f898626ca047bdd8deaa31486629607476d4c077682f9b7c08ba1/fastcdc-1.6.0-cp310-cp310-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0d22944adfd07bfa237ac60cdf4a9411b323654cbf40eea5cc0325f4538f7d6",
                "md5": "f17d9e8ca28d04911828b5e8dd2f930a",
                "sha256": "dc1fab61abce713d4895baf7fad28391efb705b3157a70049e8384f4013c8159"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f17d9e8ca28d04911828b5e8dd2f930a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.7.2",
            "size": 269645,
            "upload_time": "2024-05-09T19:27:44",
            "upload_time_iso_8601": "2024-05-09T19:27:44.510349Z",
            "url": "https://files.pythonhosted.org/packages/a0/d2/2944adfd07bfa237ac60cdf4a9411b323654cbf40eea5cc0325f4538f7d6/fastcdc-1.6.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "151eb2d8302b342d8e37002d30cebdb351531f5bbbf261dcb3eb8a49289cc413",
                "md5": "e74627bd2672b50eb2bf5a13c155107d",
                "sha256": "a056f2847aeebdc51cb3e8442d86c22823fc362f7c8d23ff317d4061c83de95d"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp311-cp311-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e74627bd2672b50eb2bf5a13c155107d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.7.2",
            "size": 367427,
            "upload_time": "2024-05-09T19:27:46",
            "upload_time_iso_8601": "2024-05-09T19:27:46.914607Z",
            "url": "https://files.pythonhosted.org/packages/15/1e/b2d8302b342d8e37002d30cebdb351531f5bbbf261dcb3eb8a49289cc413/fastcdc-1.6.0-cp311-cp311-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdf4bda1d9678bea81a762ca5b73c703911f6821ec998fefcfb6fcf3bb0c33bb",
                "md5": "273725302317f0ec64aefb6a46605425",
                "sha256": "ddefbb0e890683be29c4c50ca519c0128d1aaab0cd0cf31647a97e83e33ad02c"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp311-cp311-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "273725302317f0ec64aefb6a46605425",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.7.2",
            "size": 367805,
            "upload_time": "2024-05-09T19:27:49",
            "upload_time_iso_8601": "2024-05-09T19:27:49.267209Z",
            "url": "https://files.pythonhosted.org/packages/fd/f4/bda1d9678bea81a762ca5b73c703911f6821ec998fefcfb6fcf3bb0c33bb/fastcdc-1.6.0-cp311-cp311-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cacfde34f467cacd15930b0784823feacd0fd2b8639c4315a44028406651d2b",
                "md5": "697d76d12d63348a6bad0627f2181de8",
                "sha256": "ee707505159166d0009d25e09d36de71942192a59021a7959ab833bf4dc2a9f9"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp311-cp311-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "697d76d12d63348a6bad0627f2181de8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.7.2",
            "size": 769164,
            "upload_time": "2024-05-09T19:27:52",
            "upload_time_iso_8601": "2024-05-09T19:27:52.265796Z",
            "url": "https://files.pythonhosted.org/packages/8c/ac/fde34f467cacd15930b0784823feacd0fd2b8639c4315a44028406651d2b/fastcdc-1.6.0-cp311-cp311-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7668e79c7aa8acd56063c33aaa7760be52c7a37758a391323d3cad4d6c873f9d",
                "md5": "aab88ff9833b2f09935da49968e6729d",
                "sha256": "075df947591e66b9fa2e545b030e6b4a659e8fa44b841a4517fcaf9a54498048"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aab88ff9833b2f09935da49968e6729d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.7.2",
            "size": 269665,
            "upload_time": "2024-05-09T19:27:54",
            "upload_time_iso_8601": "2024-05-09T19:27:54.578435Z",
            "url": "https://files.pythonhosted.org/packages/76/68/e79c7aa8acd56063c33aaa7760be52c7a37758a391323d3cad4d6c873f9d/fastcdc-1.6.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bc93d8ebd57df54aae7c47235baed70f9d2070b23e65d957cbe5e29f9e4de5c",
                "md5": "9fc76727318fe516cea566730042cb08",
                "sha256": "51b056789770c9458936f54a5d9d874e003e841143b6ad00cbadb4c6261d0f52"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp312-cp312-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9fc76727318fe516cea566730042cb08",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.7.2",
            "size": 370840,
            "upload_time": "2024-05-09T19:27:56",
            "upload_time_iso_8601": "2024-05-09T19:27:56.330356Z",
            "url": "https://files.pythonhosted.org/packages/1b/c9/3d8ebd57df54aae7c47235baed70f9d2070b23e65d957cbe5e29f9e4de5c/fastcdc-1.6.0-cp312-cp312-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6521ea8320659be5ab327f771fc5653de1a412094d2c171f2a16709c751b2203",
                "md5": "d73f25f07a7ccdc8413fef0a42b0d54e",
                "sha256": "a4eb7edc81d3f6f9b3836ea0d4280afb73026063c21a2aed3116d77341305865"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp312-cp312-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d73f25f07a7ccdc8413fef0a42b0d54e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.7.2",
            "size": 371197,
            "upload_time": "2024-05-09T19:27:58",
            "upload_time_iso_8601": "2024-05-09T19:27:58.076417Z",
            "url": "https://files.pythonhosted.org/packages/65/21/ea8320659be5ab327f771fc5653de1a412094d2c171f2a16709c751b2203/fastcdc-1.6.0-cp312-cp312-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1675e4d883d42453b17c0133af05a1446d5121ca00531280d2d2e606bb4ee924",
                "md5": "824d3d32f08ea4a175f7f2dd83575965",
                "sha256": "a80cc54c474a98a0774af9caf52aeb5fa7bf6e9a0814a58d86380a9538e0e2d5"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp312-cp312-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "824d3d32f08ea4a175f7f2dd83575965",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.7.2",
            "size": 760656,
            "upload_time": "2024-05-09T19:28:01",
            "upload_time_iso_8601": "2024-05-09T19:28:01.084973Z",
            "url": "https://files.pythonhosted.org/packages/16/75/e4d883d42453b17c0133af05a1446d5121ca00531280d2d2e606bb4ee924/fastcdc-1.6.0-cp312-cp312-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da8d9024c7857275d3a0147e8ba7222e30f1f899b0f0b9986d01fc79bc9570a7",
                "md5": "df487692c421c2af7921dc880f7e08b3",
                "sha256": "92793329dae8611fd0ab87663b7175be9b4377de760eaff7745a1e2080f6c87c"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "df487692c421c2af7921dc880f7e08b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.7.2",
            "size": 270377,
            "upload_time": "2024-05-09T19:28:03",
            "upload_time_iso_8601": "2024-05-09T19:28:03.443657Z",
            "url": "https://files.pythonhosted.org/packages/da/8d/9024c7857275d3a0147e8ba7222e30f1f899b0f0b9986d01fc79bc9570a7/fastcdc-1.6.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0dbef8d76b0e7a322034b969571e4ff135a4cfd5e05e998cfc494efed2fa3c13",
                "md5": "388336953cb140278477c457ff88aa07",
                "sha256": "6d2a01cd13407319c4fbb7f812d78d7628550dad5ef5a8ec0c0f715c63d3ab18"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "388336953cb140278477c457ff88aa07",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.7.2",
            "size": 280291,
            "upload_time": "2024-05-09T19:28:05",
            "upload_time_iso_8601": "2024-05-09T19:28:05.057259Z",
            "url": "https://files.pythonhosted.org/packages/0d/be/f8d76b0e7a322034b969571e4ff135a4cfd5e05e998cfc494efed2fa3c13/fastcdc-1.6.0-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c143e62e9ecfc9acdbaf15cb3a72c45826f4ebc42bef8424d2a888ded9e9afc",
                "md5": "4ca737a4c693538cac17a21f8a7d22f7",
                "sha256": "d7c0d080bcba475faa2d81b2aacdb019ce6d85927f9eca92b7b441e57ecaf544"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp38-cp38-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ca737a4c693538cac17a21f8a7d22f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.7.2",
            "size": 280435,
            "upload_time": "2024-05-09T19:28:06",
            "upload_time_iso_8601": "2024-05-09T19:28:06.935090Z",
            "url": "https://files.pythonhosted.org/packages/1c/14/3e62e9ecfc9acdbaf15cb3a72c45826f4ebc42bef8424d2a888ded9e9afc/fastcdc-1.6.0-cp38-cp38-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3535503d759d0a6295808048931f13349e8103daeded9f01d6c12044452ea4e",
                "md5": "bb7e76c84da7fe0dd2986a15971913e0",
                "sha256": "76493bfbb1aba57af7a400c667705316c1fdde87589a1e17eaf6bef6e933fe27"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp38-cp38-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb7e76c84da7fe0dd2986a15971913e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.7.2",
            "size": 746146,
            "upload_time": "2024-05-09T19:28:09",
            "upload_time_iso_8601": "2024-05-09T19:28:09.564634Z",
            "url": "https://files.pythonhosted.org/packages/d3/53/5503d759d0a6295808048931f13349e8103daeded9f01d6c12044452ea4e/fastcdc-1.6.0-cp38-cp38-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e818b92cac377767d6658006330c6cdd853d57e72b0b5753ebd7bde6537b278",
                "md5": "d54966c347e4a975545a643640ec5eef",
                "sha256": "ca1b8d0f5a4547a9479c66f19f25efcadb4b969f423f8fa4c99055eb953ad15e"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d54966c347e4a975545a643640ec5eef",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4.0,>=3.7.2",
            "size": 269860,
            "upload_time": "2024-05-09T19:28:12",
            "upload_time_iso_8601": "2024-05-09T19:28:12.019479Z",
            "url": "https://files.pythonhosted.org/packages/4e/81/8b92cac377767d6658006330c6cdd853d57e72b0b5753ebd7bde6537b278/fastcdc-1.6.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7636b78f233ffe142e6059ef09ca6607449be01801c45c4143d19f27cb3b54c",
                "md5": "b6bcf1630464cca3737643ba80f213d6",
                "sha256": "a6f42ee6c59da4ffa4a5175a269cd9ece695b67e83c7b0b46937679c9ba15bfc"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6bcf1630464cca3737643ba80f213d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.7.2",
            "size": 280961,
            "upload_time": "2024-05-09T19:28:13",
            "upload_time_iso_8601": "2024-05-09T19:28:13.597925Z",
            "url": "https://files.pythonhosted.org/packages/f7/63/6b78f233ffe142e6059ef09ca6607449be01801c45c4143d19f27cb3b54c/fastcdc-1.6.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c58d6df61ac2205e543c78f49f41f370dbb7a9cd5905651a9d25c9b2eea8268",
                "md5": "2ba8009e3a0d9bac5502c60c59bb2364",
                "sha256": "8866e3b77b2412bcc68bdadbe80c7f718f2634b2cfbdd9f10dfa229511e961a0"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp39-cp39-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ba8009e3a0d9bac5502c60c59bb2364",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.7.2",
            "size": 280751,
            "upload_time": "2024-05-09T19:28:15",
            "upload_time_iso_8601": "2024-05-09T19:28:15.805092Z",
            "url": "https://files.pythonhosted.org/packages/4c/58/d6df61ac2205e543c78f49f41f370dbb7a9cd5905651a9d25c9b2eea8268/fastcdc-1.6.0-cp39-cp39-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72ba07fcfb6eece7adc155a2212e72c405415c88da700c348d2d69bc2a404eb5",
                "md5": "622efe5d07af514c4d404e54562d3f12",
                "sha256": "762da55d96f65b30ac5e8000f7f23c56a718e6589801f821cb2dff5a1bc46090"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp39-cp39-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "622efe5d07af514c4d404e54562d3f12",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.7.2",
            "size": 726471,
            "upload_time": "2024-05-09T19:28:18",
            "upload_time_iso_8601": "2024-05-09T19:28:18.792725Z",
            "url": "https://files.pythonhosted.org/packages/72/ba/07fcfb6eece7adc155a2212e72c405415c88da700c348d2d69bc2a404eb5/fastcdc-1.6.0-cp39-cp39-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d348a6907a09b456d3c89e59b60e2e701d94002b2cfc4d049399e0149fda037",
                "md5": "8259e3ca8a79bba5ef1ceb897009709d",
                "sha256": "863a97773193d2f2e702cce33121c06edfff45f679ac855682ec34115fc2097b"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8259e3ca8a79bba5ef1ceb897009709d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.7.2",
            "size": 269669,
            "upload_time": "2024-05-09T19:28:21",
            "upload_time_iso_8601": "2024-05-09T19:28:21.108474Z",
            "url": "https://files.pythonhosted.org/packages/9d/34/8a6907a09b456d3c89e59b60e2e701d94002b2cfc4d049399e0149fda037/fastcdc-1.6.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da16a745ac0828417fe7abe2529fec02fe1c0257941907d5ac06708142ef48ed",
                "md5": "b6a1c5ff0ff231960e93521e6f1bd9d5",
                "sha256": "a1b04979644f7582649d70b5cd6cabd54bc009005ffb78dd82a1f0c2e2aae656"
            },
            "downloads": -1,
            "filename": "fastcdc-1.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b6a1c5ff0ff231960e93521e6f1bd9d5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.7.2",
            "size": 17281,
            "upload_time": "2024-05-09T19:28:22",
            "upload_time_iso_8601": "2024-05-09T19:28:22.339282Z",
            "url": "https://files.pythonhosted.org/packages/da/16/a745ac0828417fe7abe2529fec02fe1c0257941907d5ac06708142ef48ed/fastcdc-1.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-09 19:28:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "iscc",
    "github_project": "fastcdc-py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "fastcdc"
}
        
Elapsed time: 0.22495s