pyogrio


Namepyogrio JSON
Version 0.11.1 PyPI version JSON
download
home_pageNone
SummaryVectorized spatial vector file format I/O using GDAL/OGR
upload_time2025-08-02 20:19:20
maintainerpyogrio contributors
docs_urlNone
authorpyogrio contributors
requires_python>=3.9
licenseMIT License Copyright (c) 2020-2024 Brendan C. Ward and pyogrio contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pyogrio - bulk-oriented spatial vector file I/O using GDAL/OGR

Pyogrio provides fast, bulk-oriented read and write access to 
[GDAL/OGR](https://gdal.org/en/latest/drivers/vector/index.html) vector data
sources, such as ESRI Shapefile, GeoPackage, GeoJSON, and several others.
Vector data sources typically have geometries, such as points, lines, or
polygons, and associated records with potentially many columns worth of data.

The typical use is to read or write these data sources to/from
[GeoPandas](https://github.com/geopandas/geopandas) `GeoDataFrames`. Because
the geometry column is optional, reading or writing only non-spatial data is
also possible. Hence, GeoPackage attribute tables, DBF files, or CSV files are
also supported.

Pyogrio is fast because it uses pre-compiled bindings for GDAL/OGR to read and
write the data records in bulk. This approach avoids multiple steps of
converting to and from Python data types within Python, so performance becomes
primarily limited by the underlying I/O speed of data source drivers in
GDAL/OGR.

We have seen \>5-10x speedups reading files and \>5-20x speedups writing files
compared to using row-per-row approaches (e.g. Fiona).

Read the documentation for more information:
[https://pyogrio.readthedocs.io](https://pyogrio.readthedocs.io/en/latest/).

## Requirements

Supports Python 3.9 - 3.13 and GDAL 3.4.x - 3.9.x.

Reading to GeoDataFrames requires `geopandas>=0.12` with `shapely>=2`.

Additionally, installing `pyarrow` in combination with GDAL 3.6+ enables
a further speed-up when specifying `use_arrow=True`.

## Installation

Pyogrio is currently available on
[conda-forge](https://anaconda.org/conda-forge/pyogrio)
and [PyPI](https://pypi.org/project/pyogrio/)
for Linux, MacOS, and Windows.

Please read the
[installation documentation](https://pyogrio.readthedocs.io/en/latest/install.html)
for more information.

## Supported vector formats

Pyogrio supports most common vector data source formats (provided they are also
supported by GDAL/OGR), including ESRI Shapefile, GeoPackage, GeoJSON, and
FlatGeobuf.

Please see the [list of supported formats](https://pyogrio.readthedocs.io/en/latest/supported_formats.html)
for more information.

## Getting started

Please read the [introduction](https://pyogrio.readthedocs.io/en/latest/supported_formats.html)
for more information and examples to get started using Pyogrio.

You can also check out the [API documentation](https://pyogrio.readthedocs.io/en/latest/api.html)
for full details on using the API.

## Credits

This project is made possible by the tremendous efforts of the GDAL, Fiona, and
Geopandas communities.

-   Core I/O methods and supporting functions adapted from [Fiona](https://github.com/Toblerity/Fiona)
-   Inspired by [Fiona PR](https://github.com/Toblerity/Fiona/pull/540/files)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyogrio",
    "maintainer": "pyogrio contributors",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "pyogrio contributors",
    "author_email": "\"Brendan C. Ward\" <bcward@astutespruce.com>",
    "download_url": "https://files.pythonhosted.org/packages/bf/1d/ae0340237207664e2da1b77f2cdbcb5f81fd0fc9f3200a48ca993a5e12ef/pyogrio-0.11.1.tar.gz",
    "platform": null,
    "description": "# pyogrio - bulk-oriented spatial vector file I/O using GDAL/OGR\n\nPyogrio provides fast, bulk-oriented read and write access to \n[GDAL/OGR](https://gdal.org/en/latest/drivers/vector/index.html) vector data\nsources, such as ESRI Shapefile, GeoPackage, GeoJSON, and several others.\nVector data sources typically have geometries, such as points, lines, or\npolygons, and associated records with potentially many columns worth of data.\n\nThe typical use is to read or write these data sources to/from\n[GeoPandas](https://github.com/geopandas/geopandas) `GeoDataFrames`. Because\nthe geometry column is optional, reading or writing only non-spatial data is\nalso possible. Hence, GeoPackage attribute tables, DBF files, or CSV files are\nalso supported.\n\nPyogrio is fast because it uses pre-compiled bindings for GDAL/OGR to read and\nwrite the data records in bulk. This approach avoids multiple steps of\nconverting to and from Python data types within Python, so performance becomes\nprimarily limited by the underlying I/O speed of data source drivers in\nGDAL/OGR.\n\nWe have seen \\>5-10x speedups reading files and \\>5-20x speedups writing files\ncompared to using row-per-row approaches (e.g. Fiona).\n\nRead the documentation for more information:\n[https://pyogrio.readthedocs.io](https://pyogrio.readthedocs.io/en/latest/).\n\n## Requirements\n\nSupports Python 3.9 - 3.13 and GDAL 3.4.x - 3.9.x.\n\nReading to GeoDataFrames requires `geopandas>=0.12` with `shapely>=2`.\n\nAdditionally, installing `pyarrow` in combination with GDAL 3.6+ enables\na further speed-up when specifying `use_arrow=True`.\n\n## Installation\n\nPyogrio is currently available on\n[conda-forge](https://anaconda.org/conda-forge/pyogrio)\nand [PyPI](https://pypi.org/project/pyogrio/)\nfor Linux, MacOS, and Windows.\n\nPlease read the\n[installation documentation](https://pyogrio.readthedocs.io/en/latest/install.html)\nfor more information.\n\n## Supported vector formats\n\nPyogrio supports most common vector data source formats (provided they are also\nsupported by GDAL/OGR), including ESRI Shapefile, GeoPackage, GeoJSON, and\nFlatGeobuf.\n\nPlease see the [list of supported formats](https://pyogrio.readthedocs.io/en/latest/supported_formats.html)\nfor more information.\n\n## Getting started\n\nPlease read the [introduction](https://pyogrio.readthedocs.io/en/latest/supported_formats.html)\nfor more information and examples to get started using Pyogrio.\n\nYou can also check out the [API documentation](https://pyogrio.readthedocs.io/en/latest/api.html)\nfor full details on using the API.\n\n## Credits\n\nThis project is made possible by the tremendous efforts of the GDAL, Fiona, and\nGeopandas communities.\n\n-   Core I/O methods and supporting functions adapted from [Fiona](https://github.com/Toblerity/Fiona)\n-   Inspired by [Fiona PR](https://github.com/Toblerity/Fiona/pull/540/files)\n",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2020-2024 Brendan C. Ward and pyogrio contributors\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.\n        ",
    "summary": "Vectorized spatial vector file format I/O using GDAL/OGR",
    "version": "0.11.1",
    "project_urls": {
        "Home": "https://pyogrio.readthedocs.io/",
        "Repository": "https://github.com/geopandas/pyogrio"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6237c4d114514dd5508356f67601320cdcb8743800a8bdd1f3fe6bfa4021a2f0",
                "md5": "5fb060d16349d94c04fbb19d4b27f196",
                "sha256": "838ead7df8388d938ce848354e384ae5aa46fe7c5f74f9da2d58f064bda053f7"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp310-cp310-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5fb060d16349d94c04fbb19d4b27f196",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 19455667,
            "upload_time": "2025-08-02T20:18:02",
            "upload_time_iso_8601": "2025-08-02T20:18:02.931907Z",
            "url": "https://files.pythonhosted.org/packages/62/37/c4d114514dd5508356f67601320cdcb8743800a8bdd1f3fe6bfa4021a2f0/pyogrio-0.11.1-cp310-cp310-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4d8929745fb3dc0f00ff8d0202f69cfe8c2f42b9b99b1ded601a17a71904463",
                "md5": "57677ca8d72e2c3ea5cce0fc92bacc49",
                "sha256": "6f51aa9fc3632e6dcb3dd5562b4a56a3a31850c3f630aef3587d5889a1f65275"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp310-cp310-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57677ca8d72e2c3ea5cce0fc92bacc49",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 20642769,
            "upload_time": "2025-08-02T20:18:05",
            "upload_time_iso_8601": "2025-08-02T20:18:05.413258Z",
            "url": "https://files.pythonhosted.org/packages/a4/d8/929745fb3dc0f00ff8d0202f69cfe8c2f42b9b99b1ded601a17a71904463/pyogrio-0.11.1-cp310-cp310-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c59bc2b51051be2152c7dd278ead47b5221912090c5802eadc7966c6005704b0",
                "md5": "fc3934d70b2a12097cbf552ed8a19d7e",
                "sha256": "4982107653ce30de395678b50a1ee00299a4cfcb41043778f1b66c5911b8adbe"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc3934d70b2a12097cbf552ed8a19d7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 26845241,
            "upload_time": "2025-08-02T20:18:07",
            "upload_time_iso_8601": "2025-08-02T20:18:07.841998Z",
            "url": "https://files.pythonhosted.org/packages/c5/9b/c2b51051be2152c7dd278ead47b5221912090c5802eadc7966c6005704b0/pyogrio-0.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d7ccea8b75f409670ed2526dbf0cf74fd5efd2f7536ada6459646371989187b",
                "md5": "42e115e6f11226cc8f9402688cc32945",
                "sha256": "7b20ffbf72013d464012d8f0f69322459a6528bef08c85f85b8a42b056f730b0"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "42e115e6f11226cc8f9402688cc32945",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 26376340,
            "upload_time": "2025-08-02T20:18:10",
            "upload_time_iso_8601": "2025-08-02T20:18:10.402759Z",
            "url": "https://files.pythonhosted.org/packages/7d/7c/cea8b75f409670ed2526dbf0cf74fd5efd2f7536ada6459646371989187b/pyogrio-0.11.1-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15877a180f3fadb9a388312e789feee023cd20d1d589724ef093ebee4d784b9a",
                "md5": "29453aa3887b18d5ea63916bcc04161f",
                "sha256": "5b8d60ead740b366cdc2f3b076d21349e5a5d4b9a0e6726922c5a031206b93b2"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29453aa3887b18d5ea63916bcc04161f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 27519685,
            "upload_time": "2025-08-02T20:18:13",
            "upload_time_iso_8601": "2025-08-02T20:18:13.159277Z",
            "url": "https://files.pythonhosted.org/packages/15/87/7a180f3fadb9a388312e789feee023cd20d1d589724ef093ebee4d784b9a/pyogrio-0.11.1-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f515fb6ed944f76aff08a98618f1ff184ad4dc3eb026b4a74d7e5cc01125be43",
                "md5": "31a8558f30ddeebead3af2bdf3927e61",
                "sha256": "1948027b2809f2248f69b069ab9833d56b53658f182a3b418d12d3d3eb9959d7"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "31a8558f30ddeebead3af2bdf3927e61",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 19224975,
            "upload_time": "2025-08-02T20:18:15",
            "upload_time_iso_8601": "2025-08-02T20:18:15.844403Z",
            "url": "https://files.pythonhosted.org/packages/f5/15/fb6ed944f76aff08a98618f1ff184ad4dc3eb026b4a74d7e5cc01125be43/pyogrio-0.11.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d08150441f029609bcb883ee2738bdee3f81a998a11e4052b6ad0ef0ae4c0ae5",
                "md5": "7ac14dfd911481a40997ed645263734a",
                "sha256": "d36162ddc1a309bb941a3cfb550b8f88c862c67ef2f52df6460100e5e958bbc6"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp311-cp311-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7ac14dfd911481a40997ed645263734a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 19459279,
            "upload_time": "2025-08-02T20:18:18",
            "upload_time_iso_8601": "2025-08-02T20:18:18.955898Z",
            "url": "https://files.pythonhosted.org/packages/d0/81/50441f029609bcb883ee2738bdee3f81a998a11e4052b6ad0ef0ae4c0ae5/pyogrio-0.11.1-cp311-cp311-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d4aa3a2fae13e42ee98574b18591ddb66bca88bc1fa812c017437b42c85569f",
                "md5": "af14de161aafa1b5f25c98a80a679b7d",
                "sha256": "845c78d5e7c9ec1c7d00250c07e144e5fe504fdb4ccdc141d9413f85b8c55c91"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp311-cp311-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af14de161aafa1b5f25c98a80a679b7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 20646364,
            "upload_time": "2025-08-02T20:18:21",
            "upload_time_iso_8601": "2025-08-02T20:18:21.171959Z",
            "url": "https://files.pythonhosted.org/packages/0d/4a/a3a2fae13e42ee98574b18591ddb66bca88bc1fa812c017437b42c85569f/pyogrio-0.11.1-cp311-cp311-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7df21dd5795f8cccf8f97d5ac7f28fee31fc1afc5f6bce9fab2ac4486ed3af44",
                "md5": "33dcc0f5c4889a86baab1c980cba95c9",
                "sha256": "50aa869509f189fa1bff4d90d2d4c7860b963e693af85f2957646306e882b631"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33dcc0f5c4889a86baab1c980cba95c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 26999659,
            "upload_time": "2025-08-02T20:18:25",
            "upload_time_iso_8601": "2025-08-02T20:18:25.482375Z",
            "url": "https://files.pythonhosted.org/packages/7d/f2/1dd5795f8cccf8f97d5ac7f28fee31fc1afc5f6bce9fab2ac4486ed3af44/pyogrio-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eaef4f8d61afb6798edde8bd6d2721032e868ff78a25395d9512f7e5e50b23c4",
                "md5": "d4503baa786345722c50c6b211456119",
                "sha256": "dd0f44dd2d849d32aea3f73647c74083996917e446479645bf93de6656160f2d"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d4503baa786345722c50c6b211456119",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 26523036,
            "upload_time": "2025-08-02T20:18:28",
            "upload_time_iso_8601": "2025-08-02T20:18:28.761920Z",
            "url": "https://files.pythonhosted.org/packages/ea/ef/4f8d61afb6798edde8bd6d2721032e868ff78a25395d9512f7e5e50b23c4/pyogrio-0.11.1-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e79981d9a441ac7709407750f359813889b9a3f6076999cb9ae8893d5ba7c707",
                "md5": "a13f376008204e1d65022331cd5ef757",
                "sha256": "36b910d4037694b2935b5b1c1eb757dcc2906dca05cb2992cbdaf1291b54ff97"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a13f376008204e1d65022331cd5ef757",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 27678041,
            "upload_time": "2025-08-02T20:18:31",
            "upload_time_iso_8601": "2025-08-02T20:18:31.103864Z",
            "url": "https://files.pythonhosted.org/packages/e7/99/81d9a441ac7709407750f359813889b9a3f6076999cb9ae8893d5ba7c707/pyogrio-0.11.1-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "744ea5d00c30e5ca3f4133a425fe41531b219139ad4451ea8edc3520f221f9dd",
                "md5": "00f5a693f98dd51532e234b93fd72948",
                "sha256": "cb744097f302f19dcc5c93ee5e9cfd707b864c9a418e399f0908406a60003728"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "00f5a693f98dd51532e234b93fd72948",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 19226619,
            "upload_time": "2025-08-02T20:18:34",
            "upload_time_iso_8601": "2025-08-02T20:18:34.261262Z",
            "url": "https://files.pythonhosted.org/packages/74/4e/a5d00c30e5ca3f4133a425fe41531b219139ad4451ea8edc3520f221f9dd/pyogrio-0.11.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72d32ba967ca4255cdfa130a6d8b437826488567b4bc1bb417c442bb43d62611",
                "md5": "d54b579e7639a875563f66c873ecd7c3",
                "sha256": "f186456ebe5d5f61e7bd883bad25a59d43d6304178d4f0d3e03273f42b40a4cc"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp312-cp312-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d54b579e7639a875563f66c873ecd7c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 19450110,
            "upload_time": "2025-08-02T20:18:36",
            "upload_time_iso_8601": "2025-08-02T20:18:36.643292Z",
            "url": "https://files.pythonhosted.org/packages/72/d3/2ba967ca4255cdfa130a6d8b437826488567b4bc1bb417c442bb43d62611/pyogrio-0.11.1-cp312-cp312-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ae13bc29ae71d24a91cf91f7413541e50acb7de2ce609587168ce2f4b405d3b",
                "md5": "5bbe0e52589c592f22cb0dfb7bd034f6",
                "sha256": "b8a199bc0e421eac444af96942b7553268e43d0cadf30d0d6d41017de05b7e9e"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp312-cp312-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5bbe0e52589c592f22cb0dfb7bd034f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 20635348,
            "upload_time": "2025-08-02T20:18:38",
            "upload_time_iso_8601": "2025-08-02T20:18:38.714054Z",
            "url": "https://files.pythonhosted.org/packages/5a/e1/3bc29ae71d24a91cf91f7413541e50acb7de2ce609587168ce2f4b405d3b/pyogrio-0.11.1-cp312-cp312-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8cb2ec453e544370a90b4e8b2c6afa72501963ddc33afe883f0e5ba34af6a80f",
                "md5": "1f3b54137aa014f3d2266022c232662c",
                "sha256": "afce80b4b32f043fcf76a50e8572e3ad8d9d3e6abbbfa6137f0975ba55c4eeb8"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1f3b54137aa014f3d2266022c232662c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 26980190,
            "upload_time": "2025-08-02T20:18:41",
            "upload_time_iso_8601": "2025-08-02T20:18:41.197273Z",
            "url": "https://files.pythonhosted.org/packages/8c/b2/ec453e544370a90b4e8b2c6afa72501963ddc33afe883f0e5ba34af6a80f/pyogrio-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b1f6337f122b58f697f807bf9093b606b33b3ef52fe06a21e88d8a9230844cc3",
                "md5": "ea6f65e12f33e5d81cd9c6f25b56acc9",
                "sha256": "0cfd79caf0b8cb7bbf30b419dff7f21509169efcf4d431172c61b44fe1029dba"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ea6f65e12f33e5d81cd9c6f25b56acc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 26474852,
            "upload_time": "2025-08-02T20:18:43",
            "upload_time_iso_8601": "2025-08-02T20:18:43.740746Z",
            "url": "https://files.pythonhosted.org/packages/b1/f6/337f122b58f697f807bf9093b606b33b3ef52fe06a21e88d8a9230844cc3/pyogrio-0.11.1-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e60f8193a4a879f1284d693793e59a2e185c8fd3c47cb562b0e5daf7289997ea",
                "md5": "247ba44c590afadd6bc07796d5731167",
                "sha256": "ab3aa6dbf2441d2407ce052233f2966324a3cff752bd43d99e4c779ea54e0a16"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "247ba44c590afadd6bc07796d5731167",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 27659721,
            "upload_time": "2025-08-02T20:18:46",
            "upload_time_iso_8601": "2025-08-02T20:18:46.398079Z",
            "url": "https://files.pythonhosted.org/packages/e6/0f/8193a4a879f1284d693793e59a2e185c8fd3c47cb562b0e5daf7289997ea/pyogrio-0.11.1-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f7d3e818625a435fcc196ea441a6ca8495f87dd1f1eebeb95760eb401ea425d",
                "md5": "48cf1bffbd8ed4072713f9b74e650576",
                "sha256": "cd10035eb3b5e5a43bdafbd777339d2274e9b75972658364f0ce31c4d3400d1e"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "48cf1bffbd8ed4072713f9b74e650576",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 19219350,
            "upload_time": "2025-08-02T20:18:48",
            "upload_time_iso_8601": "2025-08-02T20:18:48.866872Z",
            "url": "https://files.pythonhosted.org/packages/5f/7d/3e818625a435fcc196ea441a6ca8495f87dd1f1eebeb95760eb401ea425d/pyogrio-0.11.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f26886328e36d010ee565ce0c65cdf9b830afcb1fb5972f537fe1cc561a49247",
                "md5": "e395f6ecec978daae6f0af3deb1c5b21",
                "sha256": "3b368c597357ff262f3b46591ded86409462ee594ef42556708b090d121f873c"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp313-cp313-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e395f6ecec978daae6f0af3deb1c5b21",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 19445347,
            "upload_time": "2025-08-02T20:18:51",
            "upload_time_iso_8601": "2025-08-02T20:18:51.088372Z",
            "url": "https://files.pythonhosted.org/packages/f2/68/86328e36d010ee565ce0c65cdf9b830afcb1fb5972f537fe1cc561a49247/pyogrio-0.11.1-cp313-cp313-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20bc34bd87641fc2ecc6d842d6d758bbaa8d58aea4d36aa6a1111cbc9d450e74",
                "md5": "6969f9a79cf1960096ff4f8fb2239348",
                "sha256": "1cb82cfd3493f32396e9c3f9255e17885610f62a323870947f4e04dd59bc3595"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp313-cp313-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6969f9a79cf1960096ff4f8fb2239348",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 20630594,
            "upload_time": "2025-08-02T20:18:53",
            "upload_time_iso_8601": "2025-08-02T20:18:53.176851Z",
            "url": "https://files.pythonhosted.org/packages/20/bc/34bd87641fc2ecc6d842d6d758bbaa8d58aea4d36aa6a1111cbc9d450e74/pyogrio-0.11.1-cp313-cp313-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "689a41b72ffa3e21354eb9afbbae855c86b94dbf06b22e89c16a807cc8b22bd2",
                "md5": "4c32bd1e0f85126aa6402c97d9176aae",
                "sha256": "5d61aae22e67030fd354f03e21c6462537bf56160134dd8663709335a5a46b28"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c32bd1e0f85126aa6402c97d9176aae",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 26929440,
            "upload_time": "2025-08-02T20:18:55",
            "upload_time_iso_8601": "2025-08-02T20:18:55.614836Z",
            "url": "https://files.pythonhosted.org/packages/68/9a/41b72ffa3e21354eb9afbbae855c86b94dbf06b22e89c16a807cc8b22bd2/pyogrio-0.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42ddc968c49a2e9b7c219eac0cc504241c21ef789f1f1b34d33780508cea9764",
                "md5": "7ea467f2b259ded23fdb43ec6be3885f",
                "sha256": "76150a3cd787c31628191c7abc6f8c796660125852fb65ae15dd7be1e9196816"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp313-cp313-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7ea467f2b259ded23fdb43ec6be3885f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 26433178,
            "upload_time": "2025-08-02T20:18:58",
            "upload_time_iso_8601": "2025-08-02T20:18:58.274905Z",
            "url": "https://files.pythonhosted.org/packages/42/dd/c968c49a2e9b7c219eac0cc504241c21ef789f1f1b34d33780508cea9764/pyogrio-0.11.1-cp313-cp313-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89a979eca15094f7806a3adcf0bb976ab4346b0fb1bd87956c1933df44546c14",
                "md5": "19aa5e23c569b02ffc459977d675ccd4",
                "sha256": "e929452f6988c0365dd32ff2485d9488160a709fee28743abbbc18d663169ed0"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19aa5e23c569b02ffc459977d675ccd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 27616835,
            "upload_time": "2025-08-02T20:19:01",
            "upload_time_iso_8601": "2025-08-02T20:19:01.112388Z",
            "url": "https://files.pythonhosted.org/packages/89/a9/79eca15094f7806a3adcf0bb976ab4346b0fb1bd87956c1933df44546c14/pyogrio-0.11.1-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2bf37722bc81e9eee39b528c1cbc6289a26d2d3b1b187491ed8493457d6a3a0e",
                "md5": "01130be7c09f16f98b4a0042f4dd12f0",
                "sha256": "d6d56862b89a05fccd7211171c88806b6ec9b5effb79bf807cce0a57c1f2a606"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "01130be7c09f16f98b4a0042f4dd12f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 19219088,
            "upload_time": "2025-08-02T20:19:03",
            "upload_time_iso_8601": "2025-08-02T20:19:03.732619Z",
            "url": "https://files.pythonhosted.org/packages/2b/f3/7722bc81e9eee39b528c1cbc6289a26d2d3b1b187491ed8493457d6a3a0e/pyogrio-0.11.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "530fc45f606ead4acd8797aeed9dd6434c68ddb47afccddd9f3910b412d654da",
                "md5": "f7ab9cabf1c0f6fcc7a14233677d939d",
                "sha256": "9ae8efbe4f9f215b2321655f988be8bb133829037dbefebc2643f52da4e7782a"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp39-cp39-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f7ab9cabf1c0f6fcc7a14233677d939d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 19456631,
            "upload_time": "2025-08-02T20:19:05",
            "upload_time_iso_8601": "2025-08-02T20:19:05.860997Z",
            "url": "https://files.pythonhosted.org/packages/53/0f/c45f606ead4acd8797aeed9dd6434c68ddb47afccddd9f3910b412d654da/pyogrio-0.11.1-cp39-cp39-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4059c94a831ba24f448529e9a4a8334b8fffbaa77e47339eba00d713f2d87df0",
                "md5": "4831a8993bac7810539ae228f73b2549",
                "sha256": "7cbbc24a785cca733b80c96e8e10f7c316df295786ac9900c145e2b12f828050"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp39-cp39-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4831a8993bac7810539ae228f73b2549",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 20644080,
            "upload_time": "2025-08-02T20:19:08",
            "upload_time_iso_8601": "2025-08-02T20:19:08.232068Z",
            "url": "https://files.pythonhosted.org/packages/40/59/c94a831ba24f448529e9a4a8334b8fffbaa77e47339eba00d713f2d87df0/pyogrio-0.11.1-cp39-cp39-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62c7657f568826166b8ac5d51d3b29df60e48cbb5fde833fae9f24776188bd2b",
                "md5": "6ebcc0db08e0f6f9fff8b894c886adf0",
                "sha256": "5e924de96f1a436567fb57cd94b02b2572c066663c5b6431d2827993d8f3a646"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ebcc0db08e0f6f9fff8b894c886adf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 26825034,
            "upload_time": "2025-08-02T20:19:10",
            "upload_time_iso_8601": "2025-08-02T20:19:10.489032Z",
            "url": "https://files.pythonhosted.org/packages/62/c7/657f568826166b8ac5d51d3b29df60e48cbb5fde833fae9f24776188bd2b/pyogrio-0.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2eebe1fdeaa243683dbf9fe8db177416f9a87868aae9b0509304f1f6ef159906",
                "md5": "296dbd6c40a2e19d29079beb88801e3f",
                "sha256": "580001084562b55059f161b8c8f2c15135a4523256a3b910ea3a58cd8ffb6c4f"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "296dbd6c40a2e19d29079beb88801e3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 26352261,
            "upload_time": "2025-08-02T20:19:13",
            "upload_time_iso_8601": "2025-08-02T20:19:13.083958Z",
            "url": "https://files.pythonhosted.org/packages/2e/eb/e1fdeaa243683dbf9fe8db177416f9a87868aae9b0509304f1f6ef159906/pyogrio-0.11.1-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88f60df5c6f370752acb9a649a5c8ebb626952fd7fc5cfc0da215181dbbc3601",
                "md5": "956a53fee32ee5591e42879ad1bcb4e7",
                "sha256": "56d2315f28cdbde98c23f719c85a0f0ee1953a1eae617505c7349c660847dbf5"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "956a53fee32ee5591e42879ad1bcb4e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 27504419,
            "upload_time": "2025-08-02T20:19:15",
            "upload_time_iso_8601": "2025-08-02T20:19:15.999254Z",
            "url": "https://files.pythonhosted.org/packages/88/f6/0df5c6f370752acb9a649a5c8ebb626952fd7fc5cfc0da215181dbbc3601/pyogrio-0.11.1-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8aa8594eb0fedd53901ee26ca6bfdbe3f723f0035c727fb4ce04c9b356fd58f7",
                "md5": "fa7fd68cf6cc20640faeabc368096be0",
                "sha256": "db372785b2a32ad6006477366c4c07285d98f7a7e6d356b2eba15a4fbaaa167f"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fa7fd68cf6cc20640faeabc368096be0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 19226953,
            "upload_time": "2025-08-02T20:19:18",
            "upload_time_iso_8601": "2025-08-02T20:19:18.241406Z",
            "url": "https://files.pythonhosted.org/packages/8a/a8/594eb0fedd53901ee26ca6bfdbe3f723f0035c727fb4ce04c9b356fd58f7/pyogrio-0.11.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf1dae0340237207664e2da1b77f2cdbcb5f81fd0fc9f3200a48ca993a5e12ef",
                "md5": "d7221e11ca82964ec72b74d4450490b5",
                "sha256": "e1441dc9c866f10d8e6ae7ea9249a10c1f57ea921b1f19a5b0977ab91ef8082c"
            },
            "downloads": -1,
            "filename": "pyogrio-0.11.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d7221e11ca82964ec72b74d4450490b5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 287267,
            "upload_time": "2025-08-02T20:19:20",
            "upload_time_iso_8601": "2025-08-02T20:19:20.167154Z",
            "url": "https://files.pythonhosted.org/packages/bf/1d/ae0340237207664e2da1b77f2cdbcb5f81fd0fc9f3200a48ca993a5e12ef/pyogrio-0.11.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-02 20:19:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "geopandas",
    "github_project": "pyogrio",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyogrio"
}
        
Elapsed time: 0.43375s