oxidd


Nameoxidd JSON
Version 0.9.0 PyPI version JSON
download
home_pagehttps://oxidd.net
SummaryDecision Diagrams
upload_time2024-11-20 22:05:06
maintainerNone
docs_urlNone
authorOxiDD Contributors
requires_python>=3.9
licenseMIT OR Apache-2.0
keywords decision diagrams bdd zbdd zdd
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!-- spell-checker:ignore println,inproceedings,booktitle -->

# OxiDD

[![Matrix](https://img.shields.io/badge/matrix-join_chat-brightgreen?style=for-the-badge&logo=matrix)](https://matrix.to/#/#oxidd:matrix.org)


These are the Python bindings for OxiDD, a highly modular decision diagram framework written in Rust. The most prominent instance of decision diagrams is provided by [(reduced ordered) binary decision diagrams (BDDs)](https://en.wikipedia.org/wiki/Binary_decision_diagram), which are succinct representations of Boolean functions 𝔹<sup>n</sup> → 𝔹. Such BDD representations are canonical and thus, deciding equality of Boolean functions—in general a co-NP-complete problem—can be done in constant time. Further, many Boolean operations on two BDDs *f,g* are possible in 𝒪(|*f*| · |*g*|) (where |*f*| denotes the node count in *f*). There are various other kinds of decision diagrams for which OxiDD aims to be a framework enabling high-performance implementations with low effort.


## Features

- **Several kinds of (reduced ordered) decision diagrams** are already implemented:
    - Binary decision diagrams (BDDs)
    - BDDs with complement edges (BCDDs)
    - Zero-suppressed BDDs (ZBDDs, aka ZDDs/ZSDDs)
    - Not yet exposed via the Python API: Multi-terminal BDDs (MTBDDs, aka ADDs) and Ternary decision diagrams (TDDs)
- **Extensibility**: Due to OxiDD’s modular design, one can implement new kinds of decision diagrams without having to reimplement core data structures.
- **Concurrency**: Functions represented by DDs can safely be used in multi-threaded contexts. Furthermore, apply algorithms can be executed on multiple CPU cores in parallel.
- **Performance**: Compared to other popular BDD libraries (e.g., BuDDy, CUDD, and Sylvan), OxiDD is already competitive or even outperforms them.
- **Support for Reordering**: OxiDD can reorder a decision diagram to a given variable order. Support for dynamic reordering, e.g., via sifting, is about to come.


## Licensing

OxiDD is licensed under either [MIT](LICENSE-MIT) or [Apache 2.0](LICENSE-APACHE) at your opinion.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache 2.0 license, shall be dual licensed as above, without any additional terms or conditions.


## Publications

The [seminal paper](https://doi.org/10.1007/978-3-031-57256-2_13) presenting OxiDD was published at TACAS'24. If you use OxiDD, please cite us as:

Nils Husung, Clemens Dubslaff, Holger Hermanns, and Maximilian A. Köhl: *OxiDD: A safe, concurrent, modular, and performant decision diagram framework in Rust.* In: Proceedings of the 30th International Conference on Tools and Algorithms for the Construction and Analysis of Systems (TACAS’24)

    @inproceedings{oxidd24,
      author        = {Husung, Nils and Dubslaff, Clemens and Hermanns, Holger and K{\"o}hl, Maximilian A.},
      booktitle     = {Proceedings of the 30th International Conference on Tools and Algorithms for the Construction and Analysis of Systems (TACAS'24)},
      title         = {{OxiDD}: A Safe, Concurrent, Modular, and Performant Decision Diagram Framework in {Rust}},
      year          = {2024},
      doi           = {10.1007/978-3-031-57256-2_13}
    }


## Acknowledgements

This work is partially supported by the German Research Foundation (DFG) under the projects TRR 248 (see https://perspicuous-computing.science, project ID 389792660) and EXC 2050/1 (CeTI, project ID 390696704, as part of Germany’s Excellence Strategy).


            

Raw data

            {
    "_id": null,
    "home_page": "https://oxidd.net",
    "name": "oxidd",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "Nils Husung <nils@oxidd.net>",
    "keywords": "Decision Diagrams, BDD, ZBDD, ZDD",
    "author": "OxiDD Contributors",
    "author_email": "OxiDD Contributors <info@oxidd.net>",
    "download_url": "https://files.pythonhosted.org/packages/1f/a3/bd2cf3baeac4119f1554608266d10bd08ed06ca3e3a9a659c67abea4c24b/oxidd-0.9.0.tar.gz",
    "platform": null,
    "description": "<!-- spell-checker:ignore println,inproceedings,booktitle -->\n\n# OxiDD\n\n[![Matrix](https://img.shields.io/badge/matrix-join_chat-brightgreen?style=for-the-badge&logo=matrix)](https://matrix.to/#/#oxidd:matrix.org)\n\n\nThese are the Python bindings for OxiDD, a highly modular decision diagram framework written in Rust. The most prominent instance of decision diagrams is provided by [(reduced ordered) binary decision diagrams (BDDs)](https://en.wikipedia.org/wiki/Binary_decision_diagram), which are succinct representations of Boolean functions \ud835\udd39<sup>n</sup>\u00a0\u2192\u00a0\ud835\udd39. Such BDD representations are canonical and thus, deciding equality of Boolean functions\u2014in general a co-NP-complete problem\u2014can be done in constant time. Further, many Boolean operations on two BDDs *f,g* are possible in \ud835\udcaa(|*f*|\u202f\u00b7\u202f|*g*|) (where |*f*| denotes the node count in *f*). There are various other kinds of decision diagrams for which OxiDD aims to be a framework enabling high-performance implementations with low effort.\n\n\n## Features\n\n- **Several kinds of (reduced ordered) decision diagrams** are already implemented:\n    - Binary decision diagrams (BDDs)\n    - BDDs with complement edges (BCDDs)\n    - Zero-suppressed BDDs (ZBDDs, aka ZDDs/ZSDDs)\n    - Not yet exposed via the Python API: Multi-terminal BDDs (MTBDDs, aka ADDs) and Ternary decision diagrams (TDDs)\n- **Extensibility**: Due to OxiDD\u2019s modular design, one can implement new kinds of decision diagrams without having to reimplement core data structures.\n- **Concurrency**: Functions represented by DDs can safely be used in multi-threaded contexts. Furthermore, apply algorithms can be executed on multiple CPU cores in parallel.\n- **Performance**: Compared to other popular BDD libraries (e.g., BuDDy, CUDD, and Sylvan), OxiDD is already competitive or even outperforms them.\n- **Support for Reordering**: OxiDD can reorder a decision diagram to a given variable order. Support for dynamic reordering, e.g., via sifting, is about to come.\n\n\n## Licensing\n\nOxiDD is licensed under either [MIT](LICENSE-MIT) or [Apache 2.0](LICENSE-APACHE) at your opinion.\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache 2.0 license, shall be dual licensed as above, without any additional terms or conditions.\n\n\n## Publications\n\nThe [seminal paper](https://doi.org/10.1007/978-3-031-57256-2_13) presenting OxiDD was published at TACAS'24. If you use OxiDD, please cite us as:\n\nNils Husung, Clemens Dubslaff, Holger Hermanns, and Maximilian A. K\u00f6hl: *OxiDD: A safe, concurrent, modular, and performant decision diagram framework in Rust.* In: Proceedings of the 30th International Conference on Tools and Algorithms for the Construction and Analysis of Systems (TACAS\u201924)\n\n    @inproceedings{oxidd24,\n      author        = {Husung, Nils and Dubslaff, Clemens and Hermanns, Holger and K{\\\"o}hl, Maximilian A.},\n      booktitle     = {Proceedings of the 30th International Conference on Tools and Algorithms for the Construction and Analysis of Systems (TACAS'24)},\n      title         = {{OxiDD}: A Safe, Concurrent, Modular, and Performant Decision Diagram Framework in {Rust}},\n      year          = {2024},\n      doi           = {10.1007/978-3-031-57256-2_13}\n    }\n\n\n## Acknowledgements\n\nThis work is partially supported by the German Research Foundation (DFG) under the projects TRR 248 (see https://perspicuous-computing.science, project ID 389792660) and EXC 2050/1 (CeTI, project ID 390696704, as part of Germany\u2019s Excellence Strategy).\n\n",
    "bugtrack_url": null,
    "license": "MIT OR Apache-2.0",
    "summary": "Decision Diagrams",
    "version": "0.9.0",
    "project_urls": {
        "Documentation": "https://oxidd.net/api/python/dev/getting-started.html",
        "Homepage": "https://oxidd.net",
        "Issues": "https://github.com/OxiDD/oxidd/issues",
        "Repository": "https://github.com/OxiDD/oxidd"
    },
    "split_keywords": [
        "decision diagrams",
        " bdd",
        " zbdd",
        " zdd"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd74044b97d7a74e4779c321580d313c44d3d97c51ee349d6ff794b6cb9aef1d",
                "md5": "e720207a916d466e557da18b9494b320",
                "sha256": "996fd68125b1f6c110b94e868606ab4252993c93589dcfbcaf46aeec95ffde09"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e720207a916d466e557da18b9494b320",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 460017,
            "upload_time": "2024-11-20T22:04:13",
            "upload_time_iso_8601": "2024-11-20T22:04:13.682519Z",
            "url": "https://files.pythonhosted.org/packages/bd/74/044b97d7a74e4779c321580d313c44d3d97c51ee349d6ff794b6cb9aef1d/oxidd-0.9.0-cp39-abi3-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4259de25fa9ddab1a3ede2b297f0c71ea93584b7d3a2ddaf756a35c0086027a6",
                "md5": "bb1a9bfc077efb4c63f5282799db8cae",
                "sha256": "4011e778fff73404957874b81a1bbdbdfb3cd3ba8c09b4f4bf84ab1ae296e3ed"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bb1a9bfc077efb4c63f5282799db8cae",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 425438,
            "upload_time": "2024-11-20T22:04:15",
            "upload_time_iso_8601": "2024-11-20T22:04:15.840768Z",
            "url": "https://files.pythonhosted.org/packages/42/59/de25fa9ddab1a3ede2b297f0c71ea93584b7d3a2ddaf756a35c0086027a6/oxidd-0.9.0-cp39-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7033df7acc015bd52f6e9d6ef65e051daacf54d68902b8e2329c57f3742b0a26",
                "md5": "0dcbd4b7c4d8e3bf32f020f4d24965a2",
                "sha256": "0ade9e223f24625ddd00686e2ecb0f97d8d7ea0c6b831fd278e2360aedef53b0"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0dcbd4b7c4d8e3bf32f020f4d24965a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 419519,
            "upload_time": "2024-11-20T22:04:18",
            "upload_time_iso_8601": "2024-11-20T22:04:18.018367Z",
            "url": "https://files.pythonhosted.org/packages/70/33/df7acc015bd52f6e9d6ef65e051daacf54d68902b8e2329c57f3742b0a26/oxidd-0.9.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df06a489c2458999a1c291a2f7b7fc6b1092673584bc28904d14551dcd004b73",
                "md5": "9adb5d84116f7a8c9c193999939cc04d",
                "sha256": "4f8c93d461354327df7d658801f5c969c660206cc49f9d3d3c1c4588e9dfe3d5"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9adb5d84116f7a8c9c193999939cc04d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 439410,
            "upload_time": "2024-11-20T22:04:19",
            "upload_time_iso_8601": "2024-11-20T22:04:19.342319Z",
            "url": "https://files.pythonhosted.org/packages/df/06/a489c2458999a1c291a2f7b7fc6b1092673584bc28904d14551dcd004b73/oxidd-0.9.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ba72f94320b273e98a9ac0b1fa9ab0f67ba3c13ca712375021eb116d4b25ed9",
                "md5": "d9a3bf6cfab2d3653fd3b65753329453",
                "sha256": "22efa3b3fc3b8984c55ee30a6799e710ff4b403c40e0574ceceb8d3e1f201e3d"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d9a3bf6cfab2d3653fd3b65753329453",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 494670,
            "upload_time": "2024-11-20T22:04:21",
            "upload_time_iso_8601": "2024-11-20T22:04:21.379030Z",
            "url": "https://files.pythonhosted.org/packages/5b/a7/2f94320b273e98a9ac0b1fa9ab0f67ba3c13ca712375021eb116d4b25ed9/oxidd-0.9.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a528dd365b989c0e1613a4fb51e7b5c80dfb859d604c146f7946f48e7e4c1ac",
                "md5": "92f2948e6b989fd9513b1f9d503fd5c7",
                "sha256": "23a30db62d5ba467800646999e043ced4d4eee39e9fa7143819e188d145a0371"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "92f2948e6b989fd9513b1f9d503fd5c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 449888,
            "upload_time": "2024-11-20T22:04:23",
            "upload_time_iso_8601": "2024-11-20T22:04:23.223447Z",
            "url": "https://files.pythonhosted.org/packages/7a/52/8dd365b989c0e1613a4fb51e7b5c80dfb859d604c146f7946f48e7e4c1ac/oxidd-0.9.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ab58ccc9306cfede18eb932dd8c8fd83413649d23739a69216af4a53763b4c3",
                "md5": "8dfde071baac09d78612c41d8527f254",
                "sha256": "e944bc0462788324a82d9e0e7679a73e1e3e9fc93856be2a2304be6c84c9affe"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8dfde071baac09d78612c41d8527f254",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 409779,
            "upload_time": "2024-11-20T22:04:24",
            "upload_time_iso_8601": "2024-11-20T22:04:24.720350Z",
            "url": "https://files.pythonhosted.org/packages/5a/b5/8ccc9306cfede18eb932dd8c8fd83413649d23739a69216af4a53763b4c3/oxidd-0.9.0-cp39-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79b62a6e7aa4f97e7fbc7e8028984491d67de76c80c5f724879f3b6ec20faa1c",
                "md5": "95d1b06c4707a9625e03c56ac4dcf199",
                "sha256": "bbd68696cfc1148212e547eb12e56da6703e1ce3bb484a9d4e22e0011d49299c"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "95d1b06c4707a9625e03c56ac4dcf199",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 439124,
            "upload_time": "2024-11-20T22:04:26",
            "upload_time_iso_8601": "2024-11-20T22:04:26.686870Z",
            "url": "https://files.pythonhosted.org/packages/79/b6/2a6e7aa4f97e7fbc7e8028984491d67de76c80c5f724879f3b6ec20faa1c/oxidd-0.9.0-cp39-abi3-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1aac271412d80c8b8bd51ee370e4c25effce8ad89861f49cd5904dfded626347",
                "md5": "ae6e2edc5130d873a9578a889f484b92",
                "sha256": "1baf146b49e79d181698aa29a825f917c8cee717f3a207a527721937b7c9b3da"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ae6e2edc5130d873a9578a889f484b92",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 473810,
            "upload_time": "2024-11-20T22:04:28",
            "upload_time_iso_8601": "2024-11-20T22:04:28.421071Z",
            "url": "https://files.pythonhosted.org/packages/1a/ac/271412d80c8b8bd51ee370e4c25effce8ad89861f49cd5904dfded626347/oxidd-0.9.0-cp39-abi3-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f2cb53481489c183dcfe83abcd575fab54fc730e7eb4219deab170410e44ccc",
                "md5": "a111b4b5a48acccfb7f7a20599c600d9",
                "sha256": "8bdd6913a44629d5eb772396b18887d567697eec6538b22a9841672dd0173340"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a111b4b5a48acccfb7f7a20599c600d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 448248,
            "upload_time": "2024-11-20T22:04:30",
            "upload_time_iso_8601": "2024-11-20T22:04:30.850522Z",
            "url": "https://files.pythonhosted.org/packages/0f/2c/b53481489c183dcfe83abcd575fab54fc730e7eb4219deab170410e44ccc/oxidd-0.9.0-cp39-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1586a6e50dc4aa542ae62bda52fc0e7482919eb9c96d438a2d9719696c20a20",
                "md5": "ecc9fc5e9276d699f175e8ef73ec7da2",
                "sha256": "a4a2b6d89f38c6e9fa22bb3b7e1b8e3a7a430cc4686eef3fd163d1b53c60eb63"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "ecc9fc5e9276d699f175e8ef73ec7da2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 323040,
            "upload_time": "2024-11-20T22:04:32",
            "upload_time_iso_8601": "2024-11-20T22:04:32.820507Z",
            "url": "https://files.pythonhosted.org/packages/d1/58/6a6e50dc4aa542ae62bda52fc0e7482919eb9c96d438a2d9719696c20a20/oxidd-0.9.0-cp39-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30e4bf18067c85314f3210b9546f61dbba688ebd14fd881ffbbf4c3dc0f0dfa7",
                "md5": "7393c1a511f548ba1b0ca553e77c1c4d",
                "sha256": "3c03bccf5c5d10b395a7c7e369b5a9866745ecf2a8d5045272e5cae10ca4cf73"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7393c1a511f548ba1b0ca553e77c1c4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 324408,
            "upload_time": "2024-11-20T22:04:34",
            "upload_time_iso_8601": "2024-11-20T22:04:34.967853Z",
            "url": "https://files.pythonhosted.org/packages/30/e4/bf18067c85314f3210b9546f61dbba688ebd14fd881ffbbf4c3dc0f0dfa7/oxidd-0.9.0-cp39-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec2d1a9a5ccb7be68614d182d6f1b4ef90662b3fdb35cf285b8a6564f7abdc46",
                "md5": "1e97680981a940f7706364820d851336",
                "sha256": "eece789f17d4f8b95167f9796f5d6cac000dba579bfb42be764a1aab403cf69c"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-cp39-abi3-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "1e97680981a940f7706364820d851336",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 298072,
            "upload_time": "2024-11-20T22:04:36",
            "upload_time_iso_8601": "2024-11-20T22:04:36.964617Z",
            "url": "https://files.pythonhosted.org/packages/ec/2d/1a9a5ccb7be68614d182d6f1b4ef90662b3fdb35cf285b8a6564f7abdc46/oxidd-0.9.0-cp39-abi3-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "891d29c04fbc46bb59bcec85d467e8d151cc6ce0961752dd4989e79477b9fda1",
                "md5": "9670611ed6999d87d865c33b6c7ba811",
                "sha256": "2d39851fc3c504d9bb30e985ad16d82071592314c862ddfaef574422fa1a61ed"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9670611ed6999d87d865c33b6c7ba811",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 458639,
            "upload_time": "2024-11-20T22:04:38",
            "upload_time_iso_8601": "2024-11-20T22:04:38.413633Z",
            "url": "https://files.pythonhosted.org/packages/89/1d/29c04fbc46bb59bcec85d467e8d151cc6ce0961752dd4989e79477b9fda1/oxidd-0.9.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f8f676c8c613797090b3939f22717aaae60918e06a250214e26aabd554ceebf",
                "md5": "50015ef57c8f2f24d8711a38379dfc64",
                "sha256": "4409e5de2cb992def8dd940fb516ee82b782d49bae69fa2660f12497ee3bd576"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "50015ef57c8f2f24d8711a38379dfc64",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 422835,
            "upload_time": "2024-11-20T22:04:39",
            "upload_time_iso_8601": "2024-11-20T22:04:39.777867Z",
            "url": "https://files.pythonhosted.org/packages/6f/8f/676c8c613797090b3939f22717aaae60918e06a250214e26aabd554ceebf/oxidd-0.9.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "792992a93bb7e5879bd8f0f601b129048d68ad13c7b2621fadf1f6b90f2c4bf1",
                "md5": "5ffbf538826fdc78e1f282d001bf4075",
                "sha256": "daebfd840b319ab944a4fad658279fe5a46781c5e22a9ddeaccaeb5c85720bfe"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5ffbf538826fdc78e1f282d001bf4075",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 419594,
            "upload_time": "2024-11-20T22:04:41",
            "upload_time_iso_8601": "2024-11-20T22:04:41.799826Z",
            "url": "https://files.pythonhosted.org/packages/79/29/92a93bb7e5879bd8f0f601b129048d68ad13c7b2621fadf1f6b90f2c4bf1/oxidd-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "000c6b560dd560b6644acb36284e2999000a7a7b01bb5f0a8ae6fd65936ddf05",
                "md5": "5c20106c63dd50e2ab7430a86aea7a3a",
                "sha256": "382718cd1f3fc18deef77de9c354b84ea4fc07613976aed916da0362dc127a78"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5c20106c63dd50e2ab7430a86aea7a3a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 494736,
            "upload_time": "2024-11-20T22:04:43",
            "upload_time_iso_8601": "2024-11-20T22:04:43.771069Z",
            "url": "https://files.pythonhosted.org/packages/00/0c/6b560dd560b6644acb36284e2999000a7a7b01bb5f0a8ae6fd65936ddf05/oxidd-0.9.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ab1262a79aad348cf81865231bc48d4cb5166631b66de376e1f5fbc90723d02",
                "md5": "38d37968aa13322e496ab1f400ddf23c",
                "sha256": "1c0b47510631fa5280cbc4804b61503ba864f665a90babe3938a55d7d0c2075c"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38d37968aa13322e496ab1f400ddf23c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 448365,
            "upload_time": "2024-11-20T22:04:45",
            "upload_time_iso_8601": "2024-11-20T22:04:45.333380Z",
            "url": "https://files.pythonhosted.org/packages/3a/b1/262a79aad348cf81865231bc48d4cb5166631b66de376e1f5fbc90723d02/oxidd-0.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "577b1f806df57895e686fd8cf37be4cefd22d0653942b12c81bffc5aa78ec09c",
                "md5": "417fe431a952f891951c90918514570f",
                "sha256": "966a62f426186ee9815fcc8dd34cdc2b8fed26a5bd7672e7ef9ae38536f00b64"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "417fe431a952f891951c90918514570f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 409859,
            "upload_time": "2024-11-20T22:04:46",
            "upload_time_iso_8601": "2024-11-20T22:04:46.707205Z",
            "url": "https://files.pythonhosted.org/packages/57/7b/1f806df57895e686fd8cf37be4cefd22d0653942b12c81bffc5aa78ec09c/oxidd-0.9.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55f9a7022153a33ff3126c821a1fd40da4bd6159fc2f8cdf3368e75d1a0b224c",
                "md5": "1d7114159e132a7c39cc92f05616cd05",
                "sha256": "a8f71c46e5d644522144cbf611933f4fa05ea2b495ca82ff0bc10e23a3264711"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1d7114159e132a7c39cc92f05616cd05",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 473882,
            "upload_time": "2024-11-20T22:04:48",
            "upload_time_iso_8601": "2024-11-20T22:04:48.126078Z",
            "url": "https://files.pythonhosted.org/packages/55/f9/a7022153a33ff3126c821a1fd40da4bd6159fc2f8cdf3368e75d1a0b224c/oxidd-0.9.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3c01ee645b5366ba57d589e59db1e3824aec15f704710398745da148af63b38",
                "md5": "211ba8bf6c602358d37a50fc5b4b6cc9",
                "sha256": "4836595e4b347bb69e0aab01a7fc2c0ecb805f3adca1f691ea565e777852964c"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "211ba8bf6c602358d37a50fc5b4b6cc9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 448327,
            "upload_time": "2024-11-20T22:04:49",
            "upload_time_iso_8601": "2024-11-20T22:04:49.484071Z",
            "url": "https://files.pythonhosted.org/packages/e3/c0/1ee645b5366ba57d589e59db1e3824aec15f704710398745da148af63b38/oxidd-0.9.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8dc543367659103b71d95b65a92dc0081750040b766a3cf1c05c79d641b472a0",
                "md5": "ad6d8b52a13b6803ea3acfb05aa30999",
                "sha256": "44cf3d307b8faf70ea9eaaa96a759804942afa2d314415e630ba9f4f7bfaf0c9"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ad6d8b52a13b6803ea3acfb05aa30999",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 324198,
            "upload_time": "2024-11-20T22:04:50",
            "upload_time_iso_8601": "2024-11-20T22:04:50.948670Z",
            "url": "https://files.pythonhosted.org/packages/8d/c5/43367659103b71d95b65a92dc0081750040b766a3cf1c05c79d641b472a0/oxidd-0.9.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48dd9157c582e5de85c33e1f7be0733518f51bf46a785de2cd2b43f917c70958",
                "md5": "8e34b7b4e6ff85797cbec47b50fafc15",
                "sha256": "a216acabb740040e52d198852d1f1444cb866456558603b1f735e229b29a5bcb"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e34b7b4e6ff85797cbec47b50fafc15",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 459407,
            "upload_time": "2024-11-20T22:04:52",
            "upload_time_iso_8601": "2024-11-20T22:04:52.950675Z",
            "url": "https://files.pythonhosted.org/packages/48/dd/9157c582e5de85c33e1f7be0733518f51bf46a785de2cd2b43f917c70958/oxidd-0.9.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c9210740955338f45776bb86298cdfe432c2d5989ef2c499eebac298313be60",
                "md5": "8d35464ebec4028095ebcef3767a25bf",
                "sha256": "6b70d6c4deddbd7a299b63f16e24cd32a74ae921cd46aa34aa282279f04730e0"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8d35464ebec4028095ebcef3767a25bf",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 424053,
            "upload_time": "2024-11-20T22:04:54",
            "upload_time_iso_8601": "2024-11-20T22:04:54.289990Z",
            "url": "https://files.pythonhosted.org/packages/9c/92/10740955338f45776bb86298cdfe432c2d5989ef2c499eebac298313be60/oxidd-0.9.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cebc2923989e82d7977d0bec83754727cd5a7b9a76f0ce08f71467330a3804e0",
                "md5": "9243f7d49e9a318fff093c85c9647108",
                "sha256": "d4878aa22ad2118d7ba9f8d520cf4e774a6a5653f03297df1926aa38b72b2d49"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9243f7d49e9a318fff093c85c9647108",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 419593,
            "upload_time": "2024-11-20T22:04:55",
            "upload_time_iso_8601": "2024-11-20T22:04:55.748636Z",
            "url": "https://files.pythonhosted.org/packages/ce/bc/2923989e82d7977d0bec83754727cd5a7b9a76f0ce08f71467330a3804e0/oxidd-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e5a8496572ed5880d5bb451bb36a660c9363f984c23e63b3004dab2802c8038",
                "md5": "a876677ee68f8196ca5ee3a9313a1a19",
                "sha256": "3ad3e9b2cf732253f53a1fe4203502fd10d15615ef8be6aea0ac51e33e690baf"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a876677ee68f8196ca5ee3a9313a1a19",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 494731,
            "upload_time": "2024-11-20T22:04:57",
            "upload_time_iso_8601": "2024-11-20T22:04:57.774695Z",
            "url": "https://files.pythonhosted.org/packages/5e/5a/8496572ed5880d5bb451bb36a660c9363f984c23e63b3004dab2802c8038/oxidd-0.9.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "053cc19053f40248a84df7b28ffd70ab8a8321d7f5932b982460cc3bb541191c",
                "md5": "606bb6c239cf88e3e114b11b4b3e7fd0",
                "sha256": "68473e71cbdf5ac1d71a2f159590f7a94a17e904e3adde8ce64f5653b0789458"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "606bb6c239cf88e3e114b11b4b3e7fd0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 448566,
            "upload_time": "2024-11-20T22:04:59",
            "upload_time_iso_8601": "2024-11-20T22:04:59.237461Z",
            "url": "https://files.pythonhosted.org/packages/05/3c/c19053f40248a84df7b28ffd70ab8a8321d7f5932b982460cc3bb541191c/oxidd-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c851ce798c5166e84002d9a8e4925749e9acd173f1082325d5ab7f344b7dad5",
                "md5": "8f6f59f388e7c49d52ca302ca8e2554a",
                "sha256": "810862328f62f04be87b7869bea54ba52723bd70c57929099751a9aac58cc7c5"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8f6f59f388e7c49d52ca302ca8e2554a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 409851,
            "upload_time": "2024-11-20T22:05:00",
            "upload_time_iso_8601": "2024-11-20T22:05:00.622986Z",
            "url": "https://files.pythonhosted.org/packages/8c/85/1ce798c5166e84002d9a8e4925749e9acd173f1082325d5ab7f344b7dad5/oxidd-0.9.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9afbd8aca8384fde201884a61fc4d1467cd8a77c47c78e68a5eb84ed75eb6a01",
                "md5": "9fc898c2615ead3d7f719f6c1a3e9f2d",
                "sha256": "a4eee366c6f56bad5e8a13b59db7958561c8b08615d4c89bbaf08fff223094d7"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9fc898c2615ead3d7f719f6c1a3e9f2d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 473876,
            "upload_time": "2024-11-20T22:05:02",
            "upload_time_iso_8601": "2024-11-20T22:05:02.040724Z",
            "url": "https://files.pythonhosted.org/packages/9a/fb/d8aca8384fde201884a61fc4d1467cd8a77c47c78e68a5eb84ed75eb6a01/oxidd-0.9.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4deaadde811056c693fc2409a6e8182dbf55c28c57d8f6e9369edca2a6e130f",
                "md5": "a22bd79fef46fd511f11ce8e4392b3cb",
                "sha256": "c2b83ee98c0cb99bc3f87b029649fd71de93a8fb76bf973498c2b774782f0811"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a22bd79fef46fd511f11ce8e4392b3cb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 448319,
            "upload_time": "2024-11-20T22:05:03",
            "upload_time_iso_8601": "2024-11-20T22:05:03.582287Z",
            "url": "https://files.pythonhosted.org/packages/c4/de/aadde811056c693fc2409a6e8182dbf55c28c57d8f6e9369edca2a6e130f/oxidd-0.9.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb44120f39aff9d18779f03a0dd63dba6ad527a1a74adcd503ef5335cbd09fd7",
                "md5": "b7f5082e739add4f25e7e1b6afdc266a",
                "sha256": "9cfec32044fdfa76bf0abfd23bf73e50c64822588b0d14cb79384cda5ab4a97a"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b7f5082e739add4f25e7e1b6afdc266a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 323705,
            "upload_time": "2024-11-20T22:05:05",
            "upload_time_iso_8601": "2024-11-20T22:05:05.156011Z",
            "url": "https://files.pythonhosted.org/packages/fb/44/120f39aff9d18779f03a0dd63dba6ad527a1a74adcd503ef5335cbd09fd7/oxidd-0.9.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fa3bd2cf3baeac4119f1554608266d10bd08ed06ca3e3a9a659c67abea4c24b",
                "md5": "4c5463c9ffea371f92ff3488f3d1f2a7",
                "sha256": "57618b57d6b558392415f59293412884cdb52467578a33455024401eb898b717"
            },
            "downloads": -1,
            "filename": "oxidd-0.9.0.tar.gz",
            "has_sig": false,
            "md5_digest": "4c5463c9ffea371f92ff3488f3d1f2a7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 264033,
            "upload_time": "2024-11-20T22:05:06",
            "upload_time_iso_8601": "2024-11-20T22:05:06.630834Z",
            "url": "https://files.pythonhosted.org/packages/1f/a3/bd2cf3baeac4119f1554608266d10bd08ed06ca3e3a9a659c67abea4c24b/oxidd-0.9.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-20 22:05:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "OxiDD",
    "github_project": "oxidd",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "oxidd"
}
        
Elapsed time: 0.41722s