pyoxigraph


Namepyoxigraph JSON
Version 0.4.5 PyPI version JSON
download
home_pagehttps://pyoxigraph.readthedocs.io/
SummaryPython bindings of Oxigraph, a SPARQL database and RDF toolkit
upload_time2024-12-22 02:39:12
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
[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/ce/e2/249a5cfc1660bcb0cfbe4e624ca4d6754a0cd69ef4d88e28fcac22314b00/pyoxigraph-0.4.5.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[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.5",
    "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": "",
            "digests": {
                "blake2b_256": "cdacf11147642f61485a64f37b7822d66ca24ba824d51d1c4782151749efb011",
                "md5": "4002b8c66c2fd4ceca56bba2f3529adf",
                "sha256": "c5547ae8674d22c127c7e13516046912bfd857225a3bf39f9b9443affb5c8e40"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4002b8c66c2fd4ceca56bba2f3529adf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 6652350,
            "upload_time": "2024-12-22T02:38:03",
            "upload_time_iso_8601": "2024-12-22T02:38:03.472101Z",
            "url": "https://files.pythonhosted.org/packages/cd/ac/f11147642f61485a64f37b7822d66ca24ba824d51d1c4782151749efb011/pyoxigraph-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13b7c84d21bdb4eff8128a53f9af44d1a0535210090db3ca6f1b1f2f5b87f9fb",
                "md5": "afd419c3e0ded8cba3915eac6da2b381",
                "sha256": "0af3319d237ee76a925c2bb6addcbdcfb8273a09ba851d4c6182b7ef1b379986"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "afd419c3e0ded8cba3915eac6da2b381",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 7804154,
            "upload_time": "2024-12-22T02:38:06",
            "upload_time_iso_8601": "2024-12-22T02:38:06.763215Z",
            "url": "https://files.pythonhosted.org/packages/13/b7/c84d21bdb4eff8128a53f9af44d1a0535210090db3ca6f1b1f2f5b87f9fb/pyoxigraph-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac418dd151211070b4b40263492ff7de24c7e928ecd79778545dc2de3816c8e7",
                "md5": "9215b9a75d7340923b51ff8afca796d3",
                "sha256": "ead5e50d1cd8c14b1ce81de9561e8db5a918e684710efa5ac082206c194f3ce8"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9215b9a75d7340923b51ff8afca796d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 6652287,
            "upload_time": "2024-12-22T02:38:10",
            "upload_time_iso_8601": "2024-12-22T02:38:10.273892Z",
            "url": "https://files.pythonhosted.org/packages/ac/41/8dd151211070b4b40263492ff7de24c7e928ecd79778545dc2de3816c8e7/pyoxigraph-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e60a650bb9ba9d9e972c561a2045e87dcda9d786e89f05d369bc2b7a3c5cf4f",
                "md5": "dfdb25e37770024f411326da1d5a6075",
                "sha256": "69f04e23f010084dd8a8d0539a963819f977d2509838abe1880e005b2e31eb0a"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dfdb25e37770024f411326da1d5a6075",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 7803797,
            "upload_time": "2024-12-22T02:38:13",
            "upload_time_iso_8601": "2024-12-22T02:38:13.328017Z",
            "url": "https://files.pythonhosted.org/packages/7e/60/a650bb9ba9d9e972c561a2045e87dcda9d786e89f05d369bc2b7a3c5cf4f/pyoxigraph-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5764f10dc0264929a00e4a433461d6f994470ff67d70f7cc52460d4b32ece380",
                "md5": "bf401d6d25d4563acad3c76b573f715a",
                "sha256": "4d7dfc73490101b03f4c9354648112f6794aa5dab637483af43f269aedcf4ba4"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf401d6d25d4563acad3c76b573f715a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 6644750,
            "upload_time": "2024-12-22T02:38:18",
            "upload_time_iso_8601": "2024-12-22T02:38:18.026675Z",
            "url": "https://files.pythonhosted.org/packages/57/64/f10dc0264929a00e4a433461d6f994470ff67d70f7cc52460d4b32ece380/pyoxigraph-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5803d8e3d7a76d81a2379ccfd4e7dcbc1146ec74a6cd29177d6e4e2d4cca68c2",
                "md5": "73afd5eac7def196433642ba557483de",
                "sha256": "56cfb2c4c22ff88fa8da7ec089d29124a81a60af122e014b39d9a923abe72e0b"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "73afd5eac7def196433642ba557483de",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 7798342,
            "upload_time": "2024-12-22T02:38:20",
            "upload_time_iso_8601": "2024-12-22T02:38:20.826097Z",
            "url": "https://files.pythonhosted.org/packages/58/03/d8e3d7a76d81a2379ccfd4e7dcbc1146ec74a6cd29177d6e4e2d4cca68c2/pyoxigraph-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "782d3fb6b4e17fcbe7ca53f61e9305dfd9ff0ec85b7884c643d8db3c87a20fb3",
                "md5": "59de99b2c1e41bd62ea9e9c48180e49b",
                "sha256": "b15cdf2b28a3d9fcc0fdcce043de4e13be95807768cb26274a37431fa63e1199"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59de99b2c1e41bd62ea9e9c48180e49b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 6644798,
            "upload_time": "2024-12-22T02:38:23",
            "upload_time_iso_8601": "2024-12-22T02:38:23.161201Z",
            "url": "https://files.pythonhosted.org/packages/78/2d/3fb6b4e17fcbe7ca53f61e9305dfd9ff0ec85b7884c643d8db3c87a20fb3/pyoxigraph-0.4.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5c9ba9b5ab5a30eca2819fd67ca0eac998bbfd09fd9349b9bcf59f96fc86a16",
                "md5": "276b3f26cf9c21121ec0441174832d10",
                "sha256": "df723ccedd03a76c1f4816b6e616585f4386bbfc3b897980e1d3bb96d8e2e5c0"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "276b3f26cf9c21121ec0441174832d10",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 7798169,
            "upload_time": "2024-12-22T02:38:25",
            "upload_time_iso_8601": "2024-12-22T02:38:25.966827Z",
            "url": "https://files.pythonhosted.org/packages/f5/c9/ba9b5ab5a30eca2819fd67ca0eac998bbfd09fd9349b9bcf59f96fc86a16/pyoxigraph-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b57dc3549b739bbe8fa006cc75168bb7fb93b586de803802cf7a2529e59f4660",
                "md5": "14bc409679b53dacda7c6f468b486705",
                "sha256": "8aee14bee97f42dd97cee9f4d7a56ee2b0f5c030a820b221ea2e7ea4f617d74d"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14bc409679b53dacda7c6f468b486705",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 6643691,
            "upload_time": "2024-12-22T02:38:29",
            "upload_time_iso_8601": "2024-12-22T02:38:29.697604Z",
            "url": "https://files.pythonhosted.org/packages/b5/7d/c3549b739bbe8fa006cc75168bb7fb93b586de803802cf7a2529e59f4660/pyoxigraph-0.4.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6b9fdb92a7f448282e11f1da15995cbf06f5ad500cf841d61eff0298b778613",
                "md5": "e745c015af6cd08b3972281e6c55e78f",
                "sha256": "8d4b9323a23d74685fd696f5b3eb586819e60f84314c6f4dd083801e6efdd216"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e745c015af6cd08b3972281e6c55e78f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 7793983,
            "upload_time": "2024-12-22T02:38:32",
            "upload_time_iso_8601": "2024-12-22T02:38:32.869374Z",
            "url": "https://files.pythonhosted.org/packages/d6/b9/fdb92a7f448282e11f1da15995cbf06f5ad500cf841d61eff0298b778613/pyoxigraph-0.4.5-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e35b843a36da861f490faabd44182d581861f59b6e6c3790d243c71842953447",
                "md5": "7fb3b95db1579b5e1569d82c2bad5329",
                "sha256": "dc5ea07f8febd294af8bb36e4bfe1364b6fda598b573ea887a007f23fea5cc96"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp38-abi3-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl",
            "has_sig": false,
            "md5_digest": "7fb3b95db1579b5e1569d82c2bad5329",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 9977518,
            "upload_time": "2024-12-22T02:38:36",
            "upload_time_iso_8601": "2024-12-22T02:38:36.977290Z",
            "url": "https://files.pythonhosted.org/packages/e3/5b/843a36da861f490faabd44182d581861f59b6e6c3790d243c71842953447/pyoxigraph-0.4.5-cp38-abi3-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0db9df583f8c8bffb2f1b049bde4d2deade318f25f65c3f89b01b28c7f67f21a",
                "md5": "cd0cb84fc72fe2a77be64a07d398f559",
                "sha256": "0bf42fe82726cdafeb983ac4189069568c50fa0302bbbefa93df10b12aaaec61"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp38-abi3-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd0cb84fc72fe2a77be64a07d398f559",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5248681,
            "upload_time": "2024-12-22T02:38:40",
            "upload_time_iso_8601": "2024-12-22T02:38:40.033897Z",
            "url": "https://files.pythonhosted.org/packages/0d/b9/df583f8c8bffb2f1b049bde4d2deade318f25f65c3f89b01b28c7f67f21a/pyoxigraph-0.4.5-cp38-abi3-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd5ef60676c89ce387fe4d6bed7db032f131520b7e3944944e6c9b4492d19484",
                "md5": "428e1f319ed2332756cbbaea213a8337",
                "sha256": "429277bc8ec486013a7124c6bed9125c077623a07cc963da551e90dcb07b2bfa"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp38-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "428e1f319ed2332756cbbaea213a8337",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4741366,
            "upload_time": "2024-12-22T02:38:42",
            "upload_time_iso_8601": "2024-12-22T02:38:42.655991Z",
            "url": "https://files.pythonhosted.org/packages/bd/5e/f60676c89ce387fe4d6bed7db032f131520b7e3944944e6c9b4492d19484/pyoxigraph-0.4.5-cp38-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bcdc1e1e9ea6ca5215638f93229ca0827e8f1f4b1fef328b1b7751cd3d9fe04",
                "md5": "8b5438c8fac6ea2ffe8978123f31a86e",
                "sha256": "885eba4256af3e4d329fbf0e2f123182eccf1559af0afcbc3a64a7d809fc016f"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b5438c8fac6ea2ffe8978123f31a86e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 6650791,
            "upload_time": "2024-12-22T02:38:46",
            "upload_time_iso_8601": "2024-12-22T02:38:46.075467Z",
            "url": "https://files.pythonhosted.org/packages/8b/cd/c1e1e9ea6ca5215638f93229ca0827e8f1f4b1fef328b1b7751cd3d9fe04/pyoxigraph-0.4.5-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e0a42869a0e1fb693ac13a7d3e3a4a43834c3967d2adc1c78e55590084a71fd",
                "md5": "a018f2c49acdd3a7538fd84aea66c885",
                "sha256": "b5453e7a54c084472981ab198d8a80235c73cd8481c597ccca118c22bf30958d"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp38-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a018f2c49acdd3a7538fd84aea66c885",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 7802274,
            "upload_time": "2024-12-22T02:38:48",
            "upload_time_iso_8601": "2024-12-22T02:38:48.777026Z",
            "url": "https://files.pythonhosted.org/packages/9e/0a/42869a0e1fb693ac13a7d3e3a4a43834c3967d2adc1c78e55590084a71fd/pyoxigraph-0.4.5-cp38-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd1ec3fa0157b196dd257ef61de79c900049170cb9402bd06d35373086f43922",
                "md5": "85ba876cb4441fd733a321b511229c73",
                "sha256": "65b5788dd0a5cf45b0771ec39f26fb7c9c13ef978a9482c8252ce68825f84f40"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp38-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "85ba876cb4441fd733a321b511229c73",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4493795,
            "upload_time": "2024-12-22T02:38:51",
            "upload_time_iso_8601": "2024-12-22T02:38:51.358945Z",
            "url": "https://files.pythonhosted.org/packages/cd/1e/c3fa0157b196dd257ef61de79c900049170cb9402bd06d35373086f43922/pyoxigraph-0.4.5-cp38-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f74446adf6d290aabf48658d0ff2fc5939aac22c3890333d61597c451dad119f",
                "md5": "16b930dac17e23cae85ae94e6c908420",
                "sha256": "3585d44864944116b1fb26c95f6b5ccc410babb54c4f7754b77a3b743f35bc11"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "16b930dac17e23cae85ae94e6c908420",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 6653274,
            "upload_time": "2024-12-22T02:38:54",
            "upload_time_iso_8601": "2024-12-22T02:38:54.820947Z",
            "url": "https://files.pythonhosted.org/packages/f7/44/46adf6d290aabf48658d0ff2fc5939aac22c3890333d61597c451dad119f/pyoxigraph-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96a293d4fe6b6807dcde8a46ba7f63cb21f6bf2fbad61d7a8c1fa24697791690",
                "md5": "495a56b4cdaf7d22a3017f068a0d05c6",
                "sha256": "1ca969809bb62eca96811b181299c71a316a36867dbc342a4631a6c0c1dd601e"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "495a56b4cdaf7d22a3017f068a0d05c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 7803054,
            "upload_time": "2024-12-22T02:38:57",
            "upload_time_iso_8601": "2024-12-22T02:38:57.034427Z",
            "url": "https://files.pythonhosted.org/packages/96/a2/93d4fe6b6807dcde8a46ba7f63cb21f6bf2fbad61d7a8c1fa24697791690/pyoxigraph-0.4.5-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5e901d24ba21f48a6e441cdb62614b19c93efc71d25ddf6a22403e784544c92",
                "md5": "113291454af72227d960c12b0aa7b0f8",
                "sha256": "555015d87ecc99a5c1d2401c23b506ce9621024a6aa19f39841bf9f3f722b435"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "113291454af72227d960c12b0aa7b0f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 6652773,
            "upload_time": "2024-12-22T02:39:00",
            "upload_time_iso_8601": "2024-12-22T02:39:00.657788Z",
            "url": "https://files.pythonhosted.org/packages/d5/e9/01d24ba21f48a6e441cdb62614b19c93efc71d25ddf6a22403e784544c92/pyoxigraph-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bfc77972548d70a2150fbf0924829bffdb58e746330dd0e28921fc93a791e82",
                "md5": "f8c55b3ef3001e1b0e6d28df485bdcbd",
                "sha256": "9f4e3f0d9df57f542ea4ac12d6e41aafb7c7a62a8daec4852e660a5b378e1a13"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8c55b3ef3001e1b0e6d28df485bdcbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 7804511,
            "upload_time": "2024-12-22T02:39:04",
            "upload_time_iso_8601": "2024-12-22T02:39:04.083606Z",
            "url": "https://files.pythonhosted.org/packages/2b/fc/77972548d70a2150fbf0924829bffdb58e746330dd0e28921fc93a791e82/pyoxigraph-0.4.5-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3ac5c6d545476c38ec9bdf5bc5dc926da6d92c57fa87f2a0e9ed8b019f55d1b",
                "md5": "dcd8f8d72346cf1e988a861ca43f3678",
                "sha256": "01744a8a65c564bb39e5dc1df86e01b1aba3c270d9f06e6a29cbccb7e490883b"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dcd8f8d72346cf1e988a861ca43f3678",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 6652084,
            "upload_time": "2024-12-22T02:39:07",
            "upload_time_iso_8601": "2024-12-22T02:39:07.271656Z",
            "url": "https://files.pythonhosted.org/packages/b3/ac/5c6d545476c38ec9bdf5bc5dc926da6d92c57fa87f2a0e9ed8b019f55d1b/pyoxigraph-0.4.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "096dc9b7397d172ff77059812b56636e39c3506409eb65cb2507b87d393918c1",
                "md5": "f7a8f9e357ee527aab851d2faa74cb4a",
                "sha256": "6cdc36e17da36a3b05943c29ddab09ce3317ec594d6c3712dbf3cfc13070cf56"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7a8f9e357ee527aab851d2faa74cb4a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 6652076,
            "upload_time": "2024-12-22T02:39:09",
            "upload_time_iso_8601": "2024-12-22T02:39:09.511801Z",
            "url": "https://files.pythonhosted.org/packages/09/6d/c9b7397d172ff77059812b56636e39c3506409eb65cb2507b87d393918c1/pyoxigraph-0.4.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cee2249a5cfc1660bcb0cfbe4e624ca4d6754a0cd69ef4d88e28fcac22314b00",
                "md5": "b89ee0ab267973c82bcb4ef0c4dca609",
                "sha256": "75c7864e092221e02b6cb510323e8169a2e8557f2b07d465e116530b0a832206"
            },
            "downloads": -1,
            "filename": "pyoxigraph-0.4.5.tar.gz",
            "has_sig": false,
            "md5_digest": "b89ee0ab267973c82bcb4ef0c4dca609",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 4648331,
            "upload_time": "2024-12-22T02:39:12",
            "upload_time_iso_8601": "2024-12-22T02:39:12.152143Z",
            "url": "https://files.pythonhosted.org/packages/ce/e2/249a5cfc1660bcb0cfbe4e624ca4d6754a0cd69ef4d88e28fcac22314b00/pyoxigraph-0.4.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-22 02:39:12",
    "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: 0.39608s