pyoxigraph


Namepyoxigraph JSON
Version 0.4.11 PyPI version JSON
download
home_pagehttps://pyoxigraph.readthedocs.io/
SummaryPython bindings of Oxigraph, a SPARQL database and RDF toolkit
upload_time2025-05-21 20:55:58
maintainerNone
docs_urlNone
authorTpt <thomas@pellissier-tanon.fr>
requires_python>=3.8
licenseMIT OR Apache-2.0
keywords rdf sparql graph-database database
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Pyoxigraph (Oxigraph for Python)

[![PyPI](https://img.shields.io/pypi/v/pyoxigraph)](https://pypi.org/project/pyoxigraph/)
[![Conda](https://img.shields.io/conda/vn/conda-forge/pyoxigraph)](https://anaconda.org/conda-forge/pyoxigraph)
![PyPI - Implementation](https://img.shields.io/pypi/implementation/pyoxigraph)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyoxigraph)
[![actions status](https://github.com/oxigraph/oxigraph/workflows/build/badge.svg)](https://github.com/oxigraph/oxigraph/actions)
[![Gitter](https://badges.gitter.im/oxigraph/community.svg)](https://gitter.im/oxigraph/community)

Pyoxigraph is a graph database library implementing the [SPARQL](https://www.w3.org/TR/sparql11-overview/) standard.
It is a Python library written on top of [Oxigraph](https://crates.io/crates/oxigraph).

Pyoxigraph offers two stores with [SPARQL 1.1](https://www.w3.org/TR/sparql11-overview/) capabilities.
One of the store is in-memory, and the other one is disk based.

It also provides a set of utility functions for reading, writing and processing RDF files in
[JSON-LD 1.0](https://www.w3.org/TR/json-ld/),
[Turtle](https://www.w3.org/TR/turtle/),
[TriG](https://www.w3.org/TR/trig/),
[N-Triples](https://www.w3.org/TR/n-triples/),
[N-Quads](https://www.w3.org/TR/n-quads/) and
[RDF/XML](https://www.w3.org/TR/rdf-syntax-grammar/).

Pyoxigraph is distributed [on Pypi](https://pypi.org/project/pyoxigraph/) and [on conda-forge](https://anaconda.org/conda-forge/pyoxigraph).
Run `pip install pyoxigraph` to install it.

There exists also a small library providing [rdflib](https://rdflib.readthedocs.io) stores using pyoxigraph: [oxrdflib](https://github.com/oxigraph/oxrdflib).

Pyoxigraph documentation is [available on the Oxigraph website](https://pyoxigraph.readthedocs.io/).

## Build the development version

To build and install the development version of pyoxigraph you need to clone this git repository including submodules (`git clone --recursive https://github.com/oxigraph/oxigraph.git`)
and to run `pip install .` in the `python` directory (the one this README is in).

Note that by default the installation will not use [cpython stable ABI](https://docs.python.org/3/c-api/stable.html).
Use `--features abi3` feature to use cpython stable ABI.

## Help

Feel free to use [GitHub discussions](https://github.com/oxigraph/oxigraph/discussions) or [the Gitter chat](https://gitter.im/oxigraph/community) to ask questions or talk about Oxigraph.
[Bug reports](https://github.com/oxigraph/oxigraph/issues) are also very welcome.

If you need advanced support or are willing to pay to get some extra features, feel free to reach out to [Tpt](https://github.com/Tpt).

## How to contribute

Pyoxigraph is written in Rust using [PyO3](https://github.com/PyO3/pyo3).

Pyoxigraph is built using [Maturin](https://github.com/PyO3/maturin).
Maturin could be installed using the `pip install 'maturin>=0.9,<0.10'`.
To install a development version of Oxigraph just run `maturin develop` in this README directory.

### Tests

The Python bindings tests are written in Python.
To run them use `python -m unittest` in the `tests` directory.

### Docs

The Sphinx documentation can be generated and viewed in the browser using the following command:

```
sphinx-autobuild docs docs/_build/html
```

Note that you will need to have [sphinx-autobuild](https://pypi.org/project/sphinx-autobuild/) installed.

Alternatively, you can use `sphinx-build` with Python's `http.server` to achieve the same thing.

## License

This project is licensed under either of

- Apache License, Version 2.0, ([LICENSE-APACHE](../LICENSE-APACHE) or
  http://www.apache.org/licenses/LICENSE-2.0)
- MIT license ([LICENSE-MIT](../LICENSE-MIT) or
  http://opensource.org/licenses/MIT)

at your option.

### Contribution

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


            

Raw data

            {
    "_id": null,
    "home_page": "https://pyoxigraph.readthedocs.io/",
    "name": "pyoxigraph",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "RDF, SPARQL, graph-database, database",
    "author": "Tpt <thomas@pellissier-tanon.fr>",
    "author_email": "Tpt <thomas@pellissier-tanon.fr>",
    "download_url": "https://files.pythonhosted.org/packages/50/23/d64f6b8ba918b76c0d048f5ec32ffd2b79a9455e1ec07d9637adccf8868e/pyoxigraph-0.4.11.tar.gz",
    "platform": null,
    "description": "# Pyoxigraph (Oxigraph for Python)\n\n[![PyPI](https://img.shields.io/pypi/v/pyoxigraph)](https://pypi.org/project/pyoxigraph/)\n[![Conda](https://img.shields.io/conda/vn/conda-forge/pyoxigraph)](https://anaconda.org/conda-forge/pyoxigraph)\n![PyPI - Implementation](https://img.shields.io/pypi/implementation/pyoxigraph)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyoxigraph)\n[![actions status](https://github.com/oxigraph/oxigraph/workflows/build/badge.svg)](https://github.com/oxigraph/oxigraph/actions)\n[![Gitter](https://badges.gitter.im/oxigraph/community.svg)](https://gitter.im/oxigraph/community)\n\nPyoxigraph is a graph database library implementing the [SPARQL](https://www.w3.org/TR/sparql11-overview/) standard.\nIt is a Python library written on top of [Oxigraph](https://crates.io/crates/oxigraph).\n\nPyoxigraph offers two stores with [SPARQL 1.1](https://www.w3.org/TR/sparql11-overview/) capabilities.\nOne of the store is in-memory, and the other one is disk based.\n\nIt also provides a set of utility functions for reading, writing and processing RDF files in\n[JSON-LD 1.0](https://www.w3.org/TR/json-ld/),\n[Turtle](https://www.w3.org/TR/turtle/),\n[TriG](https://www.w3.org/TR/trig/),\n[N-Triples](https://www.w3.org/TR/n-triples/),\n[N-Quads](https://www.w3.org/TR/n-quads/) and\n[RDF/XML](https://www.w3.org/TR/rdf-syntax-grammar/).\n\nPyoxigraph is distributed [on Pypi](https://pypi.org/project/pyoxigraph/) and [on conda-forge](https://anaconda.org/conda-forge/pyoxigraph).\nRun `pip install pyoxigraph` to install it.\n\nThere exists also a small library providing [rdflib](https://rdflib.readthedocs.io) stores using pyoxigraph: [oxrdflib](https://github.com/oxigraph/oxrdflib).\n\nPyoxigraph documentation is [available on the Oxigraph website](https://pyoxigraph.readthedocs.io/).\n\n## Build the development version\n\nTo build and install the development version of pyoxigraph you need to clone this git repository including submodules (`git clone --recursive https://github.com/oxigraph/oxigraph.git`)\nand to run `pip install .` in the `python` directory (the one this README is in).\n\nNote that by default the installation will not use [cpython stable ABI](https://docs.python.org/3/c-api/stable.html).\nUse `--features abi3` feature to use cpython stable ABI.\n\n## Help\n\nFeel free to use [GitHub discussions](https://github.com/oxigraph/oxigraph/discussions) or [the Gitter chat](https://gitter.im/oxigraph/community) to ask questions or talk about Oxigraph.\n[Bug reports](https://github.com/oxigraph/oxigraph/issues) are also very welcome.\n\nIf you need advanced support or are willing to pay to get some extra features, feel free to reach out to [Tpt](https://github.com/Tpt).\n\n## How to contribute\n\nPyoxigraph is written in Rust using [PyO3](https://github.com/PyO3/pyo3).\n\nPyoxigraph is built using [Maturin](https://github.com/PyO3/maturin).\nMaturin could be installed using the `pip install 'maturin>=0.9,<0.10'`.\nTo install a development version of Oxigraph just run `maturin develop` in this README directory.\n\n### Tests\n\nThe Python bindings tests are written in Python.\nTo run them use `python -m unittest` in the `tests` directory.\n\n### Docs\n\nThe Sphinx documentation can be generated and viewed in the browser using the following command:\n\n```\nsphinx-autobuild docs docs/_build/html\n```\n\nNote that you will need to have [sphinx-autobuild](https://pypi.org/project/sphinx-autobuild/) installed.\n\nAlternatively, you can use `sphinx-build` with Python's `http.server` to achieve the same thing.\n\n## License\n\nThis project is licensed under either of\n\n- Apache License, Version 2.0, ([LICENSE-APACHE](../LICENSE-APACHE) or\n  http://www.apache.org/licenses/LICENSE-2.0)\n- MIT license ([LICENSE-MIT](../LICENSE-MIT) or\n  http://opensource.org/licenses/MIT)\n\nat your option.\n\n### Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Oxigraph by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.\n\n",
    "bugtrack_url": null,
    "license": "MIT OR Apache-2.0",
    "summary": "Python bindings of Oxigraph, a SPARQL database and RDF toolkit",
    "version": "0.4.11",
    "project_urls": {
        "Changelog": "https://github.com/oxigraph/oxigraph/blob/main/CHANGELOG.md",
        "Documentation": "https://pyoxigraph.readthedocs.io/",
        "Homepage": "https://pyoxigraph.readthedocs.io/",
        "Source": "https://github.com/oxigraph/oxigraph/tree/main/python",
        "Tracker": "https://github.com/oxigraph/oxigraph/issues"
    },
    "split_keywords": [
        "rdf",
        " sparql",
        " graph-database",
        " database"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "989af0540dbd68ade8aa518a9a01996c2211d2fcb2558e73c423648426cb7417",
                "md5": "d3d21f6c5e37872a5ca33d389d89159b",
                "sha256": "008dd50b7dcab025d9a64df7de178220d197d684cdff3da53442ae759d8d700c"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d3d21f6c5e37872a5ca33d389d89159b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 6847415,
            "upload_time": "2025-05-21T20:54:22",
            "upload_time_iso_8601": "2025-05-21T20:54:22.048155Z",
            "url": "https://files.pythonhosted.org/packages/98/9a/f0540dbd68ade8aa518a9a01996c2211d2fcb2558e73c423648426cb7417/pyoxigraph-0.4.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8cac004bf714899e53db677ec0fedac0b63a28953dad03cd3e16275a0dc21ad1",
                "md5": "e285cd580c4d29350729f674d63d8871",
                "sha256": "91e74596d0d9dc234ca77873369bb047672e38be11dfcde8b2db0fa0d0f3bd34"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e285cd580c4d29350729f674d63d8871",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 7247911,
            "upload_time": "2025-05-21T20:54:24",
            "upload_time_iso_8601": "2025-05-21T20:54:24.368727Z",
            "url": "https://files.pythonhosted.org/packages/8c/ac/004bf714899e53db677ec0fedac0b63a28953dad03cd3e16275a0dc21ad1/pyoxigraph-0.4.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a4bacbe70d6403825c1a73c9067c2b40aa5ff3767a1b079185b92dc2b18a6b6",
                "md5": "9bcc80c45b2b8670f1853c82f84b5c8a",
                "sha256": "cd86f7f04624a23ccb821716ad34943d301524d266b9ac415e5f9cb4f4f339e6"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9bcc80c45b2b8670f1853c82f84b5c8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 7893741,
            "upload_time": "2025-05-21T20:54:25",
            "upload_time_iso_8601": "2025-05-21T20:54:25.983990Z",
            "url": "https://files.pythonhosted.org/packages/2a/4b/acbe70d6403825c1a73c9067c2b40aa5ff3767a1b079185b92dc2b18a6b6/pyoxigraph-0.4.11-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4db38f255d9eeea227b00e36d8d785b7695da4966eb405766badfc2c348cd20b",
                "md5": "9381686568325fcbf079d26d39c5369e",
                "sha256": "7a0a3d84c887820473f1218e2e9633c2322eafed5e785b22a955ee0caaff882d"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9381686568325fcbf079d26d39c5369e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 8503949,
            "upload_time": "2025-05-21T20:54:27",
            "upload_time_iso_8601": "2025-05-21T20:54:27.700256Z",
            "url": "https://files.pythonhosted.org/packages/4d/b3/8f255d9eeea227b00e36d8d785b7695da4966eb405766badfc2c348cd20b/pyoxigraph-0.4.11-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "126b3bc9fd6049f6f3b29c9adf85363e8e981854a8565aba2db6885a7157f5b1",
                "md5": "43bd523611759a1df544b2be08317d0e",
                "sha256": "1ff9c48ebb0faa48c17691d56d0dab88fa15fadef70e494153bb1511d3fc17ab"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "43bd523611759a1df544b2be08317d0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 6846859,
            "upload_time": "2025-05-21T20:54:30",
            "upload_time_iso_8601": "2025-05-21T20:54:30.110450Z",
            "url": "https://files.pythonhosted.org/packages/12/6b/3bc9fd6049f6f3b29c9adf85363e8e981854a8565aba2db6885a7157f5b1/pyoxigraph-0.4.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "978a9a8ed1a7bacb6460fade4d30e5e0b33d26ad830fa5c6a1d0e761b256d9a7",
                "md5": "113338918bc4b841178de186137f1d95",
                "sha256": "9dcba1517a42a7d1a9f96b8d248579a8773e9256e35762f353207a486bdbf25b"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "113338918bc4b841178de186137f1d95",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 7247699,
            "upload_time": "2025-05-21T20:54:32",
            "upload_time_iso_8601": "2025-05-21T20:54:32.993596Z",
            "url": "https://files.pythonhosted.org/packages/97/8a/9a8ed1a7bacb6460fade4d30e5e0b33d26ad830fa5c6a1d0e761b256d9a7/pyoxigraph-0.4.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5026c8a2bbe36cb24228cb7b94a25e69c9f728b7d174844e03c2067fa21ba7d1",
                "md5": "1ee1f32318cc5ccbaad378996d2e666d",
                "sha256": "6ae5f76d69498862fde26aa84ddf8d10a30478cf7f3be1fa8c82380e2f57af78"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1ee1f32318cc5ccbaad378996d2e666d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 7893442,
            "upload_time": "2025-05-21T20:54:35",
            "upload_time_iso_8601": "2025-05-21T20:54:35.458222Z",
            "url": "https://files.pythonhosted.org/packages/50/26/c8a2bbe36cb24228cb7b94a25e69c9f728b7d174844e03c2067fa21ba7d1/pyoxigraph-0.4.11-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "660b8e61f7cf78b05aebc68d139b62aa865da07f7a403dd1f3c2ed34fc97df51",
                "md5": "b9966d3576764a4db512805e678af249",
                "sha256": "1e58de7bd2b1b6df2aa8a7bb95ce898c78c1309f9fb0d0658c51be38bf630620"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b9966d3576764a4db512805e678af249",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 8503348,
            "upload_time": "2025-05-21T20:54:37",
            "upload_time_iso_8601": "2025-05-21T20:54:37.733327Z",
            "url": "https://files.pythonhosted.org/packages/66/0b/8e61f7cf78b05aebc68d139b62aa865da07f7a403dd1f3c2ed34fc97df51/pyoxigraph-0.4.11-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d429ee4a9f7aa0494f00011c40a87ee2f3e7c440f7c563b0f9513bc8e4b6db3e",
                "md5": "aca45ea9fc45bce0995f53fe76bd7f55",
                "sha256": "cc89ed499f0816119bad6955e41db51d7ee3b79f1f78bdb32bc3b7792a21ab51"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aca45ea9fc45bce0995f53fe76bd7f55",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 6843133,
            "upload_time": "2025-05-21T20:54:40",
            "upload_time_iso_8601": "2025-05-21T20:54:40.474075Z",
            "url": "https://files.pythonhosted.org/packages/d4/29/ee4a9f7aa0494f00011c40a87ee2f3e7c440f7c563b0f9513bc8e4b6db3e/pyoxigraph-0.4.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "901f141eec16660ba07c280db56111c45d2ba1c1c4c30f284e7a2b2a69562e8d",
                "md5": "3839dda893031296ba5bc792fb436091",
                "sha256": "ec1f74e92c1ccb108e7b79bd1395cf12c1c6f9d4a3d9d2c2ddc7955e2a527c6d"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3839dda893031296ba5bc792fb436091",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 7244983,
            "upload_time": "2025-05-21T20:54:43",
            "upload_time_iso_8601": "2025-05-21T20:54:43.025138Z",
            "url": "https://files.pythonhosted.org/packages/90/1f/141eec16660ba07c280db56111c45d2ba1c1c4c30f284e7a2b2a69562e8d/pyoxigraph-0.4.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf62d734047e257df246f98e0d4194f645f5c2a53fb2836e4bd59bb2c6cd34e4",
                "md5": "f05565bd962f4fdd7a0658f78f6a5847",
                "sha256": "720e15d44a33fd153f8985e242e4e428ee913087ad9582d008adf84b55e57e0f"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f05565bd962f4fdd7a0658f78f6a5847",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 7888928,
            "upload_time": "2025-05-21T20:54:44",
            "upload_time_iso_8601": "2025-05-21T20:54:44.706038Z",
            "url": "https://files.pythonhosted.org/packages/bf/62/d734047e257df246f98e0d4194f645f5c2a53fb2836e4bd59bb2c6cd34e4/pyoxigraph-0.4.11-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef7953a54ded531844afaa61be737b1331582633e123e5966fc3a8adcea3397d",
                "md5": "a0e2adde7d5127e22d3773db9f5cf819",
                "sha256": "63ed10e9b398718350e08b08ffa5086c1c4123c45a1440818a130bf80d9b4a50"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a0e2adde7d5127e22d3773db9f5cf819",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 8498668,
            "upload_time": "2025-05-21T20:54:47",
            "upload_time_iso_8601": "2025-05-21T20:54:47.438851Z",
            "url": "https://files.pythonhosted.org/packages/ef/79/53a54ded531844afaa61be737b1331582633e123e5966fc3a8adcea3397d/pyoxigraph-0.4.11-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6226b6e5695231f7ae7c2a070c0dff5f9f8e46bad9a2c3f601377c900d8de2f8",
                "md5": "5ad4bdd7e33cb32c20e1a2a60384417f",
                "sha256": "6b6c280f474df35480ebcf644f5500e3ac835a8469c74ee150f3eab63c096b3b"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5ad4bdd7e33cb32c20e1a2a60384417f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 6842628,
            "upload_time": "2025-05-21T20:54:49",
            "upload_time_iso_8601": "2025-05-21T20:54:49.384940Z",
            "url": "https://files.pythonhosted.org/packages/62/26/b6e5695231f7ae7c2a070c0dff5f9f8e46bad9a2c3f601377c900d8de2f8/pyoxigraph-0.4.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "530eba78262c854b1b05ee8895da0b3233b1ba3fad4c2ac87c443575f9438f94",
                "md5": "0adf9321975cf6271cd2a78a03841dfb",
                "sha256": "b51b40fbb69ccb77875f98c48bb73338f7488c59fe7470557d2dc954f81cf0ab"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0adf9321975cf6271cd2a78a03841dfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 7244536,
            "upload_time": "2025-05-21T20:54:52",
            "upload_time_iso_8601": "2025-05-21T20:54:52.965409Z",
            "url": "https://files.pythonhosted.org/packages/53/0e/ba78262c854b1b05ee8895da0b3233b1ba3fad4c2ac87c443575f9438f94/pyoxigraph-0.4.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d973c6d9024bc545f0e608f0fba9ba5617ceef92f7c8057cf1202dcf11b59e0d",
                "md5": "26ac67121fbfe2d22088e8f2a4f8f393",
                "sha256": "3249aca824cf641262d7a3083281cae4bef99b5eb21149e468ca59cb2c483b4b"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "26ac67121fbfe2d22088e8f2a4f8f393",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 7888251,
            "upload_time": "2025-05-21T20:54:54",
            "upload_time_iso_8601": "2025-05-21T20:54:54.699213Z",
            "url": "https://files.pythonhosted.org/packages/d9/73/c6d9024bc545f0e608f0fba9ba5617ceef92f7c8057cf1202dcf11b59e0d/pyoxigraph-0.4.11-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c2cec39c33f38d7c480eebc6c7bc1a1984fc68d755a5027be79324e9b25f51d",
                "md5": "9ac15b02cb88011c721f540b6c1c3323",
                "sha256": "033cd1e517c218958e621845192770d6214c433e63eff5eff8b189a359b11594"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ac15b02cb88011c721f540b6c1c3323",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 8497847,
            "upload_time": "2025-05-21T20:54:56",
            "upload_time_iso_8601": "2025-05-21T20:54:56.852472Z",
            "url": "https://files.pythonhosted.org/packages/6c/2c/ec39c33f38d7c480eebc6c7bc1a1984fc68d755a5027be79324e9b25f51d/pyoxigraph-0.4.11-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "491b3432268144cafe74fc376cb362afd1e419fd11bb87688deb18bbcf2d16af",
                "md5": "92fe911dfa3f0db88c2342ffbe84fbc5",
                "sha256": "13388877324e66dfa65461800505598fb5805a625f23e14b879df4fd52444b24"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "92fe911dfa3f0db88c2342ffbe84fbc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 6839672,
            "upload_time": "2025-05-21T20:55:00",
            "upload_time_iso_8601": "2025-05-21T20:55:00.652336Z",
            "url": "https://files.pythonhosted.org/packages/49/1b/3432268144cafe74fc376cb362afd1e419fd11bb87688deb18bbcf2d16af/pyoxigraph-0.4.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24ecf0e3f5135122d73da0451fb98a05c3921d211baa541010943046c75c20d4",
                "md5": "61af19601f6cbbd353e1345cede75425",
                "sha256": "ae090cb684331623f7b2460620d85b20cd3a312e0a1c172ad8a6cfd3a260cfdc"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61af19601f6cbbd353e1345cede75425",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 7241190,
            "upload_time": "2025-05-21T20:55:03",
            "upload_time_iso_8601": "2025-05-21T20:55:03.319195Z",
            "url": "https://files.pythonhosted.org/packages/24/ec/f0e3f5135122d73da0451fb98a05c3921d211baa541010943046c75c20d4/pyoxigraph-0.4.11-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "563468bd955365fe1f3138bb3412a1ebd420332e205861efa65fb662931b042d",
                "md5": "52e328bc3f10245c126d7b249997e1e8",
                "sha256": "3dba53ac72f922607bb9db49e0f49824f74729839873b7a0d1ccf8f518cc80da"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "52e328bc3f10245c126d7b249997e1e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 7883752,
            "upload_time": "2025-05-21T20:55:05",
            "upload_time_iso_8601": "2025-05-21T20:55:05.103520Z",
            "url": "https://files.pythonhosted.org/packages/56/34/68bd955365fe1f3138bb3412a1ebd420332e205861efa65fb662931b042d/pyoxigraph-0.4.11-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b3385cef0191f627e0f9576717f676c0ac04f41ad1f879e9dfc0096ccdeb5f6",
                "md5": "de419a65f63cdca33cfae7080397957a",
                "sha256": "5965d40cb90852225eb3957a310e359a1f024a9ab21851f0a4555bc9666edc95"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de419a65f63cdca33cfae7080397957a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 8494496,
            "upload_time": "2025-05-21T20:55:08",
            "upload_time_iso_8601": "2025-05-21T20:55:08.154526Z",
            "url": "https://files.pythonhosted.org/packages/8b/33/85cef0191f627e0f9576717f676c0ac04f41ad1f879e9dfc0096ccdeb5f6/pyoxigraph-0.4.11-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ddab2a94e5e0cd1d4e4680c8bbe0197ba4e453bdf99f21ac6eb08ea265cbfee5",
                "md5": "2f114465ef15e2a32a2c19e1de4a36da",
                "sha256": "429b0d709197b766c08f6b48d59158e878fce350a229848823781d614ad8a73e"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2f114465ef15e2a32a2c19e1de4a36da",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4905974,
            "upload_time": "2025-05-21T20:54:58",
            "upload_time_iso_8601": "2025-05-21T20:54:58.800144Z",
            "url": "https://files.pythonhosted.org/packages/dd/ab/2a94e5e0cd1d4e4680c8bbe0197ba4e453bdf99f21ac6eb08ea265cbfee5/pyoxigraph-0.4.11-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2adb86b0d03d34674978ed147331868533d0d1f1da48acb5e2a41c337cf15935",
                "md5": "1ae3f357e911c8559eacd56778e961a7",
                "sha256": "d6725d754893e81d5f397f3c6c29664b17eb52c99c9b705d4b800cc4416a53f4"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp38-abi3-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ae3f357e911c8559eacd56778e961a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5772593,
            "upload_time": "2025-05-21T20:55:10",
            "upload_time_iso_8601": "2025-05-21T20:55:10.265785Z",
            "url": "https://files.pythonhosted.org/packages/2a/db/86b0d03d34674978ed147331868533d0d1f1da48acb5e2a41c337cf15935/pyoxigraph-0.4.11-cp38-abi3-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0767e3106b945867e44696634e7bf4614d5cb4fd5058cd6cc0e53f9483c4f215",
                "md5": "1d5f505fe6cc43f8735b1c947f7838b8",
                "sha256": "b5757598733e38e3fee70513cfb38a2d10191dbbe1522af0329c70801a1f715e"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp38-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1d5f505fe6cc43f8735b1c947f7838b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5233235,
            "upload_time": "2025-05-21T20:55:12",
            "upload_time_iso_8601": "2025-05-21T20:55:12.936542Z",
            "url": "https://files.pythonhosted.org/packages/07/67/e3106b945867e44696634e7bf4614d5cb4fd5058cd6cc0e53f9483c4f215/pyoxigraph-0.4.11-cp38-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f4afe40b1c9d2380c2eeb0668e9c9b7d6d69df2fb0a7828c180fc19dc5d3774",
                "md5": "a2c4bdd89b1902637064d2fdbda1be2e",
                "sha256": "2eaf4f7421ba2815cf9f60c7bc2379344a03afe0ef6e749df9689a2d0c970b8a"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a2c4bdd89b1902637064d2fdbda1be2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 6844237,
            "upload_time": "2025-05-21T20:55:15",
            "upload_time_iso_8601": "2025-05-21T20:55:15.134702Z",
            "url": "https://files.pythonhosted.org/packages/7f/4a/fe40b1c9d2380c2eeb0668e9c9b7d6d69df2fb0a7828c180fc19dc5d3774/pyoxigraph-0.4.11-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d8000e6775a0c5e08387c5d2fb30406781e77e8f7082cec2428d098192c31fc",
                "md5": "486eea669ad525cd4a770889a3ce7edf",
                "sha256": "0826ed60ec53f3c539cdf4f2b9977089302478d02927293a09da49dedc604660"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "486eea669ad525cd4a770889a3ce7edf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 7246680,
            "upload_time": "2025-05-21T20:55:17",
            "upload_time_iso_8601": "2025-05-21T20:55:17.214531Z",
            "url": "https://files.pythonhosted.org/packages/6d/80/00e6775a0c5e08387c5d2fb30406781e77e8f7082cec2428d098192c31fc/pyoxigraph-0.4.11-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1968672ecef6fa84aa7edf1bfc1cc27cfaa06a60a39cd642a34ff6bc9b70e646",
                "md5": "ebd3038813b448688257159ee7a363a9",
                "sha256": "9322083f3854b26324f4f2aa23b0823c87802e404eb3e19d490f5d40f82a28bd"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp38-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ebd3038813b448688257159ee7a363a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 7891848,
            "upload_time": "2025-05-21T20:55:18",
            "upload_time_iso_8601": "2025-05-21T20:55:18.875836Z",
            "url": "https://files.pythonhosted.org/packages/19/68/672ecef6fa84aa7edf1bfc1cc27cfaa06a60a39cd642a34ff6bc9b70e646/pyoxigraph-0.4.11-cp38-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "35d565e3bb7e133dcbd7f577cbf6658098bc9315c94ece9510bf731e42c0f3a0",
                "md5": "fa6eeb47f3cd1ae81fa86850f057c123",
                "sha256": "e035770fa70ba818073ea20de1989dc24e111f5ad93e52f44b5bd84c77d3057b"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp38-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa6eeb47f3cd1ae81fa86850f057c123",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 8498122,
            "upload_time": "2025-05-21T20:55:20",
            "upload_time_iso_8601": "2025-05-21T20:55:20.741495Z",
            "url": "https://files.pythonhosted.org/packages/35/d5/65e3bb7e133dcbd7f577cbf6658098bc9315c94ece9510bf731e42c0f3a0/pyoxigraph-0.4.11-cp38-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd06c7c1fe91d5b854f4cb86d29fb7772e0a8ac807ea555767c442cb417b842a",
                "md5": "1a5d422ebed6efe7b3d300202f2297da",
                "sha256": "26d862905a378ac922dda56ff6e36b047aea106203a2b5503a6dfc5feda55273"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp38-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1a5d422ebed6efe7b3d300202f2297da",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4918145,
            "upload_time": "2025-05-21T20:55:23",
            "upload_time_iso_8601": "2025-05-21T20:55:23.173949Z",
            "url": "https://files.pythonhosted.org/packages/bd/06/c7c1fe91d5b854f4cb86d29fb7772e0a8ac807ea555767c442cb417b842a/pyoxigraph-0.4.11-cp38-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4e8b99960f881f68fa48f61a2f4aca8ee4c64a9406a45f8a3f9c00070637058",
                "md5": "ece60a25ecd3bc66e24eb1651cad490a",
                "sha256": "86acdd2e72f42a89778d8b5837e477c8609f0c4d87f8453cb3eeb014217ba268"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ece60a25ecd3bc66e24eb1651cad490a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 6847748,
            "upload_time": "2025-05-21T20:55:26",
            "upload_time_iso_8601": "2025-05-21T20:55:26.648483Z",
            "url": "https://files.pythonhosted.org/packages/f4/e8/b99960f881f68fa48f61a2f4aca8ee4c64a9406a45f8a3f9c00070637058/pyoxigraph-0.4.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d31bde09f67d42d3e74beb304d1a959871da9918092ff7f9352890b8eb6d591",
                "md5": "6e8e99f4dd735df8593ec6a757ce0e78",
                "sha256": "bd162020913e44088c94b566b51600d58d76ac8e7983d3001bc5e5fac667d34f"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e8e99f4dd735df8593ec6a757ce0e78",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 7248398,
            "upload_time": "2025-05-21T20:55:28",
            "upload_time_iso_8601": "2025-05-21T20:55:28.355102Z",
            "url": "https://files.pythonhosted.org/packages/9d/31/bde09f67d42d3e74beb304d1a959871da9918092ff7f9352890b8eb6d591/pyoxigraph-0.4.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "10731a9deea9f94012bef8ccde342d1ac37134c6a18423401bdb689867187481",
                "md5": "7217928950f4d1f285534a0d1ad49f7f",
                "sha256": "1d9a6fdfeb06b895767353b9837d4d822d28fcf3ecf9580eca4b38669aff4e90"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7217928950f4d1f285534a0d1ad49f7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 7893941,
            "upload_time": "2025-05-21T20:55:31",
            "upload_time_iso_8601": "2025-05-21T20:55:31.146845Z",
            "url": "https://files.pythonhosted.org/packages/10/73/1a9deea9f94012bef8ccde342d1ac37134c6a18423401bdb689867187481/pyoxigraph-0.4.11-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97aa0adc3e4637c8fc6f3efcd3ff63fcfa97571bcdba37f18f5f31cd75176210",
                "md5": "af83772d8dc5bfa00c3e39a1d0cb05a4",
                "sha256": "97ab378c23e14b1465d7ad0bc4ce64ebce51cbf953ec9b9afe180fe93d1069d6"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af83772d8dc5bfa00c3e39a1d0cb05a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 8503885,
            "upload_time": "2025-05-21T20:55:32",
            "upload_time_iso_8601": "2025-05-21T20:55:32.893378Z",
            "url": "https://files.pythonhosted.org/packages/97/aa/0adc3e4637c8fc6f3efcd3ff63fcfa97571bcdba37f18f5f31cd75176210/pyoxigraph-0.4.11-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15da8d443005d5ce50555a07fec5207405669346b5e03ef0aae0bf773d0553d4",
                "md5": "5727665f18929bbed500b9af12ee5bce",
                "sha256": "8abfb7ee202d7f5a7694415e3e4c782d4b376097db08d2cbc92707fd3097b1da"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5727665f18929bbed500b9af12ee5bce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 6848002,
            "upload_time": "2025-05-21T20:55:35",
            "upload_time_iso_8601": "2025-05-21T20:55:35.458507Z",
            "url": "https://files.pythonhosted.org/packages/15/da/8d443005d5ce50555a07fec5207405669346b5e03ef0aae0bf773d0553d4/pyoxigraph-0.4.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9257d592da5b9293dd29351cbfe9b5735e4a6f5c0a2a77c153950aecd28646a",
                "md5": "b28c6da2cdd543fdbe450db3bc680aa5",
                "sha256": "ae8b8f6fdf6613aa5d0e092e33e07279757d3b846dcf11d5c05a6aaad9d9cd06"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b28c6da2cdd543fdbe450db3bc680aa5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 7248439,
            "upload_time": "2025-05-21T20:55:37",
            "upload_time_iso_8601": "2025-05-21T20:55:37.139550Z",
            "url": "https://files.pythonhosted.org/packages/c9/25/7d592da5b9293dd29351cbfe9b5735e4a6f5c0a2a77c153950aecd28646a/pyoxigraph-0.4.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11083f8573e9d9a3339eb5121b11e8bc7f10fac4be45bb579fc808565007ee9e",
                "md5": "6768918d7a5a1f11dd2018d858200f48",
                "sha256": "cf5075d9e17ecc63ea744fc3777fbdce5c02dd66f3085202507174fff90cedcc"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6768918d7a5a1f11dd2018d858200f48",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 7894026,
            "upload_time": "2025-05-21T20:55:39",
            "upload_time_iso_8601": "2025-05-21T20:55:39.637098Z",
            "url": "https://files.pythonhosted.org/packages/11/08/3f8573e9d9a3339eb5121b11e8bc7f10fac4be45bb579fc808565007ee9e/pyoxigraph-0.4.11-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9d885904561e08eb97322cdf06801b0c6c5d6a6d2ca0fbaff15d897c6ec627d",
                "md5": "5cf29644d785fb6d636a023de0e646d3",
                "sha256": "c1b5cb7ddd4434be0b835192451eb6ed3222bd2255f06c59d9f9861f60ffeb87"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5cf29644d785fb6d636a023de0e646d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 8503509,
            "upload_time": "2025-05-21T20:55:41",
            "upload_time_iso_8601": "2025-05-21T20:55:41.373243Z",
            "url": "https://files.pythonhosted.org/packages/d9/d8/85904561e08eb97322cdf06801b0c6c5d6a6d2ca0fbaff15d897c6ec627d/pyoxigraph-0.4.11-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eac6eadaa5ec6f1632a256dbcb4a3f47745770c9f6fec03d2c8a1f4b5e4fc33b",
                "md5": "3d7c99cbc8a09630762c9073adbfca28",
                "sha256": "aed2ee7b60daaf096e3c652ecb4ccdd36ec4e507194a9002b63456b25c0af5c6"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3d7c99cbc8a09630762c9073adbfca28",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 6846911,
            "upload_time": "2025-05-21T20:55:44",
            "upload_time_iso_8601": "2025-05-21T20:55:44.282198Z",
            "url": "https://files.pythonhosted.org/packages/ea/c6/eadaa5ec6f1632a256dbcb4a3f47745770c9f6fec03d2c8a1f4b5e4fc33b/pyoxigraph-0.4.11-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5ba2f4149c62ea3353810afda1f5e3e5c8b61310e4cbd7fce32f668e056b650",
                "md5": "845f4f78a864b58ffc7fe2fba3c98d69",
                "sha256": "c8afe83fd73f9f071302f451d987991a280a9703d19508a6dbcd63e9d5222e77"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "845f4f78a864b58ffc7fe2fba3c98d69",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 7247384,
            "upload_time": "2025-05-21T20:55:45",
            "upload_time_iso_8601": "2025-05-21T20:55:45.995067Z",
            "url": "https://files.pythonhosted.org/packages/e5/ba/2f4149c62ea3353810afda1f5e3e5c8b61310e4cbd7fce32f668e056b650/pyoxigraph-0.4.11-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "473720a14731bd3b64ffcdc3b58553edbf4643810a184e3cee205e891f6d9b49",
                "md5": "4fe517d1e64deaaa716423f3c625b107",
                "sha256": "2dbb7dd027645ca74dfa588740e9beb8f148a19c70350eeb307448fbfd566ce5"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4fe517d1e64deaaa716423f3c625b107",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 6846919,
            "upload_time": "2025-05-21T20:55:48",
            "upload_time_iso_8601": "2025-05-21T20:55:48.767926Z",
            "url": "https://files.pythonhosted.org/packages/47/37/20a14731bd3b64ffcdc3b58553edbf4643810a184e3cee205e891f6d9b49/pyoxigraph-0.4.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64438b2e35585249c5a631656b7ec98f1eab28beacfe9e794cca4af6f860ef6e",
                "md5": "4349406a0c5113f682447e0ef8d60ad1",
                "sha256": "9c6c3024541bd3dd03a5c838ce2feaedbf19463232417bdbf396291c4d9d2add"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4349406a0c5113f682447e0ef8d60ad1",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 7247434,
            "upload_time": "2025-05-21T20:55:51",
            "upload_time_iso_8601": "2025-05-21T20:55:51.075230Z",
            "url": "https://files.pythonhosted.org/packages/64/43/8b2e35585249c5a631656b7ec98f1eab28beacfe9e794cca4af6f860ef6e/pyoxigraph-0.4.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f7be5cd5fc4b88f5cb4795b59fea0d2c4196965d3b9292b1b3bbe5ad930ee638",
                "md5": "4218e0ef5607be22dfe2305447e397be",
                "sha256": "0ebe04cb782cc359d8c782b1c8843accf5b8568ff942bc5cf204e9e395522c65"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4218e0ef5607be22dfe2305447e397be",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 6846797,
            "upload_time": "2025-05-21T20:55:53",
            "upload_time_iso_8601": "2025-05-21T20:55:53.464201Z",
            "url": "https://files.pythonhosted.org/packages/f7/be/5cd5fc4b88f5cb4795b59fea0d2c4196965d3b9292b1b3bbe5ad930ee638/pyoxigraph-0.4.11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a32cd2b4e5b00327cd4e4ad916c63a4f505ed43480f999ac659907e3bf2a87c",
                "md5": "8a7a251bb650558be96477cfdd847fa0",
                "sha256": "ac504982b5e6d19a51a303db9ad4913889b08b2dcd2276cc832b2f0054124f50"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a7a251bb650558be96477cfdd847fa0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 7247612,
            "upload_time": "2025-05-21T20:55:55",
            "upload_time_iso_8601": "2025-05-21T20:55:55.520732Z",
            "url": "https://files.pythonhosted.org/packages/1a/32/cd2b4e5b00327cd4e4ad916c63a4f505ed43480f999ac659907e3bf2a87c/pyoxigraph-0.4.11-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5023d64f6b8ba918b76c0d048f5ec32ffd2b79a9455e1ec07d9637adccf8868e",
                "md5": "23d66ff1223055dad93c5331e3e94c1e",
                "sha256": "19da535c5026eacb11140ee03e2055d8757eb0e9800e722476f52fa46fe96658"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.11.tar.gz",
            "has_sig": false,
            "md5_digest": "23d66ff1223055dad93c5331e3e94c1e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 4897598,
            "upload_time": "2025-05-21T20:55:58",
            "upload_time_iso_8601": "2025-05-21T20:55:58.046021Z",
            "url": "https://files.pythonhosted.org/packages/50/23/d64f6b8ba918b76c0d048f5ec32ffd2b79a9455e1ec07d9637adccf8868e/pyoxigraph-0.4.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-05-21 20:55:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "oxigraph",
    "github_project": "oxigraph",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyoxigraph"
}
        
Elapsed time: 1.87234s