# Pyoxigraph (Oxigraph for Python)
[](https://pypi.org/project/pyoxigraph/)
[](https://anaconda.org/conda-forge/pyoxigraph)


[](https://github.com/oxigraph/oxigraph/actions)
[](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
[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/57/00/6f6a98428981a96764a19c884be0dcf1dc59b61dac4cb31879be3c16956b/pyoxigraph-0.4.8.tar.gz",
"platform": null,
"description": "# Pyoxigraph (Oxigraph for Python)\n\n[](https://pypi.org/project/pyoxigraph/)\n[](https://anaconda.org/conda-forge/pyoxigraph)\n\n\n[](https://github.com/oxigraph/oxigraph/actions)\n[](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[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.8",
"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": "1d78fdaa2fb74959dd349dcbc18f8b740da495d1b40cc54484d9b097d4eb6efb",
"md5": "5362e562607aeb8e0bf90d18e3d4ac5d",
"sha256": "3dc15cc462fce3b8f64e9be1a763ef578128366ac333408ea958e056bc5755e4"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5362e562607aeb8e0bf90d18e3d4ac5d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 6621466,
"upload_time": "2025-02-14T22:32:04",
"upload_time_iso_8601": "2025-02-14T22:32:04.836325Z",
"url": "https://files.pythonhosted.org/packages/1d/78/fdaa2fb74959dd349dcbc18f8b740da495d1b40cc54484d9b097d4eb6efb/pyoxigraph-0.4.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "94ee982909a713fec7fdb49a60c618b1f5e772e3beb5951f50c0eaf74c8e4304",
"md5": "6efd2f9ca17a772cf6112bc18dbc024d",
"sha256": "c104516629b92f5f80e4b9e740fbfa35b180d828a2c9fb3b79e95c88c2d04c27"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6efd2f9ca17a772cf6112bc18dbc024d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 7012049,
"upload_time": "2025-02-14T22:32:08",
"upload_time_iso_8601": "2025-02-14T22:32:08.189911Z",
"url": "https://files.pythonhosted.org/packages/94/ee/982909a713fec7fdb49a60c618b1f5e772e3beb5951f50c0eaf74c8e4304/pyoxigraph-0.4.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f21112e1d8c97f6490782169b691f385ce0438caff022edbde2d6f9e95d29e2a",
"md5": "a682ef39314542fa6a3c8f0ffbfdc6d3",
"sha256": "556d2b9246f92700d3858cff4192216b6a3a0765a884213907679b5517be8bfd"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "a682ef39314542fa6a3c8f0ffbfdc6d3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 7667006,
"upload_time": "2025-02-14T22:32:10",
"upload_time_iso_8601": "2025-02-14T22:32:10.465247Z",
"url": "https://files.pythonhosted.org/packages/f2/11/12e1d8c97f6490782169b691f385ce0438caff022edbde2d6f9e95d29e2a/pyoxigraph-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0644939105f1631ccf5b91a99a7f6eb0339bf627ae27e362ded7585573688fb1",
"md5": "644745f481e9a99fbb1bfc866e078d2f",
"sha256": "551efc50dd3b816c75d9d5163660531ac7d57f10c12da4be4edf0a20f3d564de"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "644745f481e9a99fbb1bfc866e078d2f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 8257478,
"upload_time": "2025-02-14T22:32:13",
"upload_time_iso_8601": "2025-02-14T22:32:13.292847Z",
"url": "https://files.pythonhosted.org/packages/06/44/939105f1631ccf5b91a99a7f6eb0339bf627ae27e362ded7585573688fb1/pyoxigraph-0.4.8-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a1d332e6fd7a2c6af4a185114f9af5f31448816ba2a34c028ec39b5f510b7f9",
"md5": "7d56b645d120d6276fba78a7f52a477b",
"sha256": "b892c742031654bc44ac9fe84782ae10d9a30ce0ac229a870332e5f7dca9ba8a"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7d56b645d120d6276fba78a7f52a477b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 6620873,
"upload_time": "2025-02-14T22:32:15",
"upload_time_iso_8601": "2025-02-14T22:32:15.454515Z",
"url": "https://files.pythonhosted.org/packages/3a/1d/332e6fd7a2c6af4a185114f9af5f31448816ba2a34c028ec39b5f510b7f9/pyoxigraph-0.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c93a0fa2b667eab4ef006a0184207ac19862d63d32e78a3a330cc67851fb6a3b",
"md5": "1abee8998062f6ff05530f3c890fb764",
"sha256": "c5a6b907d5c997c04a5fe1e9a06c6b442371cde0c8eb16c3a44f6a1220115124"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1abee8998062f6ff05530f3c890fb764",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 7011050,
"upload_time": "2025-02-14T22:32:17",
"upload_time_iso_8601": "2025-02-14T22:32:17.339374Z",
"url": "https://files.pythonhosted.org/packages/c9/3a/0fa2b667eab4ef006a0184207ac19862d63d32e78a3a330cc67851fb6a3b/pyoxigraph-0.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e3afc6de1d03a5f869a1483e70e6f49aa92a803be37a7f78e462acff73253e3",
"md5": "b9f5abf6cd742a54b36b6a5a1dc303af",
"sha256": "2ecb07a1792ad1db0a128c7ed655e08327e02a18c28d0e528549791a08c45755"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b9f5abf6cd742a54b36b6a5a1dc303af",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 7666118,
"upload_time": "2025-02-14T22:32:19",
"upload_time_iso_8601": "2025-02-14T22:32:19.583796Z",
"url": "https://files.pythonhosted.org/packages/1e/3a/fc6de1d03a5f869a1483e70e6f49aa92a803be37a7f78e462acff73253e3/pyoxigraph-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "47d1d122e1e0a380af3996b99c9b4ffa5fb88e282f888096d73a788a10f462fe",
"md5": "148af775685348b60c842a22950b3fb4",
"sha256": "73a5951314cc184bd929d79e4635de075a75591d44506d51f987b06857e47a55"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "148af775685348b60c842a22950b3fb4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 8257313,
"upload_time": "2025-02-14T22:32:21",
"upload_time_iso_8601": "2025-02-14T22:32:21.788862Z",
"url": "https://files.pythonhosted.org/packages/47/d1/d122e1e0a380af3996b99c9b4ffa5fb88e282f888096d73a788a10f462fe/pyoxigraph-0.4.8-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d59507258ae2b1970445c265b3096d25f558d130a1f21f1c12913aee1c82063",
"md5": "f4ed8ff3397d74ad5966d04d67658b11",
"sha256": "70b03690422fbbd6218689f22a2e8a25f942e8123620d63e9f4f0cd326ae08e3"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f4ed8ff3397d74ad5966d04d67658b11",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 6618948,
"upload_time": "2025-02-14T22:32:23",
"upload_time_iso_8601": "2025-02-14T22:32:23.855341Z",
"url": "https://files.pythonhosted.org/packages/7d/59/507258ae2b1970445c265b3096d25f558d130a1f21f1c12913aee1c82063/pyoxigraph-0.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58c5abf59e938de05e8ae24c0ae4e0444a50a3ff99f4e0cf4a942f7e522cbe93",
"md5": "4227baf4849c7c3265af7c80ade1070f",
"sha256": "d5a207a276a3b9397604eb755c46e09f05ddcf15cf575bb203826187c7d3c25f"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4227baf4849c7c3265af7c80ade1070f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 7005079,
"upload_time": "2025-02-14T22:32:26",
"upload_time_iso_8601": "2025-02-14T22:32:26.637113Z",
"url": "https://files.pythonhosted.org/packages/58/c5/abf59e938de05e8ae24c0ae4e0444a50a3ff99f4e0cf4a942f7e522cbe93/pyoxigraph-0.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "09e07b3957178a9c731a9a66da27f04e97854b8b8f0e476dcceb97625cb23fce",
"md5": "cb33476c2756f6c689bdb1a02425c126",
"sha256": "efabb46252346a486835059f142158a5bd78ba8fbb27949b2523508140c0d8dd"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "cb33476c2756f6c689bdb1a02425c126",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 7662891,
"upload_time": "2025-02-14T22:32:29",
"upload_time_iso_8601": "2025-02-14T22:32:29.840398Z",
"url": "https://files.pythonhosted.org/packages/09/e0/7b3957178a9c731a9a66da27f04e97854b8b8f0e476dcceb97625cb23fce/pyoxigraph-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d5ce6a9423196598482ec30b45e8275cd2b88b4fafe4eb25bb017b6f395c307a",
"md5": "56c71eb75c50f0a3acc256d777eeee59",
"sha256": "677d88da07f9c890b3256c2be51db69bd69c0d12672964c9401d5b99eb0bb93a"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "56c71eb75c50f0a3acc256d777eeee59",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 8250604,
"upload_time": "2025-02-14T22:32:31",
"upload_time_iso_8601": "2025-02-14T22:32:31.941087Z",
"url": "https://files.pythonhosted.org/packages/d5/ce/6a9423196598482ec30b45e8275cd2b88b4fafe4eb25bb017b6f395c307a/pyoxigraph-0.4.8-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ed58dff6f859956cf109ea83df50d7a5c351e77a2f507170a5dcfd1f9cf5c6b3",
"md5": "2d1071a43684140e05a56623cbf0fdff",
"sha256": "655d61af9f9cd13484cd9d5a07c15315c82b77eddd110726af680fa480289e94"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2d1071a43684140e05a56623cbf0fdff",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 6618621,
"upload_time": "2025-02-14T22:32:34",
"upload_time_iso_8601": "2025-02-14T22:32:34.533087Z",
"url": "https://files.pythonhosted.org/packages/ed/58/dff6f859956cf109ea83df50d7a5c351e77a2f507170a5dcfd1f9cf5c6b3/pyoxigraph-0.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6efb0cf4eadb3c3de0d0e6b5abfb19e2cd11e2329761b26a3baae7d45afac058",
"md5": "7a83e840855d10f9cb8e35e27079d729",
"sha256": "334f8b3c652493125b4e7472b61d4671a5f3dc937e60ec2bba2e13194d361c37"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7a83e840855d10f9cb8e35e27079d729",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 7004685,
"upload_time": "2025-02-14T22:32:37",
"upload_time_iso_8601": "2025-02-14T22:32:37.537575Z",
"url": "https://files.pythonhosted.org/packages/6e/fb/0cf4eadb3c3de0d0e6b5abfb19e2cd11e2329761b26a3baae7d45afac058/pyoxigraph-0.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a84a380fa75d58af7618f63737d054324f1256b8b8d5c830415d75d19a1fb355",
"md5": "40bb303ceb4025811c91a771ba889a7b",
"sha256": "e71d0d63a2936df4188fb4ff66733afdec081811715900c0979ccf684735cce2"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "40bb303ceb4025811c91a771ba889a7b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 7662861,
"upload_time": "2025-02-14T22:32:39",
"upload_time_iso_8601": "2025-02-14T22:32:39.636327Z",
"url": "https://files.pythonhosted.org/packages/a8/4a/380fa75d58af7618f63737d054324f1256b8b8d5c830415d75d19a1fb355/pyoxigraph-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dffa6a1be1514e95737e42f7e2ab0ea1d3cd60fab3f42eb9433cf595f866db2a",
"md5": "67baeb67c5d39deb0efcedb2602270b8",
"sha256": "0d6857b566482280d06109b285b6102450f08781fb0b1a08ab8cce28ddc131b1"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "67baeb67c5d39deb0efcedb2602270b8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 8250557,
"upload_time": "2025-02-14T22:32:41",
"upload_time_iso_8601": "2025-02-14T22:32:41.870664Z",
"url": "https://files.pythonhosted.org/packages/df/fa/6a1be1514e95737e42f7e2ab0ea1d3cd60fab3f42eb9433cf595f866db2a/pyoxigraph-0.4.8-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2fda6624d7c4931e4711dd3d734d9f8ae4a0ab76fc8f7cc5081a45d69d93b212",
"md5": "eba12030dabf8803529e4dd13daee0b1",
"sha256": "23c2808759bdfb49e2d84436f59f1e70a2ab81b30e744e1673a01363d5bf506f"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "eba12030dabf8803529e4dd13daee0b1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 6615168,
"upload_time": "2025-02-14T22:32:44",
"upload_time_iso_8601": "2025-02-14T22:32:44.784089Z",
"url": "https://files.pythonhosted.org/packages/2f/da/6624d7c4931e4711dd3d734d9f8ae4a0ab76fc8f7cc5081a45d69d93b212/pyoxigraph-0.4.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c99298fbc1c7cb66fc77e501983018f1672e978957b5d7d424329a97ccaa429d",
"md5": "19abe4dfd093643d4b7b9493753ee518",
"sha256": "9c84a873db68aabd85b8509fd953fbf87ac5d8324829d6ea48b890d99cff11b5"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "19abe4dfd093643d4b7b9493753ee518",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 7001072,
"upload_time": "2025-02-14T22:32:47",
"upload_time_iso_8601": "2025-02-14T22:32:47.894577Z",
"url": "https://files.pythonhosted.org/packages/c9/92/98fbc1c7cb66fc77e501983018f1672e978957b5d7d424329a97ccaa429d/pyoxigraph-0.4.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3e1089bf185159afcac6ecb4ef57408b80b8615809b4d406eb76c7e4a4a4d9e2",
"md5": "37e98bd6556b631843605ffaffa1b9b7",
"sha256": "8e22eeff9b2359bc07ee6e662a792e2ca0b081ed3e76c5f5eb144145b4f84edb"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "37e98bd6556b631843605ffaffa1b9b7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 7660213,
"upload_time": "2025-02-14T22:32:50",
"upload_time_iso_8601": "2025-02-14T22:32:50.685976Z",
"url": "https://files.pythonhosted.org/packages/3e/10/89bf185159afcac6ecb4ef57408b80b8615809b4d406eb76c7e4a4a4d9e2/pyoxigraph-0.4.8-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58e1735decf76b371ebdfed8b9d56820e0ed75487be3bce7b97c5a7da9fae84f",
"md5": "3d385501814e801e0fca5d9b457474aa",
"sha256": "615e60b4534eaf5a6fd0b73e9764923719e037480bb868875bb39995c314b7b3"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3d385501814e801e0fca5d9b457474aa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 8245737,
"upload_time": "2025-02-14T22:32:55",
"upload_time_iso_8601": "2025-02-14T22:32:55.066107Z",
"url": "https://files.pythonhosted.org/packages/58/e1/735decf76b371ebdfed8b9d56820e0ed75487be3bce7b97c5a7da9fae84f/pyoxigraph-0.4.8-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb69082f7920aca32b5c55231142ee2cfad8c9816e359298e02e8e2e8afda07c",
"md5": "1a23d3f1a46d18782a484a182a0fddb0",
"sha256": "013d11ba025ae89898ff45c2ad83f65b467397c0f140e7bd76ce357da775e164"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp38-abi3-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl",
"has_sig": false,
"md5_digest": "1a23d3f1a46d18782a484a182a0fddb0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 10714298,
"upload_time": "2025-02-14T22:32:58",
"upload_time_iso_8601": "2025-02-14T22:32:58.305915Z",
"url": "https://files.pythonhosted.org/packages/fb/69/082f7920aca32b5c55231142ee2cfad8c9816e359298e02e8e2e8afda07c/pyoxigraph-0.4.8-cp38-abi3-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8eb1ef0e22a895804b1100e9fb1849636afce3ab33df4e9709730fd0a9d5b200",
"md5": "7ea38dcf3a5fa76a44af8308094cdd2a",
"sha256": "dddfacbb5db5a22be62cebcbd761abeb54b18e0a892b0982bf4916953e47bea3"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp38-abi3-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "7ea38dcf3a5fa76a44af8308094cdd2a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5640901,
"upload_time": "2025-02-14T22:33:02",
"upload_time_iso_8601": "2025-02-14T22:33:02.133927Z",
"url": "https://files.pythonhosted.org/packages/8e/b1/ef0e22a895804b1100e9fb1849636afce3ab33df4e9709730fd0a9d5b200/pyoxigraph-0.4.8-cp38-abi3-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b55848eb703156308d786aa79c41c7df910cf9cb4553684111c7355ff94c9db",
"md5": "3c9959d7dad91d62b41b90ec4064f24c",
"sha256": "1cf15c7f0776daa1bda8aa24e8951cf4eb3f8f66c3ba5bf716c6d4efb8a81be0"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp38-abi3-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3c9959d7dad91d62b41b90ec4064f24c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5085309,
"upload_time": "2025-02-14T22:33:03",
"upload_time_iso_8601": "2025-02-14T22:33:03.927579Z",
"url": "https://files.pythonhosted.org/packages/9b/55/848eb703156308d786aa79c41c7df910cf9cb4553684111c7355ff94c9db/pyoxigraph-0.4.8-cp38-abi3-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8b6dba283989845bc95c264501f3571bade11d0f86b5011da72fc2974d61a280",
"md5": "84aa9496089d3cb9a4c9cf3bd842d7a8",
"sha256": "fd586be8f1c9dc1aeb18c0ef4a935b3a4329686bbc239067ac413cd0e9b0e419"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "84aa9496089d3cb9a4c9cf3bd842d7a8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 6623450,
"upload_time": "2025-02-14T22:33:05",
"upload_time_iso_8601": "2025-02-14T22:33:05.857220Z",
"url": "https://files.pythonhosted.org/packages/8b/6d/ba283989845bc95c264501f3571bade11d0f86b5011da72fc2974d61a280/pyoxigraph-0.4.8-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3e44316f0fb282f9b381d1e44e34a1e71b7af784a5aedad868aa4ef479608591",
"md5": "e8341427296da25ec47dd2d5e503c6ef",
"sha256": "1cd2796c8c89f8c62015befc3fb8a0140f95f63c44acf21785c49be0b1b7b6eb"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e8341427296da25ec47dd2d5e503c6ef",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 7008342,
"upload_time": "2025-02-14T22:33:07",
"upload_time_iso_8601": "2025-02-14T22:33:07.839421Z",
"url": "https://files.pythonhosted.org/packages/3e/44/316f0fb282f9b381d1e44e34a1e71b7af784a5aedad868aa4ef479608591/pyoxigraph-0.4.8-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "55b2c390ca5e6319bacce4481a8707412c409e76ffee71e98fc9a8495ca65ca0",
"md5": "3e6387c71e26ef054990408b02f5c3bc",
"sha256": "c169cc98843f0cee5a464368666ee709ad87e4c16be53ba7eebf0d5f2a24fcd2"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp38-abi3-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3e6387c71e26ef054990408b02f5c3bc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 7662752,
"upload_time": "2025-02-14T22:33:10",
"upload_time_iso_8601": "2025-02-14T22:33:10.585985Z",
"url": "https://files.pythonhosted.org/packages/55/b2/c390ca5e6319bacce4481a8707412c409e76ffee71e98fc9a8495ca65ca0/pyoxigraph-0.4.8-cp38-abi3-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4903cf35c41555bd7613c962ae783bce3b790e025c45e27f3a75324c0652895c",
"md5": "850310135e809577d661373f0da7f1c0",
"sha256": "a6914a8376907c046de12fd5233287de170594ea3e8b74e6675637e10fa39aae"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp38-abi3-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "850310135e809577d661373f0da7f1c0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 8254274,
"upload_time": "2025-02-14T22:33:13",
"upload_time_iso_8601": "2025-02-14T22:33:13.841804Z",
"url": "https://files.pythonhosted.org/packages/49/03/cf35c41555bd7613c962ae783bce3b790e025c45e27f3a75324c0652895c/pyoxigraph-0.4.8-cp38-abi3-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd1b7e08c1d762c8065dab1934c2c62c48112abb5f7b62d5ecead706e829c4ee",
"md5": "14a2bede28283e0fcd9b4ee21408660a",
"sha256": "7e1f92012d8879322e9dcba038bd2d6690eafce355c75a35a653324e49333792"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp38-abi3-win_amd64.whl",
"has_sig": false,
"md5_digest": "14a2bede28283e0fcd9b4ee21408660a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 4775056,
"upload_time": "2025-02-14T22:33:16",
"upload_time_iso_8601": "2025-02-14T22:33:16.552444Z",
"url": "https://files.pythonhosted.org/packages/bd/1b/7e08c1d762c8065dab1934c2c62c48112abb5f7b62d5ecead706e829c4ee/pyoxigraph-0.4.8-cp38-abi3-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3e484a72b4f9de2642d66f1d1e09b4437f4cea340239264cb69f7e86c9c193c9",
"md5": "c90fa3ee1271f211b91476fe95861746",
"sha256": "c46dfdb7a2439c4bfed62643ab027e42763a5758446e2c49c16e640c6bb7f9af"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c90fa3ee1271f211b91476fe95861746",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 6621391,
"upload_time": "2025-02-14T22:33:18",
"upload_time_iso_8601": "2025-02-14T22:33:18.442167Z",
"url": "https://files.pythonhosted.org/packages/3e/48/4a72b4f9de2642d66f1d1e09b4437f4cea340239264cb69f7e86c9c193c9/pyoxigraph-0.4.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c8c8a06c50610ed48cbb4c40e20c7307ccd1c5ce9f5e7445dae59de9dbbb40f",
"md5": "bf27d9bf0333056abe81f6144ada0696",
"sha256": "1b2861612c99e18fdff2acfc7bbe6489db7c039d41d41724d0b97a2e464110a5"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bf27d9bf0333056abe81f6144ada0696",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 7012730,
"upload_time": "2025-02-14T22:33:22",
"upload_time_iso_8601": "2025-02-14T22:33:22.082517Z",
"url": "https://files.pythonhosted.org/packages/8c/8c/8a06c50610ed48cbb4c40e20c7307ccd1c5ce9f5e7445dae59de9dbbb40f/pyoxigraph-0.4.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06258b7fc3c5b07d471aeb01c062af800c6b3b0e842b8b92a64be5e3afcbc0ae",
"md5": "5c57cb8009e286f3d9afe2565384d094",
"sha256": "a120c6160e2ffd8d9d8587e4579c7ffbbee2c015072d5d83f93fd7ed7bbb193c"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5c57cb8009e286f3d9afe2565384d094",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 7666646,
"upload_time": "2025-02-14T22:33:24",
"upload_time_iso_8601": "2025-02-14T22:33:24.087620Z",
"url": "https://files.pythonhosted.org/packages/06/25/8b7fc3c5b07d471aeb01c062af800c6b3b0e842b8b92a64be5e3afcbc0ae/pyoxigraph-0.4.8-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5d46792e37f59729bfd5c84efbb289131e044bdd1344ade126d067b271f3ea11",
"md5": "017728e1e76c35578e5e9ce4892b6850",
"sha256": "127fddad6746e19d79d5bf9017380e5ee7b92494bf047c5457b73e9bb473dde6"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "017728e1e76c35578e5e9ce4892b6850",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 8257874,
"upload_time": "2025-02-14T22:33:27",
"upload_time_iso_8601": "2025-02-14T22:33:27.368423Z",
"url": "https://files.pythonhosted.org/packages/5d/46/792e37f59729bfd5c84efbb289131e044bdd1344ade126d067b271f3ea11/pyoxigraph-0.4.8-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "afd30bff8ff29f3f1ce84f9390297e1fdc24327249a8f2cef370dc266f94f7c4",
"md5": "c371fde1a2b791dfc863469835cb60ac",
"sha256": "26abc37c337878a7d66febd161913aa4382f5c396aa4e2bd15134f597448c138"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c371fde1a2b791dfc863469835cb60ac",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 6621551,
"upload_time": "2025-02-14T22:33:29",
"upload_time_iso_8601": "2025-02-14T22:33:29.358128Z",
"url": "https://files.pythonhosted.org/packages/af/d3/0bff8ff29f3f1ce84f9390297e1fdc24327249a8f2cef370dc266f94f7c4/pyoxigraph-0.4.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eed966b059f1c6a111b0512fe9dcc03d25a54d794e887304e78541c9621c7d57",
"md5": "f117040f75ba7391a4c7bc0215efd7d7",
"sha256": "7c1ffe7c83eaecdbcd1f55fbc6906a121319c416984912cceebfc185b5bd2eec"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f117040f75ba7391a4c7bc0215efd7d7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 7012136,
"upload_time": "2025-02-14T22:33:31",
"upload_time_iso_8601": "2025-02-14T22:33:31.291225Z",
"url": "https://files.pythonhosted.org/packages/ee/d9/66b059f1c6a111b0512fe9dcc03d25a54d794e887304e78541c9621c7d57/pyoxigraph-0.4.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d6068deb45513a1dba554c693ab5ec2af1f4fe15f0e8b9b5abd84ed9be71173e",
"md5": "5441bf5494b7e23681b3f21adf494bc6",
"sha256": "d93ae9faea4c108304967ee38ee20bec29facd5632539bb2853f0e945c4a6f31"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5441bf5494b7e23681b3f21adf494bc6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 7666815,
"upload_time": "2025-02-14T22:33:33",
"upload_time_iso_8601": "2025-02-14T22:33:33.386931Z",
"url": "https://files.pythonhosted.org/packages/d6/06/8deb45513a1dba554c693ab5ec2af1f4fe15f0e8b9b5abd84ed9be71173e/pyoxigraph-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e199082ca3acb0192858cd5fc88249173cb11680ca59b42f4d0b92f72e81a8e3",
"md5": "fb0fb730b2c6f5fbf0a49cd49ebfbb04",
"sha256": "9560cf9eba703981a8c89917ee314951ee7e616d9527b95415aa04e800023c90"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "fb0fb730b2c6f5fbf0a49cd49ebfbb04",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 8257867,
"upload_time": "2025-02-14T22:33:36",
"upload_time_iso_8601": "2025-02-14T22:33:36.524744Z",
"url": "https://files.pythonhosted.org/packages/e1/99/082ca3acb0192858cd5fc88249173cb11680ca59b42f4d0b92f72e81a8e3/pyoxigraph-0.4.8-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79d8814eff63c3c0fa311b08127ac6d4487c40c068816f7ec41826540d8b7116",
"md5": "1e13d9181e74c6804243194defd8af64",
"sha256": "ac2c3e5014e0c1b250130d926f99f9fccd6dd460a3386ca40fce6444925c5ebf"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1e13d9181e74c6804243194defd8af64",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 6620813,
"upload_time": "2025-02-14T22:33:39",
"upload_time_iso_8601": "2025-02-14T22:33:39.560605Z",
"url": "https://files.pythonhosted.org/packages/79/d8/814eff63c3c0fa311b08127ac6d4487c40c068816f7ec41826540d8b7116/pyoxigraph-0.4.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f21c772687fe4e55f6b932f6c344d65c4814b297469a288ac5e318c58f43f830",
"md5": "0d15b0dec993ebd4335e28bd148ba58e",
"sha256": "1866e18aea29d8833843df48c6d39fd88a0c0f071bb7732a22f548fe542511c0"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0d15b0dec993ebd4335e28bd148ba58e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 7011594,
"upload_time": "2025-02-14T22:33:42",
"upload_time_iso_8601": "2025-02-14T22:33:42.045057Z",
"url": "https://files.pythonhosted.org/packages/f2/1c/772687fe4e55f6b932f6c344d65c4814b297469a288ac5e318c58f43f830/pyoxigraph-0.4.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e6c9b1884c731fe39062273b953d06e6c7b49f50159c9107da0fa9edbb1da1ad",
"md5": "8044408bc9c5060a6dce8b28cd5d28af",
"sha256": "66056e8d6a87513864483db652d1a5bb1b73d4fbb61d38fdf2dbd8690f4a93ad"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8044408bc9c5060a6dce8b28cd5d28af",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 6620892,
"upload_time": "2025-02-14T22:33:43",
"upload_time_iso_8601": "2025-02-14T22:33:43.985325Z",
"url": "https://files.pythonhosted.org/packages/e6/c9/b1884c731fe39062273b953d06e6c7b49f50159c9107da0fa9edbb1da1ad/pyoxigraph-0.4.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "469461293cad44bc5c8b7755d69698309894a195304083d7581b1480b4901579",
"md5": "3d70476f08b7a32311ef2d33db7b9d9f",
"sha256": "9e83286ed32738c12464762e6ffc3fd6741547f14a99bed953113d3c79e3d1a5"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3d70476f08b7a32311ef2d33db7b9d9f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 7011594,
"upload_time": "2025-02-14T22:33:46",
"upload_time_iso_8601": "2025-02-14T22:33:46.018576Z",
"url": "https://files.pythonhosted.org/packages/46/94/61293cad44bc5c8b7755d69698309894a195304083d7581b1480b4901579/pyoxigraph-0.4.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "57006f6a98428981a96764a19c884be0dcf1dc59b61dac4cb31879be3c16956b",
"md5": "8b5e70cce867377846f93ec0cce8d48e",
"sha256": "7f420e5b89c9710c331f580f355dfab99819b233ad4e2c159715b3acc94f1083"
},
"downloads": -1,
"filename": "pyoxigraph-0.4.8.tar.gz",
"has_sig": false,
"md5_digest": "8b5e70cce867377846f93ec0cce8d48e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 4686501,
"upload_time": "2025-02-14T22:33:50",
"upload_time_iso_8601": "2025-02-14T22:33:50.230178Z",
"url": "https://files.pythonhosted.org/packages/57/00/6f6a98428981a96764a19c884be0dcf1dc59b61dac4cb31879be3c16956b/pyoxigraph-0.4.8.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-14 22:33:50",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "oxigraph",
"github_project": "oxigraph",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pyoxigraph"
}