datasketches


Namedatasketches JSON
Version 5.1.0 PyPI version JSON
download
home_pagehttp://datasketches.apache.org
SummaryThe Apache DataSketches Library for Python
upload_time2024-09-26 07:30:59
maintainerNone
docs_urlNone
authorApache Software Foundation
requires_pythonNone
licenseApache License 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <img src="https://raw.githubusercontent.com/apache/datasketches-website/master/logos/svg/datasketches-HorizontalColor-TM.svg" width="75%" alt="Apache DataSketchs Logo">

# The Apache DataSketches Library for Python

This is the official version of the [Apache DataSketches](https://datasketches.apache.org) Python library.

In the analysis of big data there are often problem queries that don’t scale because they require huge compute resources and time to generate exact results. Examples include count distinct, quantiles, most-frequent items, joins, matrix computations, and graph analysis.

If approximate results are acceptable, there is a class of specialized algorithms, called streaming algorithms, or sketches that can produce results orders-of magnitude faster and with mathematically proven error bounds. For interactive queries there may not be other viable alternatives, and in the case of real-time analysis, sketches are the only known solution.

This package provides a variety of sketches as described below. Wherever a specific type of sketch exists in Apache DataSketches packages for other languages, the sketches will be portable between languages (for platforms with the same endianness).

## Building and Installation

Once cloned, the library can be installed by running `python3 -m pip install .` in the project root directory which will also install the necessary dependencies, namely NumPy and [Nanobind](https://github.com/wjakob/nanobind).

If you prefer to call the `setup.py` build script directly, which is discouraged, you must first install `nanobind` and `numpy`, as well as any other dependencies listed under the build-system section in `pyproject.toml`.

The library is also available from PyPI via `python3 -m pip install datasketches`.

## Usage

Having installed the library, loading the Apache DataSketches Library in Python is simple: `import datasketches`.

The unit tests are mostly structured in a tutorial style and can be used as a reference example for how to feed data into and query the different types of sketches.

## Available Sketch Classes

- KLL (Absolute Error Quantiles)
  - `kll_ints_sketch`
  - `kll_floats_sketch`
  - `kll_doubles_sketch`
  - `kll_items_sketch`
- Quantiles (Absolute Error Quantiles, inferior algorithm)
  - `quantiles_ints_sketch`
  - `quantiles_floats_sketch`
  - `quantiles_doubles_sketch`
  - `quantiles_items_sketch`
- REQ (Relative Error Quantiles)
  - `req_ints_sketch`
  - `req_floats_sketch`
  - `req_items_sketch`
- Frequent Items
  - `frequent_strings_sketch`
  - `frequent_items_sketch`
  - Error types are `frequent_items_error_type.{NO_FALSE_NEGATIVES | NO_FALSE_POSITIVES}`
- Theta
  - `update_theta_sketch`
  - `compact_theta_sketch` (cannot be instantiated directly)
  - `theta_union`
  - `theta_intersection`
  - `theta_a_not_b`
  - `theta_jaccard_similarity`
- Tuple
  - `update_tuple_sketch`
  - `compact_tuple_sketch` (cannot be instantiated directly)
  - `tuple_union`
  - `tuple_intersection`
  - `tuple_a_not_b`
  - `tuple_jaccard_similarity`
- HLL
  - `hll_sketch`
  - `hll_union`
  - Target HLL types are `tgt_hll_type.{HLL_4 | HLL_6 | HLL_8}`
- CPC
  - `cpc_sketch`
  - `cpc_union`
- VarOpt Sampling
  - `var_opt_sketch`
  - `var_opt_union`
- EBPPS Sampling (Exactly proportional to weight)
  - `ebpps_sketch`
- Vector of KLL
  - `vector_of_kll_ints_sketches`
  - `vector_of_kll_floats_sketches`
- Kolmogorov-Smirnov Test
  - `ks_test` applied to a pair of matched-type Absolute Error quantiles sketches
- Density
  - `density_sketch`
- Count-min sketch
  - `count_min_sketch`

## Known Differences from C++

The Python API largely mirrors the C++ API, with a few minor exceptions: The primary known differences are that Python on modern platforms does not support unsigned integer values or numeric values with fewer than 64 bits. As a result, you may not be able to produce identical sketches from within Python as you can with Java and C++. Loading those sketches after they have been serialized from another language will work as expected.

The Vector of KLL object is currently exclusive to python, and holds an array of independent KLL sketches. This is useful for creating a set of KLL sketches over a vector and has been designed to allow input as either a vector or a matrix of multiple vectors.

We have also removed reliance on a builder class for theta sketches as Python allows named arguments to the constructor, not strictly positional arguments.

## Developer Instructions

The only developer-specific instructions relate to running unit tests.

### Unit tests

The Python unit tests are run via `tox`, with no arguments, from the project root directory. Tox creates a temporary virtual environment in which to build and run the unit tests. In the event you are missing the necessary package, tox may be installed with `python3 -m pip install --upgrade tox`.

## License

The Apache DataSketches Library is distributed under the Apache 2.0 License.

There may be precompiled binaries provided as a convenience and distributed through PyPI via [https://pypi.org/project/datasketches/] contain compiled code from [nanobind](https://github.com/wjakob/nanobind), which is distributed under a BSD license.

            

Raw data

            {
    "_id": null,
    "home_page": "http://datasketches.apache.org",
    "name": "datasketches",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Apache Software Foundation",
    "author_email": "dev@datasketches.apache.org",
    "download_url": "https://files.pythonhosted.org/packages/34/19/1eb621d7c1f929fbde07544ab1dca50fa973afa479f713d97359ba394942/datasketches-5.1.0.tar.gz",
    "platform": null,
    "description": "<img src=\"https://raw.githubusercontent.com/apache/datasketches-website/master/logos/svg/datasketches-HorizontalColor-TM.svg\" width=\"75%\" alt=\"Apache DataSketchs Logo\">\n\n# The Apache DataSketches Library for Python\n\nThis is the official version of the [Apache DataSketches](https://datasketches.apache.org) Python library.\n\nIn the analysis of big data there are often problem queries that don\u2019t scale because they require huge compute resources and time to generate exact results. Examples include count distinct, quantiles, most-frequent items, joins, matrix computations, and graph analysis.\n\nIf approximate results are acceptable, there is a class of specialized algorithms, called streaming algorithms, or sketches that can produce results orders-of magnitude faster and with mathematically proven error bounds. For interactive queries there may not be other viable alternatives, and in the case of real-time analysis, sketches are the only known solution.\n\nThis package provides a variety of sketches as described below. Wherever a specific type of sketch exists in Apache DataSketches packages for other languages, the sketches will be portable between languages (for platforms with the same endianness).\n\n## Building and Installation\n\nOnce cloned, the library can be installed by running `python3 -m pip install .` in the project root directory which will also install the necessary dependencies, namely NumPy and [Nanobind](https://github.com/wjakob/nanobind).\n\nIf you prefer to call the `setup.py` build script directly, which is discouraged, you must first install `nanobind` and `numpy`, as well as any other dependencies listed under the build-system section in `pyproject.toml`.\n\nThe library is also available from PyPI via `python3 -m pip install datasketches`.\n\n## Usage\n\nHaving installed the library, loading the Apache DataSketches Library in Python is simple: `import datasketches`.\n\nThe unit tests are mostly structured in a tutorial style and can be used as a reference example for how to feed data into and query the different types of sketches.\n\n## Available Sketch Classes\n\n- KLL (Absolute Error Quantiles)\n  - `kll_ints_sketch`\n  - `kll_floats_sketch`\n  - `kll_doubles_sketch`\n  - `kll_items_sketch`\n- Quantiles (Absolute Error Quantiles, inferior algorithm)\n  - `quantiles_ints_sketch`\n  - `quantiles_floats_sketch`\n  - `quantiles_doubles_sketch`\n  - `quantiles_items_sketch`\n- REQ (Relative Error Quantiles)\n  - `req_ints_sketch`\n  - `req_floats_sketch`\n  - `req_items_sketch`\n- Frequent Items\n  - `frequent_strings_sketch`\n  - `frequent_items_sketch`\n  - Error types are `frequent_items_error_type.{NO_FALSE_NEGATIVES | NO_FALSE_POSITIVES}`\n- Theta\n  - `update_theta_sketch`\n  - `compact_theta_sketch` (cannot be instantiated directly)\n  - `theta_union`\n  - `theta_intersection`\n  - `theta_a_not_b`\n  - `theta_jaccard_similarity`\n- Tuple\n  - `update_tuple_sketch`\n  - `compact_tuple_sketch` (cannot be instantiated directly)\n  - `tuple_union`\n  - `tuple_intersection`\n  - `tuple_a_not_b`\n  - `tuple_jaccard_similarity`\n- HLL\n  - `hll_sketch`\n  - `hll_union`\n  - Target HLL types are `tgt_hll_type.{HLL_4 | HLL_6 | HLL_8}`\n- CPC\n  - `cpc_sketch`\n  - `cpc_union`\n- VarOpt Sampling\n  - `var_opt_sketch`\n  - `var_opt_union`\n- EBPPS Sampling (Exactly proportional to weight)\n  - `ebpps_sketch`\n- Vector of KLL\n  - `vector_of_kll_ints_sketches`\n  - `vector_of_kll_floats_sketches`\n- Kolmogorov-Smirnov Test\n  - `ks_test` applied to a pair of matched-type Absolute Error quantiles sketches\n- Density\n  - `density_sketch`\n- Count-min sketch\n  - `count_min_sketch`\n\n## Known Differences from C++\n\nThe Python API largely mirrors the C++ API, with a few minor exceptions: The primary known differences are that Python on modern platforms does not support unsigned integer values or numeric values with fewer than 64 bits. As a result, you may not be able to produce identical sketches from within Python as you can with Java and C++. Loading those sketches after they have been serialized from another language will work as expected.\n\nThe Vector of KLL object is currently exclusive to python, and holds an array of independent KLL sketches. This is useful for creating a set of KLL sketches over a vector and has been designed to allow input as either a vector or a matrix of multiple vectors.\n\nWe have also removed reliance on a builder class for theta sketches as Python allows named arguments to the constructor, not strictly positional arguments.\n\n## Developer Instructions\n\nThe only developer-specific instructions relate to running unit tests.\n\n### Unit tests\n\nThe Python unit tests are run via `tox`, with no arguments, from the project root directory. Tox creates a temporary virtual environment in which to build and run the unit tests. In the event you are missing the necessary package, tox may be installed with `python3 -m pip install --upgrade tox`.\n\n## License\n\nThe Apache DataSketches Library is distributed under the Apache 2.0 License.\n\nThere may be precompiled binaries provided as a convenience and distributed through PyPI via [https://pypi.org/project/datasketches/] contain compiled code from [nanobind](https://github.com/wjakob/nanobind), which is distributed under a BSD license.\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "The Apache DataSketches Library for Python",
    "version": "5.1.0",
    "project_urls": {
        "Homepage": "http://datasketches.apache.org"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07d038dc831f2f683cf1f06ee82e02bfc46836b8fddb92240cb54fa31c9fbed0",
                "md5": "238ebfee7db816f88230357bf26edea0",
                "sha256": "6c0c9492819fb9f16fbc44fde1bbbb4668b99d863fb06674fe374996dd713c7f"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp310-cp310-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "238ebfee7db816f88230357bf26edea0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 653942,
            "upload_time": "2024-09-26T07:29:51",
            "upload_time_iso_8601": "2024-09-26T07:29:51.126002Z",
            "url": "https://files.pythonhosted.org/packages/07/d0/38dc831f2f683cf1f06ee82e02bfc46836b8fddb92240cb54fa31c9fbed0/datasketches-5.1.0-cp310-cp310-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9f865398d6e47f17932cd774092ed8e68d80d7fb9eba82ef86c4d96aebab7e7",
                "md5": "a957215b1972749a60921a4d5dd0a940",
                "sha256": "743548037d996cdc5ba777276b7255de3ee7e32036ef0e9886e0ae61ba89664b"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a957215b1972749a60921a4d5dd0a940",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 583977,
            "upload_time": "2024-09-26T07:29:53",
            "upload_time_iso_8601": "2024-09-26T07:29:53.450867Z",
            "url": "https://files.pythonhosted.org/packages/f9/f8/65398d6e47f17932cd774092ed8e68d80d7fb9eba82ef86c4d96aebab7e7/datasketches-5.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7300031e0ff2de790ddad4e3aa13efa98dad9afba8b9b8860eb0526186f4a441",
                "md5": "0d39a988c215c0be6437f5c5a7a808fe",
                "sha256": "c45d221d20e0286ec60021d94032e6a2988a34a430a2da2f03145194150ad26d"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0d39a988c215c0be6437f5c5a7a808fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 674700,
            "upload_time": "2024-09-26T07:29:55",
            "upload_time_iso_8601": "2024-09-26T07:29:55.850914Z",
            "url": "https://files.pythonhosted.org/packages/73/00/031e0ff2de790ddad4e3aa13efa98dad9afba8b9b8860eb0526186f4a441/datasketches-5.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64c62d085b7cd8eb73943ef948e6713ce283720d34b446670d24381ce9f0b53c",
                "md5": "86fd2d282f4ba06574d7fcf0aee97ef5",
                "sha256": "fa0fe62482c4ff2be0ce489461a29eebb5726d12fa0a5b4aea140bb71fae416c"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86fd2d282f4ba06574d7fcf0aee97ef5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 734007,
            "upload_time": "2024-09-26T07:29:58",
            "upload_time_iso_8601": "2024-09-26T07:29:58.322355Z",
            "url": "https://files.pythonhosted.org/packages/64/c6/2d085b7cd8eb73943ef948e6713ce283720d34b446670d24381ce9f0b53c/datasketches-5.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "942a16d4caad8fe7a12e11d95e46f139a5a37ac348b37556f1ed5ad3480acaa5",
                "md5": "5cc2ce9eefd71369f8c1e7667762ebba",
                "sha256": "ff808cb8de1889ec3d06ae4bd91812f7b60deb14a28df30348f43f23d936bfdb"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5cc2ce9eefd71369f8c1e7667762ebba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 967461,
            "upload_time": "2024-09-26T07:30:00",
            "upload_time_iso_8601": "2024-09-26T07:30:00.924923Z",
            "url": "https://files.pythonhosted.org/packages/94/2a/16d4caad8fe7a12e11d95e46f139a5a37ac348b37556f1ed5ad3480acaa5/datasketches-5.1.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccea5843ec039a2ebbabc8f2bf2fac964fbc9caa55afe3d51db056d532df9690",
                "md5": "e6eb7cb79e1ce31585e6c56448fd0630",
                "sha256": "59f0a91fcf4954a91f2cd4ec9a7f9e3a8d20ac16ddc9f2352e37e8dbcd5fc100"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6eb7cb79e1ce31585e6c56448fd0630",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1037510,
            "upload_time": "2024-09-26T07:30:03",
            "upload_time_iso_8601": "2024-09-26T07:30:03.045073Z",
            "url": "https://files.pythonhosted.org/packages/cc/ea/5843ec039a2ebbabc8f2bf2fac964fbc9caa55afe3d51db056d532df9690/datasketches-5.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce0d277ad5ca281a107199e48787b00f1020d20e0e9d48ead66c59cf9af2df60",
                "md5": "aacd0abc3675838483b0340948a09ece",
                "sha256": "a0cf2d539fda2478dfc17d5cf513c9c49b189dfefb6c0800dd61ca81de33eed4"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aacd0abc3675838483b0340948a09ece",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 502005,
            "upload_time": "2024-09-26T07:30:04",
            "upload_time_iso_8601": "2024-09-26T07:30:04.875563Z",
            "url": "https://files.pythonhosted.org/packages/ce/0d/277ad5ca281a107199e48787b00f1020d20e0e9d48ead66c59cf9af2df60/datasketches-5.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a8fc54b443f2bb34a30552f861059c2966a5c930d8dce86597af8561a99a306",
                "md5": "4e51ac7831db116e22a308c5b456315f",
                "sha256": "7f9dded162f287b81ef3a041f5ba77b715fd13ebc118155e9dc6eaf52f6a0f3a"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp311-cp311-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e51ac7831db116e22a308c5b456315f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 653816,
            "upload_time": "2024-09-26T07:30:07",
            "upload_time_iso_8601": "2024-09-26T07:30:07.151592Z",
            "url": "https://files.pythonhosted.org/packages/6a/8f/c54b443f2bb34a30552f861059c2966a5c930d8dce86597af8561a99a306/datasketches-5.1.0-cp311-cp311-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d3a4b882753b163a3849ed4d21b6c89acdf68c8d841b4bc701a27b89b95a691",
                "md5": "66aa2a3ef7925ad186fd4644d8f71594",
                "sha256": "72a4e4445db2b389ef254099842cb5f0c4825163146285226b1e8580091e65ee"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "66aa2a3ef7925ad186fd4644d8f71594",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 583757,
            "upload_time": "2024-09-26T07:30:09",
            "upload_time_iso_8601": "2024-09-26T07:30:09.475512Z",
            "url": "https://files.pythonhosted.org/packages/3d/3a/4b882753b163a3849ed4d21b6c89acdf68c8d841b4bc701a27b89b95a691/datasketches-5.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ec446ae396494de7266ff9c2e741f6fe36bbcc5e5265ec9120baab156f29219",
                "md5": "072175a897fcb52092c40f1b1a82d0ef",
                "sha256": "213838924943b54da14345966a59102b65604f559b1e6120cd5385f5955efa19"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "072175a897fcb52092c40f1b1a82d0ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 674402,
            "upload_time": "2024-09-26T07:30:11",
            "upload_time_iso_8601": "2024-09-26T07:30:11.685927Z",
            "url": "https://files.pythonhosted.org/packages/1e/c4/46ae396494de7266ff9c2e741f6fe36bbcc5e5265ec9120baab156f29219/datasketches-5.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6e541f23e5b3bef97d814552ccd581a45e79dcc828908b64a7e6e59df64a46c",
                "md5": "15deef612be2ff44fbf4f318493313ad",
                "sha256": "c4453c1df1e924ee297f318a2813db1ad05ae63c3121f35de4e62d0fc358e742"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15deef612be2ff44fbf4f318493313ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 733609,
            "upload_time": "2024-09-26T07:30:13",
            "upload_time_iso_8601": "2024-09-26T07:30:13.384301Z",
            "url": "https://files.pythonhosted.org/packages/f6/e5/41f23e5b3bef97d814552ccd581a45e79dcc828908b64a7e6e59df64a46c/datasketches-5.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d043b1734001b8e8c58ffd9e91a7acfc1dfe627c7f34b9e02fb0658b798bdcec",
                "md5": "2f022221bf47580ea57b1b906af678eb",
                "sha256": "b8a718baa2eea3d8408e674e02e90e2ee5afcd5547c8e9ca8805f46ac798c101"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2f022221bf47580ea57b1b906af678eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 967179,
            "upload_time": "2024-09-26T07:30:15",
            "upload_time_iso_8601": "2024-09-26T07:30:15.190554Z",
            "url": "https://files.pythonhosted.org/packages/d0/43/b1734001b8e8c58ffd9e91a7acfc1dfe627c7f34b9e02fb0658b798bdcec/datasketches-5.1.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a00a7b726cba696c009681de90f18fae2e5da42ad3483bd5cfcde96af53c4fd7",
                "md5": "26bc904b59b740a93f01595a57544e6e",
                "sha256": "4d79ced5133500e3c9aa1b6b085ec6651c70133721b5865c46c53175b4e6ea2e"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "26bc904b59b740a93f01595a57544e6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1037398,
            "upload_time": "2024-09-26T07:30:16",
            "upload_time_iso_8601": "2024-09-26T07:30:16.971011Z",
            "url": "https://files.pythonhosted.org/packages/a0/0a/7b726cba696c009681de90f18fae2e5da42ad3483bd5cfcde96af53c4fd7/datasketches-5.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd90a6112cc281062b7832dfa05b7f3ea41a5a7d633a00edd3dd4275078d405a",
                "md5": "d06825dd6589f12b4011d820b605a785",
                "sha256": "8d2eebf971c1897becbbb36b6535e4ac76ff7e8afe84807f8bc8e9ff6c1b247f"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d06825dd6589f12b4011d820b605a785",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 502258,
            "upload_time": "2024-09-26T07:30:18",
            "upload_time_iso_8601": "2024-09-26T07:30:18.962596Z",
            "url": "https://files.pythonhosted.org/packages/fd/90/a6112cc281062b7832dfa05b7f3ea41a5a7d633a00edd3dd4275078d405a/datasketches-5.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0458cce74add5294b28e00fca39b4311123473a2a7ad0037f6c1e7db860c51d0",
                "md5": "faff16eb726be42222e8dff0e3907ebe",
                "sha256": "76b657b385e6a4fc07454d258557feff3f532b1469b407e826ecb56feeb3845b"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp312-cp312-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "faff16eb726be42222e8dff0e3907ebe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 642519,
            "upload_time": "2024-09-26T07:30:20",
            "upload_time_iso_8601": "2024-09-26T07:30:20.642253Z",
            "url": "https://files.pythonhosted.org/packages/04/58/cce74add5294b28e00fca39b4311123473a2a7ad0037f6c1e7db860c51d0/datasketches-5.1.0-cp312-cp312-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2a1f392d8a911efc8a07fc8e8e40548188da3bc3ddc37f5848c7bb91fd8e891",
                "md5": "f9fe5656277fee8f3767506e0b40a44b",
                "sha256": "0392a78bae226c3d5d4a476da3e9be3ff58ef76f79ca38c91059a8ca2c594dd6"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f9fe5656277fee8f3767506e0b40a44b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 577583,
            "upload_time": "2024-09-26T07:30:22",
            "upload_time_iso_8601": "2024-09-26T07:30:22.979930Z",
            "url": "https://files.pythonhosted.org/packages/f2/a1/f392d8a911efc8a07fc8e8e40548188da3bc3ddc37f5848c7bb91fd8e891/datasketches-5.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8693f3ef9cd68c9fd95d18d67d762691b5b9877eae3913f1fc38eb12f4c320e1",
                "md5": "efe272f59d91b466a4ab9226dce42a9e",
                "sha256": "91a4a9877cb39b6b8c9564ee3d8c2840ab635a73e90ceec5d9d7e65fdc048a69"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "efe272f59d91b466a4ab9226dce42a9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 669791,
            "upload_time": "2024-09-26T07:30:24",
            "upload_time_iso_8601": "2024-09-26T07:30:24.710092Z",
            "url": "https://files.pythonhosted.org/packages/86/93/f3ef9cd68c9fd95d18d67d762691b5b9877eae3913f1fc38eb12f4c320e1/datasketches-5.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c124806d7a96b0cc8f2af85685c164a8283860555fb31c9ed3df51517856775d",
                "md5": "13c068b0ea5ac81878895aac01981b1c",
                "sha256": "33781a455bc3082cb29640e2ec68558951bbd47f7d7a9dfdc7cc4d45b6b7857c"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13c068b0ea5ac81878895aac01981b1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 745539,
            "upload_time": "2024-09-26T07:30:26",
            "upload_time_iso_8601": "2024-09-26T07:30:26.430583Z",
            "url": "https://files.pythonhosted.org/packages/c1/24/806d7a96b0cc8f2af85685c164a8283860555fb31c9ed3df51517856775d/datasketches-5.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11eccaaa0db6d30fdafe1cd697f58273b7fc1d45515a42b2029db368ac22923b",
                "md5": "8fe26cad13a03a3138a90241f17f638e",
                "sha256": "f8db2e5dcf7134cdfb06e5161a39986c0c097df9cd732ed71f32f3b0b2201dc5"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8fe26cad13a03a3138a90241f17f638e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 965446,
            "upload_time": "2024-09-26T07:30:28",
            "upload_time_iso_8601": "2024-09-26T07:30:28.053586Z",
            "url": "https://files.pythonhosted.org/packages/11/ec/caaa0db6d30fdafe1cd697f58273b7fc1d45515a42b2029db368ac22923b/datasketches-5.1.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9074f2c16a78220bbb722e4aba2efb35eaf6a21e6a5e9401fd34120195b8a75",
                "md5": "2978e53acfa3d6cda353c2a0d88da95e",
                "sha256": "c2a64d4f0acb1f46e0d9c660acea4442c418dc458ec266ab15670af3cddedfde"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2978e53acfa3d6cda353c2a0d88da95e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1043048,
            "upload_time": "2024-09-26T07:30:29",
            "upload_time_iso_8601": "2024-09-26T07:30:29.984933Z",
            "url": "https://files.pythonhosted.org/packages/b9/07/4f2c16a78220bbb722e4aba2efb35eaf6a21e6a5e9401fd34120195b8a75/datasketches-5.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c8f0d5bf4c8c4e4cbcca382fd300198fec0b293867b4219830230b8aca215a0",
                "md5": "c8b53064d7eee9515106a0ef4526f9a7",
                "sha256": "52dd6f9ffbd1425681f6e7f5396f85ec51aec6b2b6ebe5ed58429ddf8bb9abd4"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c8b53064d7eee9515106a0ef4526f9a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 503392,
            "upload_time": "2024-09-26T07:30:31",
            "upload_time_iso_8601": "2024-09-26T07:30:31.960972Z",
            "url": "https://files.pythonhosted.org/packages/3c/8f/0d5bf4c8c4e4cbcca382fd300198fec0b293867b4219830230b8aca215a0/datasketches-5.1.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e565ce335325a1b0661c73b76de10d48cbee20b9cab1b611f657f486e69326a",
                "md5": "ac133b85849337082acf071096ec86f4",
                "sha256": "f9a1db86d162643626d503b143f793b8d6fb1ebf57542cb9976c7db1533ddcc1"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp38-cp38-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac133b85849337082acf071096ec86f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 653569,
            "upload_time": "2024-09-26T07:30:33",
            "upload_time_iso_8601": "2024-09-26T07:30:33.907760Z",
            "url": "https://files.pythonhosted.org/packages/5e/56/5ce335325a1b0661c73b76de10d48cbee20b9cab1b611f657f486e69326a/datasketches-5.1.0-cp38-cp38-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc88171014da0d1746fe5d8be73ffd582e688958835274a0e51322e7dc5bbe36",
                "md5": "9b3a41f1142ae6b5659b873f30878db6",
                "sha256": "021e93d739e2587c80516a7e919dcf6a56a82a95394fa1bb93857344990d82af"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9b3a41f1142ae6b5659b873f30878db6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 583661,
            "upload_time": "2024-09-26T07:30:35",
            "upload_time_iso_8601": "2024-09-26T07:30:35.859020Z",
            "url": "https://files.pythonhosted.org/packages/bc/88/171014da0d1746fe5d8be73ffd582e688958835274a0e51322e7dc5bbe36/datasketches-5.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f0354046ba5e49da4acb99c164adfe12e824c40da562677505f8e05b610839b",
                "md5": "c12f3c645bda6952e5448cf587284394",
                "sha256": "686b94e0d082566ad4e2466bb676d53070dcf03019991dd93a036cfa4208ae24"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c12f3c645bda6952e5448cf587284394",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 674637,
            "upload_time": "2024-09-26T07:30:37",
            "upload_time_iso_8601": "2024-09-26T07:30:37.551596Z",
            "url": "https://files.pythonhosted.org/packages/6f/03/54046ba5e49da4acb99c164adfe12e824c40da562677505f8e05b610839b/datasketches-5.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b1868cd0629b924a15a5829f56652ad0b626237cf969c1871541bd1543e126b",
                "md5": "2950dcb6bcf8dcce57b0c551b94c19c3",
                "sha256": "98c1f2419810f0a5aec8952f260e7f217f5e6e112b00bb130779fbeeb06511f7"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2950dcb6bcf8dcce57b0c551b94c19c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 733875,
            "upload_time": "2024-09-26T07:30:39",
            "upload_time_iso_8601": "2024-09-26T07:30:39.288432Z",
            "url": "https://files.pythonhosted.org/packages/3b/18/68cd0629b924a15a5829f56652ad0b626237cf969c1871541bd1543e126b/datasketches-5.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2eb1d52010d3956147de1fbb363691c3b51b6b377dfaeffd64c7d013480bbc43",
                "md5": "94a57503256e7cd81955685ae84c07e7",
                "sha256": "e9e70d73c91c8037272774ff5038b1f377a14f4070b8469f35c4d0603b039226"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "94a57503256e7cd81955685ae84c07e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 967184,
            "upload_time": "2024-09-26T07:30:41",
            "upload_time_iso_8601": "2024-09-26T07:30:41.019462Z",
            "url": "https://files.pythonhosted.org/packages/2e/b1/d52010d3956147de1fbb363691c3b51b6b377dfaeffd64c7d013480bbc43/datasketches-5.1.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f328ffb73e994e8dd4cd8dde8f4f3b94af0b83afa8ba66c143a66f664030eb98",
                "md5": "1e15af6353679df1fd30b35bd8d78b32",
                "sha256": "63cfd87d18daaa2270de6bbd00dd2e3270b9ba326da6500195b91b1424654a95"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e15af6353679df1fd30b35bd8d78b32",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1037470,
            "upload_time": "2024-09-26T07:30:43",
            "upload_time_iso_8601": "2024-09-26T07:30:43.177408Z",
            "url": "https://files.pythonhosted.org/packages/f3/28/ffb73e994e8dd4cd8dde8f4f3b94af0b83afa8ba66c143a66f664030eb98/datasketches-5.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b4a274fa6525840a30ecdd41ba4372bd35de53140a3ace7a5531762c0e6ba81",
                "md5": "4ee421862bf2a190846164f19b38edd2",
                "sha256": "543f55d3af686b72302e031feef60876189a916498d8675742128cd486df9684"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4ee421862bf2a190846164f19b38edd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 502367,
            "upload_time": "2024-09-26T07:30:45",
            "upload_time_iso_8601": "2024-09-26T07:30:45.013339Z",
            "url": "https://files.pythonhosted.org/packages/4b/4a/274fa6525840a30ecdd41ba4372bd35de53140a3ace7a5531762c0e6ba81/datasketches-5.1.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d374d467d3c3e58dc89639286c4c15585ece2f14c595ee2825d96b07a4b8ffaf",
                "md5": "6de01a92b2b178894263d9a191c614a7",
                "sha256": "954b6c57d53bf42dd0f00eeaa77ca6ba8288d50f2f2353ac3c9ff4524644ad08"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp39-cp39-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6de01a92b2b178894263d9a191c614a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 654185,
            "upload_time": "2024-09-26T07:30:46",
            "upload_time_iso_8601": "2024-09-26T07:30:46.764167Z",
            "url": "https://files.pythonhosted.org/packages/d3/74/d467d3c3e58dc89639286c4c15585ece2f14c595ee2825d96b07a4b8ffaf/datasketches-5.1.0-cp39-cp39-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0cf040b4c9a2b434d1213068fa74d1d7a722d88cbe0fa027d9a4b2e5578cd0b",
                "md5": "250e24151629d8038b173e1c6b0f9b99",
                "sha256": "fde64b18b2c182b78caee3b2b2aefce0e5143c641def2a7187dab631b596f0b2"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "250e24151629d8038b173e1c6b0f9b99",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 584092,
            "upload_time": "2024-09-26T07:30:48",
            "upload_time_iso_8601": "2024-09-26T07:30:48.271456Z",
            "url": "https://files.pythonhosted.org/packages/d0/cf/040b4c9a2b434d1213068fa74d1d7a722d88cbe0fa027d9a4b2e5578cd0b/datasketches-5.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d25d21947cce01eb1d6705ec3f9359e63594be4ae1bf3af6fadef935a05657f",
                "md5": "12401f0bfe3ea7cde160bc29433f2905",
                "sha256": "938929548d829c89951667b8967698a3147289efc32a7735eac8f465535cee9b"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "12401f0bfe3ea7cde160bc29433f2905",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 675129,
            "upload_time": "2024-09-26T07:30:49",
            "upload_time_iso_8601": "2024-09-26T07:30:49.756137Z",
            "url": "https://files.pythonhosted.org/packages/6d/25/d21947cce01eb1d6705ec3f9359e63594be4ae1bf3af6fadef935a05657f/datasketches-5.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abf73cb5317c5599243438ad9b09ffef837adbc4e794a5cd287797eb26132939",
                "md5": "573900bc48d78876a8dd82c9d196a42f",
                "sha256": "8c9783a2724532ad4e379b7be988d2dc61d7373805d30e184351d82ecd307eb3"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "573900bc48d78876a8dd82c9d196a42f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 734315,
            "upload_time": "2024-09-26T07:30:51",
            "upload_time_iso_8601": "2024-09-26T07:30:51.431114Z",
            "url": "https://files.pythonhosted.org/packages/ab/f7/3cb5317c5599243438ad9b09ffef837adbc4e794a5cd287797eb26132939/datasketches-5.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "749301644c65ab3a03e25ebeba3e896843a631ee74779e4eee13acbd0081b4a9",
                "md5": "42917f8af0f70417418b1a06c4131938",
                "sha256": "bbde72f44f07dda1d0d26454b18486a93f0682a511a8a54271b374dcdf691989"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "42917f8af0f70417418b1a06c4131938",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 967633,
            "upload_time": "2024-09-26T07:30:52",
            "upload_time_iso_8601": "2024-09-26T07:30:52.955927Z",
            "url": "https://files.pythonhosted.org/packages/74/93/01644c65ab3a03e25ebeba3e896843a631ee74779e4eee13acbd0081b4a9/datasketches-5.1.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32cae6ac67dd8b596178d89a03ba1669662f715cbb9eb94708d7d9a563c135c0",
                "md5": "9025aaae495245cea2521e6d5dec6cfe",
                "sha256": "2ca23f54c4ee6196794b921d79e7721986bffb61204c2d0b2995209806111c9f"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9025aaae495245cea2521e6d5dec6cfe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1037735,
            "upload_time": "2024-09-26T07:30:55",
            "upload_time_iso_8601": "2024-09-26T07:30:55.669911Z",
            "url": "https://files.pythonhosted.org/packages/32/ca/e6ac67dd8b596178d89a03ba1669662f715cbb9eb94708d7d9a563c135c0/datasketches-5.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8c451b486ad42cc16e0506b4d0c2fddede919eed39d280c18fe3fb1f1ebfa5e",
                "md5": "1683f669c0072ddccaa3066082e4a0ac",
                "sha256": "1baf026bc3a59cf0fac7b23836fe910d2ff72a1accbf15d146aa46edf02e96d7"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1683f669c0072ddccaa3066082e4a0ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 502465,
            "upload_time": "2024-09-26T07:30:57",
            "upload_time_iso_8601": "2024-09-26T07:30:57.336332Z",
            "url": "https://files.pythonhosted.org/packages/a8/c4/51b486ad42cc16e0506b4d0c2fddede919eed39d280c18fe3fb1f1ebfa5e/datasketches-5.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34191eb621d7c1f929fbde07544ab1dca50fa973afa479f713d97359ba394942",
                "md5": "c788bf467ac4a7b5ea09f1c7034012ab",
                "sha256": "2098c1a23edbfe64a4e2b8c1d344f461e0ce6123ef9d9d4e41ad49140c89460a"
            },
            "downloads": -1,
            "filename": "datasketches-5.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c788bf467ac4a7b5ea09f1c7034012ab",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 52884,
            "upload_time": "2024-09-26T07:30:59",
            "upload_time_iso_8601": "2024-09-26T07:30:59.157313Z",
            "url": "https://files.pythonhosted.org/packages/34/19/1eb621d7c1f929fbde07544ab1dca50fa973afa479f713d97359ba394942/datasketches-5.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-26 07:30:59",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "datasketches"
}
        
Elapsed time: 1.39404s