pauli-tracker


Namepauli-tracker JSON
Version 0.1.3 PyPI version JSON
download
home_pageNone
SummaryA library to track Pauli gates through Clifford circuits.
upload_time2024-10-21 03:41:18
maintainerNone
docs_urlNone
authorJannis Ruh <ruh.j81@gmail.com>
requires_python>=3.8
licenseMIT OR Apache-2.0
keywords quantum clifford pauli mbqc
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Python wrapper around pauli_tracker

This Python package is a wrapper around the [pauli_tracker crate] exporting its basic
functionality.

If some essential functionality is missing, because we just forgot to implement it, please
open an issue or pull request (cf. [contributing]). If you need more functionality, it is
fairly easy to use Rust from Python with the help of [pyo3] and [maturin]. However,
because of [#1444], you may want to clone this repository and extend it.

## Documentation

[To the docs]

When using this package, please also look at the [crate's documentation] of the Rust
crate (additionally to the [Python package's documentation]) in parallel since it is much
more extensive about how the Pauli tracking works (although not everything there is
supported in this wrapper).

### Examples

Please look at this [Python example] and also at these [Rust examples].

## Installation

You can install the package from PyPI, e.g., with
```bash
pip install pauli-tracker
```
The package contains pre-built wheels for manylinux\_2\_28\_x86\_64 (works on most Linux
distribuitions), latest Windows and latest MacOS (latest with respect to when the package
was built) for Python 3.8 to 3.12. Additionally, there is an manylinux\_2\_28\_x86\_64
abi3 wheel for Python >= 3.8. You can also build the package from source, e.g., force it
during a pip install with `pip install --no-binary pauli-tracker pauli-tracker`, however,
note that this requires Python >= 3.8 and a Rust toolchain >= 1.65.

At the moment, you may also find a more up-to-date wheel in the artifacts of the latest
"pypackage" github actions workflow; this is unstable though.

### Manually Building

The package has to be build with [maturin]. The `make package` commands builds it through
a docker container such that it is compatible with manylinux\_2\_28\_x86\_64 for Python >=
3.8. With `make update_docs` the documentation can be build. The output of both make
commands is in the `dist` directory.

## Versioning

The Python package follows [SemVer], however, the underlying Rust crate is unstable.

[crate's documentation]: https://docs.rs/pauli_tracker/latest/pauli_tracker/
[contributing]: https://github.com/taeruh/pauli_tracker/blob/main/CONTRIBUTING.md
[manylinux]: https://github.com/pypa/manylinux
[maturin]: https://github.com/PyO3/maturin
[pauli_tracker crate]: https://github.com/taeruh/pauli_tracker/tree/main/pauli_tracker
[pyo3]: https://github.com/PyO3/pyo3
[Python example]: https://taeruh.github.io/pauli_tracker/#example-usage
[Python package's documentation]: https://taeruh.github.io/pauli_tracker/
[Rust examples]: https://docs.rs/pauli_tracker/latest/pauli_tracker/#examples
[SemVer]: https://semver.org/
[To the docs]: https://taeruh.github.io/pauli_tracker/
[#1444]: https://github.com/PyO3/pyo3/issues/1444


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pauli-tracker",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "quantum, clifford, pauli, mbqc",
    "author": "Jannis Ruh <ruh.j81@gmail.com>",
    "author_email": "Jannis Ruh <ruh.j81@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/84/8b/3d8ec4fa8b447f9befca076239edefbba7c83058cfa8167b6735be3b43b5/pauli_tracker-0.1.3.tar.gz",
    "platform": null,
    "description": "# Python wrapper around pauli_tracker\n\nThis Python package is a wrapper around the [pauli_tracker crate] exporting its basic\nfunctionality.\n\nIf some essential functionality is missing, because we just forgot to implement it, please\nopen an issue or pull request (cf. [contributing]). If you need more functionality, it is\nfairly easy to use Rust from Python with the help of [pyo3] and [maturin]. However,\nbecause of [#1444], you may want to clone this repository and extend it.\n\n## Documentation\n\n[To the docs]\n\nWhen using this package, please also look at the [crate's documentation] of the Rust\ncrate (additionally to the [Python package's documentation]) in parallel since it is much\nmore extensive about how the Pauli tracking works (although not everything there is\nsupported in this wrapper).\n\n### Examples\n\nPlease look at this [Python example] and also at these [Rust examples].\n\n## Installation\n\nYou can install the package from PyPI, e.g., with\n```bash\npip install pauli-tracker\n```\nThe package contains pre-built wheels for manylinux\\_2\\_28\\_x86\\_64 (works on most Linux\ndistribuitions), latest Windows and latest MacOS (latest with respect to when the package\nwas built) for Python 3.8 to 3.12. Additionally, there is an manylinux\\_2\\_28\\_x86\\_64\nabi3 wheel for Python >= 3.8. You can also build the package from source, e.g., force it\nduring a pip install with `pip install --no-binary pauli-tracker pauli-tracker`, however,\nnote that this requires Python >= 3.8 and a Rust toolchain >= 1.65.\n\nAt the moment, you may also find a more up-to-date wheel in the artifacts of the latest\n\"pypackage\" github actions workflow; this is unstable though.\n\n### Manually Building\n\nThe package has to be build with [maturin]. The `make package` commands builds it through\na docker container such that it is compatible with manylinux\\_2\\_28\\_x86\\_64 for Python >=\n3.8. With `make update_docs` the documentation can be build. The output of both make\ncommands is in the `dist` directory.\n\n## Versioning\n\nThe Python package follows [SemVer], however, the underlying Rust crate is unstable.\n\n[crate's documentation]: https://docs.rs/pauli_tracker/latest/pauli_tracker/\n[contributing]: https://github.com/taeruh/pauli_tracker/blob/main/CONTRIBUTING.md\n[manylinux]: https://github.com/pypa/manylinux\n[maturin]: https://github.com/PyO3/maturin\n[pauli_tracker crate]: https://github.com/taeruh/pauli_tracker/tree/main/pauli_tracker\n[pyo3]: https://github.com/PyO3/pyo3\n[Python example]: https://taeruh.github.io/pauli_tracker/#example-usage\n[Python package's documentation]: https://taeruh.github.io/pauli_tracker/\n[Rust examples]: https://docs.rs/pauli_tracker/latest/pauli_tracker/#examples\n[SemVer]: https://semver.org/\n[To the docs]: https://taeruh.github.io/pauli_tracker/\n[#1444]: https://github.com/PyO3/pyo3/issues/1444\n\n",
    "bugtrack_url": null,
    "license": "MIT OR Apache-2.0",
    "summary": "A library to track Pauli gates through Clifford circuits.",
    "version": "0.1.3",
    "project_urls": {
        "Documentation": "https://taeruh.github.io/pauli_tracker/",
        "Repository": "https://github.com/taeruh/pauli_tracker"
    },
    "split_keywords": [
        "quantum",
        " clifford",
        " pauli",
        " mbqc"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ebd667097498525a783d335471801d930bb88a3aea3a9b35495d15df809f810",
                "md5": "0336d13e1bf87c151af37e102cc86ecc",
                "sha256": "b1a08201eb8ef2ecc175910f3bdf4af79782dfb1e945e9e303871f081ce18cfb"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0336d13e1bf87c151af37e102cc86ecc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 483254,
            "upload_time": "2024-10-21T03:40:44",
            "upload_time_iso_8601": "2024-10-21T03:40:44.280166Z",
            "url": "https://files.pythonhosted.org/packages/1e/bd/667097498525a783d335471801d930bb88a3aea3a9b35495d15df809f810/pauli_tracker-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62e03b053092c9c70051a09e57dbaacc7c1aca261939aeab003544e8652e45cd",
                "md5": "da33bd57794af6ee159599b525633e3e",
                "sha256": "ca8c42e5a3d366ded88d44f54653dc0a3b7f2b35d65d88bf0d2f4995a61df5e0"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "da33bd57794af6ee159599b525633e3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 463255,
            "upload_time": "2024-10-21T03:40:46",
            "upload_time_iso_8601": "2024-10-21T03:40:46.462585Z",
            "url": "https://files.pythonhosted.org/packages/62/e0/3b053092c9c70051a09e57dbaacc7c1aca261939aeab003544e8652e45cd/pauli_tracker-0.1.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ac9c2ca9a854cbce2d5f9f6c5d75d21988e4764636431bc03b76833c3cc111e",
                "md5": "dbf2aa44cf54cc01c23a0592673cf5d2",
                "sha256": "b522e22aec9625a169d7056c24add985c7e122ccf293f0d4c4d22ad88dde9a5d"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dbf2aa44cf54cc01c23a0592673cf5d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 511918,
            "upload_time": "2024-10-21T03:40:48",
            "upload_time_iso_8601": "2024-10-21T03:40:48.473119Z",
            "url": "https://files.pythonhosted.org/packages/9a/c9/c2ca9a854cbce2d5f9f6c5d75d21988e4764636431bc03b76833c3cc111e/pauli_tracker-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83b1f0ff99fd193c4aaa49518228fde7ca6715c491337f4da9ccad7dc409b5a7",
                "md5": "50c39123281fcd2d2bcb74bc74e90107",
                "sha256": "78794f65ccdd84897b570f892ba79bc87c06e73eac0116d0422a14e5a14468a2"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "50c39123281fcd2d2bcb74bc74e90107",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 481123,
            "upload_time": "2024-10-21T03:40:49",
            "upload_time_iso_8601": "2024-10-21T03:40:49.930084Z",
            "url": "https://files.pythonhosted.org/packages/83/b1/f0ff99fd193c4aaa49518228fde7ca6715c491337f4da9ccad7dc409b5a7/pauli_tracker-0.1.3-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8369c4f30ff04814e6d66de43da7ff2816a382442be70eab47d9a7296b102430",
                "md5": "74eba98ea62935f5b3580eee306e6667",
                "sha256": "45176159fab178536b155efa2296d7548aa20e91353aeb686a5ab46bcff76bf0"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74eba98ea62935f5b3580eee306e6667",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 483382,
            "upload_time": "2024-10-21T03:40:51",
            "upload_time_iso_8601": "2024-10-21T03:40:51.975345Z",
            "url": "https://files.pythonhosted.org/packages/83/69/c4f30ff04814e6d66de43da7ff2816a382442be70eab47d9a7296b102430/pauli_tracker-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e63d818f4d9729cf914d6907a151960549687ec5328c01d8ebd3f0da1f6e4406",
                "md5": "e1ba2b5f74771b198cc2fde02b792b21",
                "sha256": "6d8ce85bf45874e84dd76c5f3225777ce231e60ecbe7523553180f569847027c"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e1ba2b5f74771b198cc2fde02b792b21",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 463279,
            "upload_time": "2024-10-21T03:40:53",
            "upload_time_iso_8601": "2024-10-21T03:40:53.745401Z",
            "url": "https://files.pythonhosted.org/packages/e6/3d/818f4d9729cf914d6907a151960549687ec5328c01d8ebd3f0da1f6e4406/pauli_tracker-0.1.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d7e4c9ab117de51fc274b5d86ff8217f510a4fee934208885a75fc35807ff68",
                "md5": "83beb89ca11f9caaf8d103ca55f011c1",
                "sha256": "2eb095fbbe6ca2713af2fe7df3a934aec4f27b0c317d11e1e69c73be36646415"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "83beb89ca11f9caaf8d103ca55f011c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 511945,
            "upload_time": "2024-10-21T03:40:55",
            "upload_time_iso_8601": "2024-10-21T03:40:55.107704Z",
            "url": "https://files.pythonhosted.org/packages/7d/7e/4c9ab117de51fc274b5d86ff8217f510a4fee934208885a75fc35807ff68/pauli_tracker-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18c3629b4a7e4d2145b84a38f1ed52087fa7077beddd41d699d3df8b7d496c27",
                "md5": "1cb84ef4f22eb5620be24fbd5bdc995e",
                "sha256": "49eed29ee39b858a6bc89b4694b375eda4a9f424539fa5101b33f0ba24282805"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1cb84ef4f22eb5620be24fbd5bdc995e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 481091,
            "upload_time": "2024-10-21T03:40:56",
            "upload_time_iso_8601": "2024-10-21T03:40:56.294353Z",
            "url": "https://files.pythonhosted.org/packages/18/c3/629b4a7e4d2145b84a38f1ed52087fa7077beddd41d699d3df8b7d496c27/pauli_tracker-0.1.3-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "609a1dfc47100631483dcef9317dc2cd3e81e2b7181a7d01ed222836ca315498",
                "md5": "0e27598b7de45ff5f4734a8048f32a8c",
                "sha256": "e7bfcf62862b11815f1c2448baf38a55b0b53742963ea921e56897fad477b26e"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e27598b7de45ff5f4734a8048f32a8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 482193,
            "upload_time": "2024-10-21T03:40:58",
            "upload_time_iso_8601": "2024-10-21T03:40:58.052800Z",
            "url": "https://files.pythonhosted.org/packages/60/9a/1dfc47100631483dcef9317dc2cd3e81e2b7181a7d01ed222836ca315498/pauli_tracker-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c707e5e985952affa9dd56318b16194c2e0302445cfeaff067beb45d74b1b589",
                "md5": "cc93a67b9cc3c1e10d3c06b08fe6c4b6",
                "sha256": "5a8c93663959345399973992f7c0111e7ad7c0a8ca9e0094af4a3b43d70092be"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cc93a67b9cc3c1e10d3c06b08fe6c4b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 462575,
            "upload_time": "2024-10-21T03:40:59",
            "upload_time_iso_8601": "2024-10-21T03:40:59.586481Z",
            "url": "https://files.pythonhosted.org/packages/c7/07/e5e985952affa9dd56318b16194c2e0302445cfeaff067beb45d74b1b589/pauli_tracker-0.1.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40e400ab1f928c7bd0000693fab08f642c7118ddef79eecab8da992ada104cf0",
                "md5": "b8d0fa453e67cb780c5a086c77213b3d",
                "sha256": "ccbe09ef157a8a9ff7732c43318023e4f1b62b834fdd9ddbca8b2c4610f5995c"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8d0fa453e67cb780c5a086c77213b3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 510946,
            "upload_time": "2024-10-21T03:41:01",
            "upload_time_iso_8601": "2024-10-21T03:41:01.459519Z",
            "url": "https://files.pythonhosted.org/packages/40/e4/00ab1f928c7bd0000693fab08f642c7118ddef79eecab8da992ada104cf0/pauli_tracker-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d21054ecb557df42dd52bded9da6de44b0d78a361abe396965464d7b18dd82d1",
                "md5": "5c4a9472875be6847f799f4aca3f7dc0",
                "sha256": "5fcf48b4b83ac5bbff3b3796903b52ea965b4b73236185c6ab8be8d082ed8337"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5c4a9472875be6847f799f4aca3f7dc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 481534,
            "upload_time": "2024-10-21T03:41:02",
            "upload_time_iso_8601": "2024-10-21T03:41:02.763753Z",
            "url": "https://files.pythonhosted.org/packages/d2/10/54ecb557df42dd52bded9da6de44b0d78a361abe396965464d7b18dd82d1/pauli_tracker-0.1.3-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a822822f41e00ee1572d70efe9c39ea87503f8879b2b0db4184909eea5ea3743",
                "md5": "0c2c1de3d38b4f22cc09830deb8e4eab",
                "sha256": "bd5e5423ddcc17164d464e97af0d45aeb647bf62e59ec0ec7924fe0b456c58e2"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp38-abi3-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c2c1de3d38b4f22cc09830deb8e4eab",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 514652,
            "upload_time": "2024-10-21T03:41:04",
            "upload_time_iso_8601": "2024-10-21T03:41:04.720260Z",
            "url": "https://files.pythonhosted.org/packages/a8/22/822f41e00ee1572d70efe9c39ea87503f8879b2b0db4184909eea5ea3743/pauli_tracker-0.1.3-cp38-abi3-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06ccf3ccf1b115e2b05995ba051a672cd9560cecca5ac5cf32387a9d489ba0fc",
                "md5": "aa0bceda30216810f9bd3413235c15ec",
                "sha256": "cb95492f6001f7a52ba21379f0ecd2459b0d2324ca59e201437c31bd3f351e73"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa0bceda30216810f9bd3413235c15ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 483861,
            "upload_time": "2024-10-21T03:41:06",
            "upload_time_iso_8601": "2024-10-21T03:41:06.455706Z",
            "url": "https://files.pythonhosted.org/packages/06/cc/f3ccf1b115e2b05995ba051a672cd9560cecca5ac5cf32387a9d489ba0fc/pauli_tracker-0.1.3-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f91370f9863b7aca711b4f43123e236753fecaec1e15a7770f6e4e46d8c307d5",
                "md5": "1c9276fb9fbc4701ac8cf71173c461bc",
                "sha256": "ac682857989d725d3946703cc9e3b66225ed9236fb84e22105cbe7f29ecef8fe"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1c9276fb9fbc4701ac8cf71173c461bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 463970,
            "upload_time": "2024-10-21T03:41:08",
            "upload_time_iso_8601": "2024-10-21T03:41:08.213419Z",
            "url": "https://files.pythonhosted.org/packages/f9/13/70f9863b7aca711b4f43123e236753fecaec1e15a7770f6e4e46d8c307d5/pauli_tracker-0.1.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "893cf21cb2191a34335ce626dfc56dd123f78358a3de6acb42c0978b60e1b454",
                "md5": "4574407ce044400ab7e1c744b0479c20",
                "sha256": "f6196351b29b30d4dda0f02aab0fb4d096b9fbe029e02b489bf81925a283cfa9"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4574407ce044400ab7e1c744b0479c20",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 512311,
            "upload_time": "2024-10-21T03:41:09",
            "upload_time_iso_8601": "2024-10-21T03:41:09.718150Z",
            "url": "https://files.pythonhosted.org/packages/89/3c/f21cb2191a34335ce626dfc56dd123f78358a3de6acb42c0978b60e1b454/pauli_tracker-0.1.3-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e69a35e446899d15f0bfbe00babd6625fcd9c31101457b2d6991f74667f06fb1",
                "md5": "00e59cbf6f0224c8235aa3804f0043f2",
                "sha256": "667462334371983530b3f8fd8bcef8680e2531bc21846b52554b772a6240282a"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "00e59cbf6f0224c8235aa3804f0043f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 481599,
            "upload_time": "2024-10-21T03:41:11",
            "upload_time_iso_8601": "2024-10-21T03:41:11.017377Z",
            "url": "https://files.pythonhosted.org/packages/e6/9a/35e446899d15f0bfbe00babd6625fcd9c31101457b2d6991f74667f06fb1/pauli_tracker-0.1.3-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7384594a019a2b4c7fa940e912cedb5988d982de0a7f072a43d219db11df3711",
                "md5": "29466abbefa00bf183d9db14b62b60c4",
                "sha256": "23aa32c55066358239f16a2b967cd60163f1f4028d5b1adbd4c4fc9aede0f881"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29466abbefa00bf183d9db14b62b60c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 483517,
            "upload_time": "2024-10-21T03:41:12",
            "upload_time_iso_8601": "2024-10-21T03:41:12.645488Z",
            "url": "https://files.pythonhosted.org/packages/73/84/594a019a2b4c7fa940e912cedb5988d982de0a7f072a43d219db11df3711/pauli_tracker-0.1.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a14c977ea9afee888d7f6b2a603f5582e97fa89249c245a1211d3512acb954a3",
                "md5": "17874506c9dc8b4bc983bae807b923e8",
                "sha256": "23d2f667905b2c5aefc2c42b5ca19de6de5de03f1d84aba46cc45ff5a5e8b1b5"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "17874506c9dc8b4bc983bae807b923e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 463612,
            "upload_time": "2024-10-21T03:41:13",
            "upload_time_iso_8601": "2024-10-21T03:41:13.862718Z",
            "url": "https://files.pythonhosted.org/packages/a1/4c/977ea9afee888d7f6b2a603f5582e97fa89249c245a1211d3512acb954a3/pauli_tracker-0.1.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44fa1b7de77a84284648b0d069fbacbad27197645baf8a5a87273be34874b184",
                "md5": "d3319b22156999aa94033fa257efa592",
                "sha256": "1a81fe55e0d7f4da74f115f62946144dc8fc8a28449ece1e98d5926695191b25"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3319b22156999aa94033fa257efa592",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 512101,
            "upload_time": "2024-10-21T03:41:15",
            "upload_time_iso_8601": "2024-10-21T03:41:15.318795Z",
            "url": "https://files.pythonhosted.org/packages/44/fa/1b7de77a84284648b0d069fbacbad27197645baf8a5a87273be34874b184/pauli_tracker-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a47d47ea5b71f96ec9405fc377b5d598d7aedadf73890025b76b0a37ca9fcbd4",
                "md5": "4cedd2eb7e159d58c03d8c3dc28c63d7",
                "sha256": "6365ddd47e33510aa5688b41a7a97b5d34caf4c461461e05ad6562c66be00074"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4cedd2eb7e159d58c03d8c3dc28c63d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 481444,
            "upload_time": "2024-10-21T03:41:17",
            "upload_time_iso_8601": "2024-10-21T03:41:17.074967Z",
            "url": "https://files.pythonhosted.org/packages/a4/7d/47ea5b71f96ec9405fc377b5d598d7aedadf73890025b76b0a37ca9fcbd4/pauli_tracker-0.1.3-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "848b3d8ec4fa8b447f9befca076239edefbba7c83058cfa8167b6735be3b43b5",
                "md5": "7afbc8d50761e450214e37d1503265b9",
                "sha256": "12b766d4102e9eb009356ac4729009ac5d4eb84a75d06399ce89bdece1d846ff"
            },
            "downloads": -1,
            "filename": "pauli_tracker-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "7afbc8d50761e450214e37d1503265b9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 20926,
            "upload_time": "2024-10-21T03:41:18",
            "upload_time_iso_8601": "2024-10-21T03:41:18.718707Z",
            "url": "https://files.pythonhosted.org/packages/84/8b/3d8ec4fa8b447f9befca076239edefbba7c83058cfa8167b6735be3b43b5/pauli_tracker-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-21 03:41:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "taeruh",
    "github_project": "pauli_tracker",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pauli-tracker"
}
        
Elapsed time: 3.00780s