Name | pyogrio JSON |
Version |
0.10.0
JSON |
| download |
home_page | None |
Summary | Vectorized spatial vector file format I/O using GDAL/OGR |
upload_time | 2024-09-28 19:11:20 |
maintainer | pyogrio contributors |
docs_url | None |
author | pyogrio contributors |
requires_python | >=3.9 |
license | MIT 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 - Vectorized spatial vector file format I/O using GDAL/OGR
Pyogrio provides a
[GeoPandas](https://github.com/geopandas/geopandas)-oriented API to OGR vector
data sources, such as ESRI Shapefile, GeoPackage, and GeoJSON. Vector data sources
have geometries, such as points, lines, or polygons, and associated records
with potentially many columns worth of data.
Pyogrio uses a vectorized approach for reading and writing GeoDataFrames to and
from OGR vector data sources in order to give you faster interoperability. It
uses pre-compiled bindings for GDAL/OGR so that the performance is primarily
limited by the underlying I/O speed of data source drivers in GDAL/OGR rather
than multiple steps of converting to and from Python data types within Python.
We have seen \>5-10x speedups reading files and \>5-20x speedups writing files
compared to using non-vectorized approaches (Fiona and current I/O support in
GeoPandas).
You can read these data sources into
`GeoDataFrames`, read just the non-geometry columns into Pandas `DataFrames`,
or even read non-spatial data sources that exist alongside vector data sources,
such as tables in a ESRI File Geodatabase, or antiquated DBF files.
Pyogrio also enables you to write `GeoDataFrames` to at least a few different
OGR vector data source formats.
Read the documentation for more information:
[https://pyogrio.readthedocs.io](https://pyogrio.readthedocs.io/en/latest/).
WARNING: Pyogrio is still at an early version and the API is subject to
substantial change. Please see [CHANGES](CHANGES.md).
## 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 some of the 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 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/a5/8f/5a784595524a79c269f2b1c880f4fdb152867df700c97005dda51997da02/pyogrio-0.10.0.tar.gz",
"platform": null,
"description": "# pyogrio - Vectorized spatial vector file format I/O using GDAL/OGR\n\nPyogrio provides a\n[GeoPandas](https://github.com/geopandas/geopandas)-oriented API to OGR vector\ndata sources, such as ESRI Shapefile, GeoPackage, and GeoJSON. Vector data sources\nhave geometries, such as points, lines, or polygons, and associated records\nwith potentially many columns worth of data.\n\nPyogrio uses a vectorized approach for reading and writing GeoDataFrames to and\nfrom OGR vector data sources in order to give you faster interoperability. It\nuses pre-compiled bindings for GDAL/OGR so that the performance is primarily\nlimited by the underlying I/O speed of data source drivers in GDAL/OGR rather\nthan multiple steps of converting to and from Python data types within Python.\n\nWe have seen \\>5-10x speedups reading files and \\>5-20x speedups writing files\ncompared to using non-vectorized approaches (Fiona and current I/O support in\nGeoPandas).\n\nYou can read these data sources into\n`GeoDataFrames`, read just the non-geometry columns into Pandas `DataFrames`,\nor even read non-spatial data sources that exist alongside vector data sources,\nsuch as tables in a ESRI File Geodatabase, or antiquated DBF files.\n\nPyogrio also enables you to write `GeoDataFrames` to at least a few different\nOGR vector data source formats.\n\nRead the documentation for more information:\n[https://pyogrio.readthedocs.io](https://pyogrio.readthedocs.io/en/latest/).\n\nWARNING: Pyogrio is still at an early version and the API is subject to\nsubstantial change. Please see [CHANGES](CHANGES.md).\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 some of the most common vector data source formats (provided\nthey are also supported by GDAL/OGR), including ESRI Shapefile, GeoPackage,\nGeoJSON, and FlatGeobuf.\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 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 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. ",
"summary": "Vectorized spatial vector file format I/O using GDAL/OGR",
"version": "0.10.0",
"project_urls": {
"Home": "https://pyogrio.readthedocs.io/",
"Repository": "https://github.com/geopandas/pyogrio"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "41eacba24d241858a72b58d8fcd0ad2276f9631fd4528b3062157637e43581eb",
"md5": "f97e250a11a7bfc88165d296e1e70ae9",
"sha256": "046eeeae12a03a3ebc3dc5ff5a87664e4f5fc0a4fb1ea5d5c45d547fa941072b"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp310-cp310-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "f97e250a11a7bfc88165d296e1e70ae9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 15083657,
"upload_time": "2024-09-28T19:10:10",
"upload_time_iso_8601": "2024-09-28T19:10:10.886045Z",
"url": "https://files.pythonhosted.org/packages/41/ea/cba24d241858a72b58d8fcd0ad2276f9631fd4528b3062157637e43581eb/pyogrio-0.10.0-cp310-cp310-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "90f8a58795a2aee415c612aac8b425681d932b8983330884207fd1915d234d36",
"md5": "a442d0a41b05a315e5c82d005d0e2f53",
"sha256": "44380f4d9245c776f432526e29ce4d29238aea26adad991803c4f453474f51d3"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp310-cp310-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "a442d0a41b05a315e5c82d005d0e2f53",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 16457115,
"upload_time": "2024-09-28T19:10:13",
"upload_time_iso_8601": "2024-09-28T19:10:13.620574Z",
"url": "https://files.pythonhosted.org/packages/90/f8/a58795a2aee415c612aac8b425681d932b8983330884207fd1915d234d36/pyogrio-0.10.0-cp310-cp310-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "458674c37e3d4d000bdcd91b25929fe4abc5ad6d93d5f5fbc59a4c7d4f0ed982",
"md5": "e06414beea93ba54cecf811e64ef6139",
"sha256": "14fd3b72b4e2dc59e264607b265c742b0c5ec2ea9e748b115f742381b28dd373"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e06414beea93ba54cecf811e64ef6139",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 23721911,
"upload_time": "2024-09-28T19:10:16",
"upload_time_iso_8601": "2024-09-28T19:10:16.384142Z",
"url": "https://files.pythonhosted.org/packages/45/86/74c37e3d4d000bdcd91b25929fe4abc5ad6d93d5f5fbc59a4c7d4f0ed982/pyogrio-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "568b67187ae03dce5cd6f5c5a2f41c405e77059f4cf498e0817b69cec094f022",
"md5": "4326605343b67314c2885d5e46dfd9f6",
"sha256": "3539596a76eb8a9d166d6f9d3f36731a8c5bd5c43901209d89dc66b9dc00f079"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "4326605343b67314c2885d5e46dfd9f6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 23861913,
"upload_time": "2024-09-28T19:10:19",
"upload_time_iso_8601": "2024-09-28T19:10:19.269693Z",
"url": "https://files.pythonhosted.org/packages/56/8b/67187ae03dce5cd6f5c5a2f41c405e77059f4cf498e0817b69cec094f022/pyogrio-0.10.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "75cab31083da2e6c4b598b6609a98c655977189fe8982c36d98ea4789a938045",
"md5": "fd88ab007d61fb223eca63a54e1a6938",
"sha256": "eac90b2501656892c63bc500c12e71f3dbf7d66ddc5a7fb05cd480d25d1b7022"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "fd88ab007d61fb223eca63a54e1a6938",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 16171065,
"upload_time": "2024-09-28T19:10:21",
"upload_time_iso_8601": "2024-09-28T19:10:21.982490Z",
"url": "https://files.pythonhosted.org/packages/75/ca/b31083da2e6c4b598b6609a98c655977189fe8982c36d98ea4789a938045/pyogrio-0.10.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d2cc761e6adeb81bd4029a137b3240e7214a8c9aaf225883356196afd6ef9d8",
"md5": "b48d79dbfa14eb252b312cd130f9b8d0",
"sha256": "5b1a51431a27a1cb3e4e19558939c1423106e06e7b67d6285f4fba9c2d0a91b9"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp311-cp311-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "b48d79dbfa14eb252b312cd130f9b8d0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 15083526,
"upload_time": "2024-09-28T19:10:24",
"upload_time_iso_8601": "2024-09-28T19:10:24.621538Z",
"url": "https://files.pythonhosted.org/packages/8d/2c/c761e6adeb81bd4029a137b3240e7214a8c9aaf225883356196afd6ef9d8/pyogrio-0.10.0-cp311-cp311-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3e5983aa9ddf2ff784e973d6b2ec3e874065d6655a5329ca26311b0f3b9f92f",
"md5": "045c5e20c606ccfe09e2399852c9dbb7",
"sha256": "216d69cd77b2b4a0c9d7d449bc239f8b77f3d73f4a05d9c738a0745b236902d8"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp311-cp311-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "045c5e20c606ccfe09e2399852c9dbb7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 16457867,
"upload_time": "2024-09-28T19:10:28",
"upload_time_iso_8601": "2024-09-28T19:10:28.711855Z",
"url": "https://files.pythonhosted.org/packages/c3/e5/983aa9ddf2ff784e973d6b2ec3e874065d6655a5329ca26311b0f3b9f92f/pyogrio-0.10.0-cp311-cp311-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa9a7103eee7aa3b6ec88e072ef18a05c3aae1ed96fe00009a7a5ce139b50f30",
"md5": "e3958e6273b9d2797c687d62cafe7095",
"sha256": "a2f0b75f0077ce33256aec6278c2a9c3b79bf0637ddf4f93d3ab2609f0501d96"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e3958e6273b9d2797c687d62cafe7095",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 23926332,
"upload_time": "2024-09-28T19:10:31",
"upload_time_iso_8601": "2024-09-28T19:10:31.692174Z",
"url": "https://files.pythonhosted.org/packages/fa/9a/7103eee7aa3b6ec88e072ef18a05c3aae1ed96fe00009a7a5ce139b50f30/pyogrio-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae15501aa4823c142232169d54255ab343f28c4ea9e7fa489b8433dcc873a942",
"md5": "499686ac31176d5831bff1c8532fcf99",
"sha256": "11e6c71d12da6b445e77d0fc0198db1bd35a77e03a0685e45338cbab9ce02add"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "499686ac31176d5831bff1c8532fcf99",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 24062952,
"upload_time": "2024-09-28T19:10:34",
"upload_time_iso_8601": "2024-09-28T19:10:34.130823Z",
"url": "https://files.pythonhosted.org/packages/ae/15/501aa4823c142232169d54255ab343f28c4ea9e7fa489b8433dcc873a942/pyogrio-0.10.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "948d24f21e6a93ca418231aee3bddade7a0766c89c523832f29e08a8860f83e6",
"md5": "60f2084d2afbe4ff33ec45e31b7ce5dd",
"sha256": "d0d74e91a9c0ff2f9abe01b556ff663977193b2d6922208406172d0fc833beff"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "60f2084d2afbe4ff33ec45e31b7ce5dd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 16172573,
"upload_time": "2024-09-28T19:10:37",
"upload_time_iso_8601": "2024-09-28T19:10:37.060189Z",
"url": "https://files.pythonhosted.org/packages/94/8d/24f21e6a93ca418231aee3bddade7a0766c89c523832f29e08a8860f83e6/pyogrio-0.10.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5b53c5dfd0b50cbce6f3d4e42c0484647feb1809dbe20e225c4c6abd067e69f",
"md5": "6e209239da9728bc7b3a7af4a98b1414",
"sha256": "2d6558b180e020f71ab7aa7f82d592ed3305c9f698d98f6d0a4637ec7a84c4ce"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp312-cp312-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "6e209239da9728bc7b3a7af4a98b1414",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 15079211,
"upload_time": "2024-09-28T19:10:40",
"upload_time_iso_8601": "2024-09-28T19:10:40.059165Z",
"url": "https://files.pythonhosted.org/packages/b5/b5/3c5dfd0b50cbce6f3d4e42c0484647feb1809dbe20e225c4c6abd067e69f/pyogrio-0.10.0-cp312-cp312-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b89a1ba9c707a094976f343bd0177741eaba0e842fa05ecd8ab97192db4f2ec1",
"md5": "359e754e1847b0ab54f9e1304fdcc87d",
"sha256": "a99102037eead8ba491bc57825c1e395ee31c9956d7bff7b4a9e4fdbff3a13c2"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp312-cp312-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "359e754e1847b0ab54f9e1304fdcc87d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 16442782,
"upload_time": "2024-09-28T19:10:42",
"upload_time_iso_8601": "2024-09-28T19:10:42.373054Z",
"url": "https://files.pythonhosted.org/packages/b8/9a/1ba9c707a094976f343bd0177741eaba0e842fa05ecd8ab97192db4f2ec1/pyogrio-0.10.0-cp312-cp312-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ebbb4250746c2c85fea5004cae93e9e25ad01516e9e94e04de780a2e78139da",
"md5": "97215137fbc7765a654fcb11ae405788",
"sha256": "3a4c373281d7cbf560c5b61f8f3c7442103ad7f1c7ac4ef3a84572ed7a5dd2f6"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "97215137fbc7765a654fcb11ae405788",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 23899832,
"upload_time": "2024-09-28T19:10:44",
"upload_time_iso_8601": "2024-09-28T19:10:44.810669Z",
"url": "https://files.pythonhosted.org/packages/5e/bb/b4250746c2c85fea5004cae93e9e25ad01516e9e94e04de780a2e78139da/pyogrio-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47782b62c8a340bcb0ea56b9ddf2ef5fd3d1f101dc0e98816b9e6da87c5ac3b7",
"md5": "677f834f42cfa3a13241a15d5bae736b",
"sha256": "1abbcdd9876f30bebf1df8a0273f6cdeb29d03259290008275c7fddebe139f20"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "677f834f42cfa3a13241a15d5bae736b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 24024758,
"upload_time": "2024-09-28T19:10:47",
"upload_time_iso_8601": "2024-09-28T19:10:47.873231Z",
"url": "https://files.pythonhosted.org/packages/47/78/2b62c8a340bcb0ea56b9ddf2ef5fd3d1f101dc0e98816b9e6da87c5ac3b7/pyogrio-0.10.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "439734605480f06b0ad9611bf58a174eccc6f3673275f3d519cf763391892881",
"md5": "06b2c39ad9f1de1a7d0872e3575be52f",
"sha256": "2a3e09839590d71ff832aa95c4f23fa00a2c63c3de82c1fbd4fb8d265792acfc"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "06b2c39ad9f1de1a7d0872e3575be52f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 16160294,
"upload_time": "2024-09-28T19:10:50",
"upload_time_iso_8601": "2024-09-28T19:10:50.750685Z",
"url": "https://files.pythonhosted.org/packages/43/97/34605480f06b0ad9611bf58a174eccc6f3673275f3d519cf763391892881/pyogrio-0.10.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "144a4c8e4f5b9edbca46e0f8d6c1c0b56c0d4af0900c29f4bea22d37853c07f3",
"md5": "89a27fd56c0e96caba2e59bbfda490ef",
"sha256": "c90478209537a31dcc65664a87a04c094bb0e08efe502908a6682b8cec0259bf"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp313-cp313-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "89a27fd56c0e96caba2e59bbfda490ef",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 15076879,
"upload_time": "2024-09-28T19:10:53",
"upload_time_iso_8601": "2024-09-28T19:10:53.812377Z",
"url": "https://files.pythonhosted.org/packages/14/4a/4c8e4f5b9edbca46e0f8d6c1c0b56c0d4af0900c29f4bea22d37853c07f3/pyogrio-0.10.0-cp313-cp313-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5fbe7db0644eef9ef3382518399aaf3332827c43018112d2a74f78784fd496ec",
"md5": "334d2c49cde954e935ce6e878f8277b7",
"sha256": "fec45e1963b7058e5a1aa98598aed07c0858512c833d6aad2c672c3ec98bbf04"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp313-cp313-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "334d2c49cde954e935ce6e878f8277b7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 16440405,
"upload_time": "2024-09-28T19:10:56",
"upload_time_iso_8601": "2024-09-28T19:10:56.696583Z",
"url": "https://files.pythonhosted.org/packages/5f/be/7db0644eef9ef3382518399aaf3332827c43018112d2a74f78784fd496ec/pyogrio-0.10.0-cp313-cp313-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9677f199230ba86fe88b1f57e71428c169ed982de68a32d6082cd7c12d0f5d55",
"md5": "38ef7200c1f717e4716df3609852f16b",
"sha256": "28cb139f8a5d0365ede602230104b407ae52bb6b55173c8d5a35424d28c4a2c5"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "38ef7200c1f717e4716df3609852f16b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 23871511,
"upload_time": "2024-09-28T19:10:59",
"upload_time_iso_8601": "2024-09-28T19:10:59.010120Z",
"url": "https://files.pythonhosted.org/packages/96/77/f199230ba86fe88b1f57e71428c169ed982de68a32d6082cd7c12d0f5d55/pyogrio-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d73ec35f2d8dad95b24e568c468f09ff60fb61945065465e0ec7868400596566",
"md5": "6590fcd53110685e0448b3b54a87b6f3",
"sha256": "7c02b207ea8cf09c501ea3e95d29152781a00d3c32267286bc36fa457c332205"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "6590fcd53110685e0448b3b54a87b6f3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 23996873,
"upload_time": "2024-09-28T19:11:02",
"upload_time_iso_8601": "2024-09-28T19:11:02.010597Z",
"url": "https://files.pythonhosted.org/packages/d7/3e/c35f2d8dad95b24e568c468f09ff60fb61945065465e0ec7868400596566/pyogrio-0.10.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "275d0deb16d228362a097ee3258d0a887c9c0add4b9678bb4847b08a241e124d",
"md5": "9e84c3d12d5190baabb0ab315c792887",
"sha256": "02e54bcfb305af75f829044b0045f74de31b77c2d6546f7aaf96822066147848"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "9e84c3d12d5190baabb0ab315c792887",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 16158260,
"upload_time": "2024-09-28T19:11:04",
"upload_time_iso_8601": "2024-09-28T19:11:04.623772Z",
"url": "https://files.pythonhosted.org/packages/27/5d/0deb16d228362a097ee3258d0a887c9c0add4b9678bb4847b08a241e124d/pyogrio-0.10.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ecfeea995a55289a4c378a29130435a400d577bd151a518a5238fd5bc21fe09f",
"md5": "6af94811760cfbcf6b903bde3524616a",
"sha256": "ea96a1338ed7991735b955d3f84ad5f71b3bc070b6a7a42449941aedecc71768"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp39-cp39-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "6af94811760cfbcf6b903bde3524616a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 15083868,
"upload_time": "2024-09-28T19:11:07",
"upload_time_iso_8601": "2024-09-28T19:11:07.159798Z",
"url": "https://files.pythonhosted.org/packages/ec/fe/ea995a55289a4c378a29130435a400d577bd151a518a5238fd5bc21fe09f/pyogrio-0.10.0-cp39-cp39-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "071d1bc2162a7d1cef13edcf645e562d047742dad68c4e933b757d4cf2837b00",
"md5": "e3cf49089ad244de6e637cabe20a4d56",
"sha256": "32d349600561459791a43f528a92f3e9343a59bdc9bc30b1be9376f0b80cbf16"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp39-cp39-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "e3cf49089ad244de6e637cabe20a4d56",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 16457256,
"upload_time": "2024-09-28T19:11:09",
"upload_time_iso_8601": "2024-09-28T19:11:09.588957Z",
"url": "https://files.pythonhosted.org/packages/07/1d/1bc2162a7d1cef13edcf645e562d047742dad68c4e933b757d4cf2837b00/pyogrio-0.10.0-cp39-cp39-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "207a56ef1f49388244b5d9e4f22db58745fd329f441f87af71fce0bbd6ddd894",
"md5": "765491f21efa96bb110f62c99c65a200",
"sha256": "82f7bd6a87bd2e9484bcb4c87ab94eee4c2f573ad148707431c8b341d7f13d99"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "765491f21efa96bb110f62c99c65a200",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 23716062,
"upload_time": "2024-09-28T19:11:12",
"upload_time_iso_8601": "2024-09-28T19:11:12.578468Z",
"url": "https://files.pythonhosted.org/packages/20/7a/56ef1f49388244b5d9e4f22db58745fd329f441f87af71fce0bbd6ddd894/pyogrio-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "769b8974f77ded5661522023cfb7898d7851f9b1056f4bbaacc4de2812dbf7fd",
"md5": "2a1235da724c3928c719e8b03ebed9ea",
"sha256": "22d57495e835fe51b88da43dfbda606c07e1f6c3b849af0c3cfc18e17467641c"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "2a1235da724c3928c719e8b03ebed9ea",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 23854562,
"upload_time": "2024-09-28T19:11:16",
"upload_time_iso_8601": "2024-09-28T19:11:16.007051Z",
"url": "https://files.pythonhosted.org/packages/76/9b/8974f77ded5661522023cfb7898d7851f9b1056f4bbaacc4de2812dbf7fd/pyogrio-0.10.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f814aff4499cc544a02343043a16322b51dcc0ca947d21a96b7aacb1dd1b8e3a",
"md5": "31633341d7e90eb31cd7882afb133a94",
"sha256": "eea82171bfc07fc778b8dc87b0cdc9ac06c389bc56b0c0b6f34bf9e45fb78c0e"
},
"downloads": -1,
"filename": "pyogrio-0.10.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "31633341d7e90eb31cd7882afb133a94",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 16172207,
"upload_time": "2024-09-28T19:11:18",
"upload_time_iso_8601": "2024-09-28T19:11:18.544625Z",
"url": "https://files.pythonhosted.org/packages/f8/14/aff4499cc544a02343043a16322b51dcc0ca947d21a96b7aacb1dd1b8e3a/pyogrio-0.10.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a58f5a784595524a79c269f2b1c880f4fdb152867df700c97005dda51997da02",
"md5": "27e6ec45f9a65ccf177e0d7ad1ced45d",
"sha256": "ec051cb568324de878828fae96379b71858933413e185148acb6c162851ab23c"
},
"downloads": -1,
"filename": "pyogrio-0.10.0.tar.gz",
"has_sig": false,
"md5_digest": "27e6ec45f9a65ccf177e0d7ad1ced45d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 281950,
"upload_time": "2024-09-28T19:11:20",
"upload_time_iso_8601": "2024-09-28T19:11:20.898556Z",
"url": "https://files.pythonhosted.org/packages/a5/8f/5a784595524a79c269f2b1c880f4fdb152867df700c97005dda51997da02/pyogrio-0.10.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-28 19:11:20",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "geopandas",
"github_project": "pyogrio",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"circle": true,
"lcname": "pyogrio"
}