diffusion-core


Namediffusion-core JSON
Version 0.0.65 PyPI version JSON
download
home_page
SummaryPython SDK for Diffusion - CBOR serialisation.
upload_time2024-02-15 16:20:58
maintainer
docs_urlNone
author
requires_python<3.13,>=3.8
licenseProprietary
keywords diffusion cloud websockets data delta
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Python SDK for Diffusion - Core functionality

**Pre-release version; not ready for production.**

This is the core module for the [Python SDK for Diffusion](https://pypi.org/project/diffusion/).
It provides core functionality for the Python client, in particular
the native bindings for various performance-critical functions.

## Supported Python Versions

The Diffusion Python SDK officially supports the following:

Supported Interpreters:

* CPython 3.7.9 or later
* CPython 3.8.6 or later
* CPython 3.9.0 or later

Supported Platforms:

* MacOS 10.13-11.5
* Windows Intel 64-bit
* Any Linux supported by the [ManyLinux 2010/2014](https://github.com/pypa/manylinux) binary wheel standard.

## Current Capabilities

- CBOR (the binary protocol used to communicate with the Diffusion Server):
  - indefinite encoding (the preferred variant)
  - definite encoding
- Delta encoding/decoding (used to send and receive changes in a compact, CBOR-based format)

## Test call

```
python
import diffusion_core.cbor as diffusion_cbor
obj = {"arbitary":["json", "data", 0.0, -35]}
diffusion_cbor.dumps(obj, indefinite=True)

import diffusion_core.delta as diffusion_delta
orig = b'\0x00'
dest = b'\0xff'
# diff returns an object which is convertible to bytes
diff = bytes(diffusion_delta.diff(orig, dest))
# patch also returns an object which is convertible to bytes
reconstructed_dest = bytes(diffusion_delta.patch(orig, diff))
assert(dest == reconstructed_dest)

```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "diffusion-core",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "<3.13,>=3.8",
    "maintainer_email": "",
    "keywords": "diffusion,cloud,websockets,data,delta",
    "author": "",
    "author_email": "DiffusionData Limited <contact@diffusiondata.com>",
    "download_url": "",
    "platform": null,
    "description": "# Python SDK for Diffusion - Core functionality\n\n**Pre-release version; not ready for production.**\n\nThis is the core module for the [Python SDK for Diffusion](https://pypi.org/project/diffusion/).\nIt provides core functionality for the Python client, in particular\nthe native bindings for various performance-critical functions.\n\n## Supported Python Versions\n\nThe Diffusion Python SDK officially supports the following:\n\nSupported Interpreters:\n\n* CPython 3.7.9 or later\n* CPython 3.8.6 or later\n* CPython 3.9.0 or later\n\nSupported Platforms:\n\n* MacOS 10.13-11.5\n* Windows Intel 64-bit\n* Any Linux supported by the [ManyLinux 2010/2014](https://github.com/pypa/manylinux) binary wheel standard.\n\n## Current Capabilities\n\n- CBOR (the binary protocol used to communicate with the Diffusion Server):\n  - indefinite encoding (the preferred variant)\n  - definite encoding\n- Delta encoding/decoding (used to send and receive changes in a compact, CBOR-based format)\n\n## Test call\n\n```\npython\nimport diffusion_core.cbor as diffusion_cbor\nobj = {\"arbitary\":[\"json\", \"data\", 0.0, -35]}\ndiffusion_cbor.dumps(obj, indefinite=True)\n\nimport diffusion_core.delta as diffusion_delta\norig = b'\\0x00'\ndest = b'\\0xff'\n# diff returns an object which is convertible to bytes\ndiff = bytes(diffusion_delta.diff(orig, dest))\n# patch also returns an object which is convertible to bytes\nreconstructed_dest = bytes(diffusion_delta.patch(orig, diff))\nassert(dest == reconstructed_dest)\n\n```\n",
    "bugtrack_url": null,
    "license": "Proprietary",
    "summary": "Python SDK for Diffusion - CBOR serialisation.",
    "version": "0.0.65",
    "project_urls": {
        "Homepage": "https://www.diffusiondata.com/"
    },
    "split_keywords": [
        "diffusion",
        "cloud",
        "websockets",
        "data",
        "delta"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a013866364f65da994f98e50d0cc0fda9283c623653b3605dc0cb835a8d242e3",
                "md5": "743a38878a36885e63372731a92919ca",
                "sha256": "f75db8d9268cd83ebc0ad1b8954b2b1c92edfb2dd82fb9db3a4f32ee2e8bc819"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp310-cp310-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "743a38878a36885e63372731a92919ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 323922,
            "upload_time": "2024-02-15T16:20:58",
            "upload_time_iso_8601": "2024-02-15T16:20:58.457127Z",
            "url": "https://files.pythonhosted.org/packages/a0/13/866364f65da994f98e50d0cc0fda9283c623653b3605dc0cb835a8d242e3/diffusion_core-0.0.65-1-cp310-cp310-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ee6bbfc058fdb949734c2aaafa346e0088c79fcd6e3a6055983ff91afd1e431",
                "md5": "9496459188f731f612f2b0ee09bc1d15",
                "sha256": "4df499d846b75911c009fdbaf9b7a29bf48d97576a9d95f64039728ab823266d"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9496459188f731f612f2b0ee09bc1d15",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 324000,
            "upload_time": "2024-02-15T16:21:00",
            "upload_time_iso_8601": "2024-02-15T16:21:00.413586Z",
            "url": "https://files.pythonhosted.org/packages/0e/e6/bbfc058fdb949734c2aaafa346e0088c79fcd6e3a6055983ff91afd1e431/diffusion_core-0.0.65-1-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78fbb3ca96edf6874c7c77d1111d97fe0fc735ac9cf1fd90e06a11acae950970",
                "md5": "67d6117eafbd63c709e69c7b04ea778a",
                "sha256": "fcde9c9c8e08188fc8abede375f7affa3e7ed9a0f9e7001e36dd06fcda982065"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "67d6117eafbd63c709e69c7b04ea778a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 352705,
            "upload_time": "2024-02-15T16:21:03",
            "upload_time_iso_8601": "2024-02-15T16:21:03.527360Z",
            "url": "https://files.pythonhosted.org/packages/78/fb/b3ca96edf6874c7c77d1111d97fe0fc735ac9cf1fd90e06a11acae950970/diffusion_core-0.0.65-1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07cfafc48c6ce222eb71f157fc4db3edf122849605bafdd421ec7d5371c1f0f5",
                "md5": "4065b52d62b99d1ceaaf4f5c66d373b2",
                "sha256": "84af793cd0b7a9dfb3c8b1eedfed36e3e67820c9b92182e4d23daf1f3cf73699"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4065b52d62b99d1ceaaf4f5c66d373b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 324000,
            "upload_time": "2024-02-15T16:21:05",
            "upload_time_iso_8601": "2024-02-15T16:21:05.339521Z",
            "url": "https://files.pythonhosted.org/packages/07/cf/afc48c6ce222eb71f157fc4db3edf122849605bafdd421ec7d5371c1f0f5/diffusion_core-0.0.65-1-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c29af5b47c7d52b0abb0ca6f8f2a17cddb178b756ec40721ddc0d6b7fc5ccdc8",
                "md5": "1e8eccf308a4e9afd25accea54552c1c",
                "sha256": "e0e12712cc72f57afc568d19280be51c035c03981b876a0a3b9e7845a7ac128c"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "1e8eccf308a4e9afd25accea54552c1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 229755,
            "upload_time": "2024-02-15T16:21:08",
            "upload_time_iso_8601": "2024-02-15T16:21:08.197009Z",
            "url": "https://files.pythonhosted.org/packages/c2/9a/f5b47c7d52b0abb0ca6f8f2a17cddb178b756ec40721ddc0d6b7fc5ccdc8/diffusion_core-0.0.65-1-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe409c6fd47de9ffb37a05005a01930a20c2029b5184cb54a122494b56d54fd7",
                "md5": "e8856ed867c2c4bce5674bcd4451d5cf",
                "sha256": "478c0ef056835aaebec5d9884b91126e8da28dcfc23428a33f75523946469c28"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e8856ed867c2c4bce5674bcd4451d5cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 217034,
            "upload_time": "2024-02-15T16:21:10",
            "upload_time_iso_8601": "2024-02-15T16:21:10.222640Z",
            "url": "https://files.pythonhosted.org/packages/fe/40/9c6fd47de9ffb37a05005a01930a20c2029b5184cb54a122494b56d54fd7/diffusion_core-0.0.65-1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e059ccdeef1b6a1cb35502299d0d03605aa205bf2321d154b106ff1dd6de0ede",
                "md5": "68b35f678b2de6d480cc5d5740126533",
                "sha256": "346471d564b394c3fedb8265ce59120e9791faf8637e7528d9d38cdfdbc89c93"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "68b35f678b2de6d480cc5d5740126533",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 86108,
            "upload_time": "2024-02-15T16:21:12",
            "upload_time_iso_8601": "2024-02-15T16:21:12.992149Z",
            "url": "https://files.pythonhosted.org/packages/e0/59/ccdeef1b6a1cb35502299d0d03605aa205bf2321d154b106ff1dd6de0ede/diffusion_core-0.0.65-1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efd4159d1cb42692c51f14d12404dd35c5b7de401a573e1f90f30916dea4989d",
                "md5": "42552a9ec38f93374a323694d5c6a6ab",
                "sha256": "5b08a2b9d79f7c192025f86ec38bb704c78af556666ce95f220713a44e7fe021"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp311-cp311-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "42552a9ec38f93374a323694d5c6a6ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 325989,
            "upload_time": "2024-02-15T16:21:15",
            "upload_time_iso_8601": "2024-02-15T16:21:15.821974Z",
            "url": "https://files.pythonhosted.org/packages/ef/d4/159d1cb42692c51f14d12404dd35c5b7de401a573e1f90f30916dea4989d/diffusion_core-0.0.65-1-cp311-cp311-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06e068305bba7518518938c8cd794914d63ae684d95747624d11c575b709d8ae",
                "md5": "5d00ec49d62a6873a325920750936183",
                "sha256": "bd6d42b2adfd09dcc136fa7bf2b0774c829e7bd65cbddfb28fab73e18e23dbaf"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d00ec49d62a6873a325920750936183",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 326219,
            "upload_time": "2024-02-15T16:21:17",
            "upload_time_iso_8601": "2024-02-15T16:21:17.352433Z",
            "url": "https://files.pythonhosted.org/packages/06/e0/68305bba7518518938c8cd794914d63ae684d95747624d11c575b709d8ae/diffusion_core-0.0.65-1-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23390059c8a089c0da7cf4015d667f35896c7ea4eeafdee0f4ca2c92a4a0770c",
                "md5": "dc79b0b3df9d0c7f53c4a9dde151189a",
                "sha256": "560bdfacf5b72598bea946b9533f8fb0333f1f152f870792378b6dd50d27415b"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dc79b0b3df9d0c7f53c4a9dde151189a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 356314,
            "upload_time": "2024-02-15T16:21:19",
            "upload_time_iso_8601": "2024-02-15T16:21:19.538150Z",
            "url": "https://files.pythonhosted.org/packages/23/39/0059c8a089c0da7cf4015d667f35896c7ea4eeafdee0f4ca2c92a4a0770c/diffusion_core-0.0.65-1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04dcd4990f27b4c5f6dc6cbc648bb0c7dd361cd21b8a723d3d291075dc8ee143",
                "md5": "f7a68076efbaa642c891fbf5569098aa",
                "sha256": "160b27f96a20b1eae6cb654ab417e3b7efc9e2f3615239620232ebab638bf7a9"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp311-cp311-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7a68076efbaa642c891fbf5569098aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 326221,
            "upload_time": "2024-02-15T16:21:21",
            "upload_time_iso_8601": "2024-02-15T16:21:21.315576Z",
            "url": "https://files.pythonhosted.org/packages/04/dc/d4990f27b4c5f6dc6cbc648bb0c7dd361cd21b8a723d3d291075dc8ee143/diffusion_core-0.0.65-1-cp311-cp311-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d27b208623a1cf493fdeabe26687df1e5ea716eda3aae26cd23c4892184cc73",
                "md5": "47047c106effac831f426fb16006b4f7",
                "sha256": "5c850f2167a00926454afaab4962ada5e94210b0b5b2c2b6f685569ffcf3328f"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "47047c106effac831f426fb16006b4f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 232075,
            "upload_time": "2024-02-15T16:21:23",
            "upload_time_iso_8601": "2024-02-15T16:21:23.259902Z",
            "url": "https://files.pythonhosted.org/packages/2d/27/b208623a1cf493fdeabe26687df1e5ea716eda3aae26cd23c4892184cc73/diffusion_core-0.0.65-1-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "280705bc63f1c93814615a2d7baa5be5e57c3547e306fbfc8962132f6230c998",
                "md5": "7f1eda1eb0da2cc640bdc3739d06d81f",
                "sha256": "76c335acc55c47e299bbb24898ab9baf75a4002851efa5d352e715942a5287d4"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f1eda1eb0da2cc640bdc3739d06d81f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 218961,
            "upload_time": "2024-02-15T16:21:24",
            "upload_time_iso_8601": "2024-02-15T16:21:24.651622Z",
            "url": "https://files.pythonhosted.org/packages/28/07/05bc63f1c93814615a2d7baa5be5e57c3547e306fbfc8962132f6230c998/diffusion_core-0.0.65-1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb18d2add31725a11054acbff7305c451ca0af949955ea4a0a9778f24215a354",
                "md5": "7401fcc5e89e5bc609ebd356fe26aebf",
                "sha256": "041543a8f574cf3aa34de706c73a4516615b79b65b64ad1427294d6a7dcf5015"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7401fcc5e89e5bc609ebd356fe26aebf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 86838,
            "upload_time": "2024-02-15T16:21:25",
            "upload_time_iso_8601": "2024-02-15T16:21:25.944768Z",
            "url": "https://files.pythonhosted.org/packages/cb/18/d2add31725a11054acbff7305c451ca0af949955ea4a0a9778f24215a354/diffusion_core-0.0.65-1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2907df5358ffef5b1675b3ab183be8d3248906f02a94fea884efb49d575731eb",
                "md5": "0b0db45860a9b9967204624f1459a16d",
                "sha256": "8f263b6a24da4b4a57238b429b15a00f2ac104b334c071cbdaa8c355a47e196f"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp312-cp312-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0b0db45860a9b9967204624f1459a16d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 327027,
            "upload_time": "2024-02-15T16:21:27",
            "upload_time_iso_8601": "2024-02-15T16:21:27.336255Z",
            "url": "https://files.pythonhosted.org/packages/29/07/df5358ffef5b1675b3ab183be8d3248906f02a94fea884efb49d575731eb/diffusion_core-0.0.65-1-cp312-cp312-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "801917029f5bef024c1442286a5deb09beba81fc6dcf437b86decf376136d6a0",
                "md5": "dece66b65c500d4b4ae59ed43f271dad",
                "sha256": "65800cff33bc64fc79ae010a559668caf719387472a4f2e996fc528bf5565f6d"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp312-cp312-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dece66b65c500d4b4ae59ed43f271dad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 326865,
            "upload_time": "2024-02-15T16:21:29",
            "upload_time_iso_8601": "2024-02-15T16:21:29.146807Z",
            "url": "https://files.pythonhosted.org/packages/80/19/17029f5bef024c1442286a5deb09beba81fc6dcf437b86decf376136d6a0/diffusion_core-0.0.65-1-cp312-cp312-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fba6dc748ef66ea3912c087e6fc19f949f494d0b306a3b7b6adb03ac0a48b2d7",
                "md5": "1ba45f7fedb1c04b5bb9e715147f4103",
                "sha256": "8343878fe9fa1dbcef4097a412da0b2d3e1cdea90568513fe042cf74e95881aa"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1ba45f7fedb1c04b5bb9e715147f4103",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 355864,
            "upload_time": "2024-02-15T16:21:30",
            "upload_time_iso_8601": "2024-02-15T16:21:30.689128Z",
            "url": "https://files.pythonhosted.org/packages/fb/a6/dc748ef66ea3912c087e6fc19f949f494d0b306a3b7b6adb03ac0a48b2d7/diffusion_core-0.0.65-1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d88785036a06b7c3b9bbf5a540745cd6ee275e5b9798c5837c3c5f65f458994",
                "md5": "f5bae4ef111a44b0d877a166bee8511f",
                "sha256": "5ef189c6091dec523cd2faa8bda328e9c3279548e48d94e8fdcc1126b4d19a13"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp312-cp312-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5bae4ef111a44b0d877a166bee8511f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 326864,
            "upload_time": "2024-02-15T16:21:32",
            "upload_time_iso_8601": "2024-02-15T16:21:32.176151Z",
            "url": "https://files.pythonhosted.org/packages/2d/88/785036a06b7c3b9bbf5a540745cd6ee275e5b9798c5837c3c5f65f458994/diffusion_core-0.0.65-1-cp312-cp312-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75563f5abd4ee5fb9f5adbdec5441659bcd8928497a12806c3ceb809e2e54b55",
                "md5": "6fd927de82ea2137bd12d87cc215b6af",
                "sha256": "749884c6e08058e03a1bdeae6becffa77c5d52583464e1835e4e9af464f41a1d"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "6fd927de82ea2137bd12d87cc215b6af",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 231310,
            "upload_time": "2024-02-15T16:21:33",
            "upload_time_iso_8601": "2024-02-15T16:21:33.625765Z",
            "url": "https://files.pythonhosted.org/packages/75/56/3f5abd4ee5fb9f5adbdec5441659bcd8928497a12806c3ceb809e2e54b55/diffusion_core-0.0.65-1-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30ba5e0a2db73ee3d8a2dbf59e5811589508e14c87ff0db3acec42c7ad76f3f4",
                "md5": "fc37ecd1286e548601cb1c1d50b7eecb",
                "sha256": "f96e4fcde42a810e3d34ccb8497019aac7b06d5af860a78494746778e291f742"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc37ecd1286e548601cb1c1d50b7eecb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 221579,
            "upload_time": "2024-02-15T16:21:35",
            "upload_time_iso_8601": "2024-02-15T16:21:35.195537Z",
            "url": "https://files.pythonhosted.org/packages/30/ba/5e0a2db73ee3d8a2dbf59e5811589508e14c87ff0db3acec42c7ad76f3f4/diffusion_core-0.0.65-1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1525c5cb5e88c56699c38ec8d5ca99ca2168cfcb998e92a17b1b1372ad1eb4fb",
                "md5": "2cbb73dda932b00c9ebf93bc9d073737",
                "sha256": "e6fde49dfa0517d47b925d3424f4d683d109401a515dabbc0eb7333cc4a3ddfc"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2cbb73dda932b00c9ebf93bc9d073737",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 86011,
            "upload_time": "2024-02-15T16:21:36",
            "upload_time_iso_8601": "2024-02-15T16:21:36.761490Z",
            "url": "https://files.pythonhosted.org/packages/15/25/c5cb5e88c56699c38ec8d5ca99ca2168cfcb998e92a17b1b1372ad1eb4fb/diffusion_core-0.0.65-1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b80f19e54ee5faf6a4c23aba0082a2e8b28890a15ed24e888b3384d26cd3388f",
                "md5": "e96ffcb7a37e858d2d6281632929cb4a",
                "sha256": "5a848e92fa34e0fabfdfd7b9aa509cf5c7ff588c0082a3652a22d79811e62276"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp38-cp38-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e96ffcb7a37e858d2d6281632929cb4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 322776,
            "upload_time": "2024-02-15T16:21:38",
            "upload_time_iso_8601": "2024-02-15T16:21:38.041760Z",
            "url": "https://files.pythonhosted.org/packages/b8/0f/19e54ee5faf6a4c23aba0082a2e8b28890a15ed24e888b3384d26cd3388f/diffusion_core-0.0.65-1-cp38-cp38-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6106fb22002b75a6fd07f20d8872e0d5ee04564836149f1d1d4d17b2007a3e82",
                "md5": "eebefd52f13a59729dd6cb5c79ae280d",
                "sha256": "491e16760547d13b12514d17044a3a30b217722e40d5d45fd3629e7ef6e462c1"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eebefd52f13a59729dd6cb5c79ae280d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 322962,
            "upload_time": "2024-02-15T16:21:40",
            "upload_time_iso_8601": "2024-02-15T16:21:40.011039Z",
            "url": "https://files.pythonhosted.org/packages/61/06/fb22002b75a6fd07f20d8872e0d5ee04564836149f1d1d4d17b2007a3e82/diffusion_core-0.0.65-1-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80568b000b1e615bdac3b04294e701134bc74a9e05f2dc33470f3293d25e41ff",
                "md5": "530c36eb64c39030f066cb8f5cc94ce1",
                "sha256": "9c219abec86593a7bd138fe1510ee36df19d4511172afe044c1232ef1afbe3bc"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "530c36eb64c39030f066cb8f5cc94ce1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 352614,
            "upload_time": "2024-02-15T16:21:41",
            "upload_time_iso_8601": "2024-02-15T16:21:41.494975Z",
            "url": "https://files.pythonhosted.org/packages/80/56/8b000b1e615bdac3b04294e701134bc74a9e05f2dc33470f3293d25e41ff/diffusion_core-0.0.65-1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6db0619a00ff0cfc77ec69ce7e833a7e0a11dad0ffa2c777690fc041dc41b0bf",
                "md5": "2aa9b8725b919ce474ac1fa17db6c5d7",
                "sha256": "d821f13dd8aa40176e1c4f54cb626266acb32601ddcb2d8133f854a7004ea8c4"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2aa9b8725b919ce474ac1fa17db6c5d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 322960,
            "upload_time": "2024-02-15T16:21:43",
            "upload_time_iso_8601": "2024-02-15T16:21:43.163248Z",
            "url": "https://files.pythonhosted.org/packages/6d/b0/619a00ff0cfc77ec69ce7e833a7e0a11dad0ffa2c777690fc041dc41b0bf/diffusion_core-0.0.65-1-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6e644aeae4365e01ed62f6f7f57e47c3e98e079667c67ab4538f57aab29f737",
                "md5": "8f3f66453ebeded54308902f7589b3e0",
                "sha256": "2051e5d6897fb9606a57c23d05f076a51ced1bf9271d7e33fdbb159d5fb7cca5"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "8f3f66453ebeded54308902f7589b3e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 228889,
            "upload_time": "2024-02-15T16:21:44",
            "upload_time_iso_8601": "2024-02-15T16:21:44.564398Z",
            "url": "https://files.pythonhosted.org/packages/b6/e6/44aeae4365e01ed62f6f7f57e47c3e98e079667c67ab4538f57aab29f737/diffusion_core-0.0.65-1-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bbe2a70d887d6be8939d5852f87eece2558dd82357974adb3870719ce2863c5",
                "md5": "aa6877230dc618da1aeab6f11cb06407",
                "sha256": "8c5f4461a217b3d176581c465cfef71f7787e0b0a5a6a6648007377a20090a22"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa6877230dc618da1aeab6f11cb06407",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 216630,
            "upload_time": "2024-02-15T16:21:46",
            "upload_time_iso_8601": "2024-02-15T16:21:46.223597Z",
            "url": "https://files.pythonhosted.org/packages/5b/be/2a70d887d6be8939d5852f87eece2558dd82357974adb3870719ce2863c5/diffusion_core-0.0.65-1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c755416f52cfc41d6bc765ed2909e2e5e03c824cf35bf2ac78c499d91851da2",
                "md5": "414ddbaf22e009e5eec051bd40c5c86c",
                "sha256": "3d6e0287f11b29f9cb5aa9c8d32baa61659cd9b49e9ce56ff3043ebc7e553c0d"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "414ddbaf22e009e5eec051bd40c5c86c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 86112,
            "upload_time": "2024-02-15T16:21:47",
            "upload_time_iso_8601": "2024-02-15T16:21:47.554951Z",
            "url": "https://files.pythonhosted.org/packages/6c/75/5416f52cfc41d6bc765ed2909e2e5e03c824cf35bf2ac78c499d91851da2/diffusion_core-0.0.65-1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b103b8bdd7eb102a6f34d72e587bbd81a6a82ce0397ce7cc6cd7589f4ae2c21",
                "md5": "2557539a7ef6f5088f79f97abe16e2dd",
                "sha256": "ac23bb493d084bc30926870db21443980f92ac4e69e72bf93acff30dab2c639e"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp39-cp39-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2557539a7ef6f5088f79f97abe16e2dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 323785,
            "upload_time": "2024-02-15T16:21:48",
            "upload_time_iso_8601": "2024-02-15T16:21:48.903090Z",
            "url": "https://files.pythonhosted.org/packages/1b/10/3b8bdd7eb102a6f34d72e587bbd81a6a82ce0397ce7cc6cd7589f4ae2c21/diffusion_core-0.0.65-1-cp39-cp39-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b1a634e96612160069fc75481890a063a9688bed5bde3a298c5db1cbac785ba",
                "md5": "08946cbaefc49940402a3d7428205d00",
                "sha256": "58779f827c28118e834aabf786e5981c932640931e7d241a77e3a7bc6e390e1d"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08946cbaefc49940402a3d7428205d00",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 323863,
            "upload_time": "2024-02-15T16:21:50",
            "upload_time_iso_8601": "2024-02-15T16:21:50.569855Z",
            "url": "https://files.pythonhosted.org/packages/7b/1a/634e96612160069fc75481890a063a9688bed5bde3a298c5db1cbac785ba/diffusion_core-0.0.65-1-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f07afac9eb968373e6bfea8710df90720ed2f7370bf329dccbf7e4e6447603e",
                "md5": "adb11af311f2db3d62706965afb635f7",
                "sha256": "b819d0f90db516bde2505c09860baa42c3b1429ad07891691291d34444a33797"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "adb11af311f2db3d62706965afb635f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 353360,
            "upload_time": "2024-02-15T16:21:52",
            "upload_time_iso_8601": "2024-02-15T16:21:52.174451Z",
            "url": "https://files.pythonhosted.org/packages/4f/07/afac9eb968373e6bfea8710df90720ed2f7370bf329dccbf7e4e6447603e/diffusion_core-0.0.65-1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "809071bee42fc5ebf75572e454aaae8694b87a263dccf953c62cf91c2e7d7b6f",
                "md5": "674fded6ed733ef180f106f0bf1a5cf9",
                "sha256": "b02b1dad88ab162f4470455ff8c536469f320edc0834cf85e3fff963f8cf1183"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "674fded6ed733ef180f106f0bf1a5cf9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 323861,
            "upload_time": "2024-02-15T16:21:53",
            "upload_time_iso_8601": "2024-02-15T16:21:53.717906Z",
            "url": "https://files.pythonhosted.org/packages/80/90/71bee42fc5ebf75572e454aaae8694b87a263dccf953c62cf91c2e7d7b6f/diffusion_core-0.0.65-1-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb716bf99ded3ffc48fb58664f4fd565ed49024b452b135022df0a46e5369f59",
                "md5": "20f925d2c3f78b4dacbc8fed223640f0",
                "sha256": "daa3762cd418aa7f9b75f8a8aedabb1e4387e16d19374df41275f4a343542160"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "20f925d2c3f78b4dacbc8fed223640f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 229297,
            "upload_time": "2024-02-15T16:21:55",
            "upload_time_iso_8601": "2024-02-15T16:21:55.541041Z",
            "url": "https://files.pythonhosted.org/packages/eb/71/6bf99ded3ffc48fb58664f4fd565ed49024b452b135022df0a46e5369f59/diffusion_core-0.0.65-1-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44a5ec8d799a3b58cb277a13707442b7016beb3c15dbd8761c1cf46a22dd0710",
                "md5": "b532b301506d6277d96fc0a6a0b45594",
                "sha256": "f32c6fb3a6410c59ae1b29353974f574622b5fbb0ee98cae8450e49eaa2a6e4a"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b532b301506d6277d96fc0a6a0b45594",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 217132,
            "upload_time": "2024-02-15T16:21:57",
            "upload_time_iso_8601": "2024-02-15T16:21:57.085277Z",
            "url": "https://files.pythonhosted.org/packages/44/a5/ec8d799a3b58cb277a13707442b7016beb3c15dbd8761c1cf46a22dd0710/diffusion_core-0.0.65-1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ff242ed07ab2b514c55ab89700c9eada67ad3a9931886463d313ca8c73e3dc2",
                "md5": "b4d8f50f292a325ee42f0fdd6d6a780a",
                "sha256": "a245bdef01f986959376be7a49d0f143a571e17d9ec7389cf19d549ea5ed11d0"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b4d8f50f292a325ee42f0fdd6d6a780a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 85740,
            "upload_time": "2024-02-15T16:21:58",
            "upload_time_iso_8601": "2024-02-15T16:21:58.560456Z",
            "url": "https://files.pythonhosted.org/packages/5f/f2/42ed07ab2b514c55ab89700c9eada67ad3a9931886463d313ca8c73e3dc2/diffusion_core-0.0.65-1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1343694dc5d0ae9e399fabf554788d37c02a288e075caea7caee507f04428f0e",
                "md5": "5b1ffe536afec659671062790031c829",
                "sha256": "88b5e50153aa67c3130e30996ddf121bb936d2005c2bafd330d8c8a28954050b"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "5b1ffe536afec659671062790031c829",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<3.13,>=3.8",
            "size": 231593,
            "upload_time": "2024-02-15T16:22:00",
            "upload_time_iso_8601": "2024-02-15T16:22:00.276237Z",
            "url": "https://files.pythonhosted.org/packages/13/43/694dc5d0ae9e399fabf554788d37c02a288e075caea7caee507f04428f0e/diffusion_core-0.0.65-1-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60fc157e556215aeff5666e5e25580a189917f9b1aafd72f1278c1a36624133b",
                "md5": "c36524f66a5ba2bf4b6ceeb5ad9c3b84",
                "sha256": "b6245ca0d2468078a3d0e40e04f51e95d9a21fd9eb8ea3fa0320ac28c39af830"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c36524f66a5ba2bf4b6ceeb5ad9c3b84",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<3.13,>=3.8",
            "size": 218106,
            "upload_time": "2024-02-15T16:22:01",
            "upload_time_iso_8601": "2024-02-15T16:22:01.840238Z",
            "url": "https://files.pythonhosted.org/packages/60/fc/157e556215aeff5666e5e25580a189917f9b1aafd72f1278c1a36624133b/diffusion_core-0.0.65-1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be7e4969ea426b7506701efd30a4cc07408ec5f25fa47745c431eb99ba8773ae",
                "md5": "aebfd7e3dab11f64676b0a77f67295c6",
                "sha256": "55563d3706a427c0c0e8d1bb52db70be05c1bd91609bb2b7fbe0f5ba0136cd4d"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aebfd7e3dab11f64676b0a77f67295c6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<3.13,>=3.8",
            "size": 85769,
            "upload_time": "2024-02-15T16:22:03",
            "upload_time_iso_8601": "2024-02-15T16:22:03.291459Z",
            "url": "https://files.pythonhosted.org/packages/be/7e/4969ea426b7506701efd30a4cc07408ec5f25fa47745c431eb99ba8773ae/diffusion_core-0.0.65-1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e09de17261ddd8b679cd34f1baacc2d6b07d25494d848d2222ea353b1110a4db",
                "md5": "a8b9a9fcdb9b39929fa33d89f2680934",
                "sha256": "c1c757ba684172485e608bb7163624cca1247899dd07719e6c373b33d8d57e5e"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-pp38-pypy38_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "a8b9a9fcdb9b39929fa33d89f2680934",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<3.13,>=3.8",
            "size": 231481,
            "upload_time": "2024-02-15T16:22:04",
            "upload_time_iso_8601": "2024-02-15T16:22:04.655073Z",
            "url": "https://files.pythonhosted.org/packages/e0/9d/e17261ddd8b679cd34f1baacc2d6b07d25494d848d2222ea353b1110a4db/diffusion_core-0.0.65-1-pp38-pypy38_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8776d260d9879bf6b0d2bf8b758636630a2981c9a048b1773e293db76f3275b",
                "md5": "cfc9268762a2bca03c24daa57b485b93",
                "sha256": "33fd632153fca2c58090329ac068b75e8786f3e1860a5fa11a8bb6d26b11a77c"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-pp38-pypy38_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfc9268762a2bca03c24daa57b485b93",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<3.13,>=3.8",
            "size": 218202,
            "upload_time": "2024-02-15T16:22:06",
            "upload_time_iso_8601": "2024-02-15T16:22:06.269800Z",
            "url": "https://files.pythonhosted.org/packages/d8/77/6d260d9879bf6b0d2bf8b758636630a2981c9a048b1773e293db76f3275b/diffusion_core-0.0.65-1-pp38-pypy38_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb9605ccef1726a5b18eb686f710026f83d35a567ff73147f7cb11da2be8f557",
                "md5": "b1fd99589920510b62c5d2d5145e8e4f",
                "sha256": "c11d2116f7336cdb6aba69ed3ae6a7c0529c26df18df8d83145958cd9a632379"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b1fd99589920510b62c5d2d5145e8e4f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<3.13,>=3.8",
            "size": 85773,
            "upload_time": "2024-02-15T16:22:07",
            "upload_time_iso_8601": "2024-02-15T16:22:07.543066Z",
            "url": "https://files.pythonhosted.org/packages/eb/96/05ccef1726a5b18eb686f710026f83d35a567ff73147f7cb11da2be8f557/diffusion_core-0.0.65-1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21e927869fe1d66d4ac2f567c93fd04c7fda135a25dda19f70afec32266ef42b",
                "md5": "8e975643ed2b0ae35c30180147d634eb",
                "sha256": "142cb2e7c99478f72826acf91fc7de271dc78acf16334f0dee789b4d4104c1a6"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-pp39-pypy39_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "8e975643ed2b0ae35c30180147d634eb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<3.13,>=3.8",
            "size": 230788,
            "upload_time": "2024-02-15T16:22:08",
            "upload_time_iso_8601": "2024-02-15T16:22:08.987539Z",
            "url": "https://files.pythonhosted.org/packages/21/e9/27869fe1d66d4ac2f567c93fd04c7fda135a25dda19f70afec32266ef42b/diffusion_core-0.0.65-1-pp39-pypy39_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80dd44994c7a10650d6b0370849c6f8617c85640687966b07a8d3c2e75ef97ad",
                "md5": "9eebc5375defd960f09e76884a5fa0ff",
                "sha256": "aee466584e0ed80ed7459643da1bd5f85c75494d5128a255022aa275bd138067"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9eebc5375defd960f09e76884a5fa0ff",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<3.13,>=3.8",
            "size": 217949,
            "upload_time": "2024-02-15T16:22:10",
            "upload_time_iso_8601": "2024-02-15T16:22:10.441269Z",
            "url": "https://files.pythonhosted.org/packages/80/dd/44994c7a10650d6b0370849c6f8617c85640687966b07a8d3c2e75ef97ad/diffusion_core-0.0.65-1-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cefe045a121d300fd23185ade5aef95acbc2548a9ad8d342b6e997d11750fbd3",
                "md5": "dfc5831463f99b8a40b6f29ff7bb5151",
                "sha256": "d37511ac8560ebcedfbed56526e40138a8d939fdaa2297a71bd03ecd3977b2a4"
            },
            "downloads": -1,
            "filename": "diffusion_core-0.0.65-1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dfc5831463f99b8a40b6f29ff7bb5151",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<3.13,>=3.8",
            "size": 85774,
            "upload_time": "2024-02-15T16:22:11",
            "upload_time_iso_8601": "2024-02-15T16:22:11.943981Z",
            "url": "https://files.pythonhosted.org/packages/ce/fe/045a121d300fd23185ade5aef95acbc2548a9ad8d342b6e997d11750fbd3/diffusion_core-0.0.65-1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-15 16:20:58",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "diffusion-core"
}
        
Elapsed time: 0.20318s