npyosmium


Namenpyosmium JSON
Version 3.6.3 PyPI version JSON
download
home_pagehttps://github.com/agrenott/npyosmium
SummaryPython bindings for libosmium, the data processing library for OSM data, with numpy interface
upload_time2023-11-18 18:48:41
maintainerAurélien Grenotton
docs_urlNone
authorSarah Hoffmann
requires_python>=3.8
licenseBSD
keywords osm openstreetmap osmium
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # npyosmium

Fork of [pyosmium](https://github.com/osmcode/pyosmium), including (only one for the time being) efficient numpy interface.

# pyosmium

Provides Python bindings for the [Libosmium](https://github.com/osmcode/libosmium) C++
library, a library for working with OpenStreetMap data in a fast and flexible
manner.

[![Github Actions Build Status](https://github.com/agrenott/npyosmium/workflows/CI/badge.svg)](https://github.com/agrenott/nyosmium/actions?query=workflow%3ACI)
[![PyPI version](https://badge.fury.io/py/npyosmium.svg)](https://badge.fury.io/py/npyosmium)

## Installation

npyosmium works with Python >= 3.8. Pypy is known to not work.

### Using Pip

The recommended way to install npyosmium is via pip:

    pip install npyosmium

We provide binary wheels for Linux and Windows 64 for all actively
maintained Python versions.

For other versions, a source wheel is provided. Make sure to install all
external dependencies first. On Debian/Ubuntu-like systems, the following
command installs all required packages:

    sudo apt-get install build-essential cmake libboost-dev \
                         libexpat1-dev zlib1g-dev libbz2-dev


### Installing from source

#### Prerequisites

npyosmium has the following dependencies:

 * [libosmium](https://github.com/osmcode/libosmium) >= 2.16.0
 * [protozero](https://github.com/mapbox/protozero)
 * [cmake](https://cmake.org/)
 * [Pybind11](https://github.com/pybind/pybind11) >= 2.2
 * [expat](https://libexpat.github.io/)
 * [libz](https://www.zlib.net/)
 * [libbz2](https://www.sourceware.org/bzip2/)
 * [Boost](https://www.boost.org/) variant and iterator >= 1.41
 * [Python Requests](https://docs.python-requests.org/en/master/)
 * Python setuptools
 * a recent C++ compiler (Clang 3.4+, GCC 4.8+)

### Compiling from Source

Get the latest versions of libosmium, protozero and pybind11. It is
recommended that you put them in a subdirectory `contrib`. You can also
set custom locations with `LIBOSMIUM_PREFIX`, `PROTOZERO_PREFIX` and
`PYBIND11_PREFIX` respectively.

```
git clone --quiet --depth 1 https://github.com/osmcode/libosmium.git contrib/libosmium
git clone --quiet --depth 1 https://github.com/mapbox/protozero.git contrib/protozero
git clone --quiet https://github.com/pybind/pybind11.git contrib/pybind11
```

To use a custom boost installation, set `BOOST_PREFIX`.

To compile the bindings during development, you can use
[build](https://pypa-build.readthedocs.io/en/stable/).
On Debian/Ubuntu-like systems, install `python3-build`, then
run:

    python3 -m build -w

To compile and install the bindings, run

    pip install [--user] .


## Examples

The `example` directory contains small examples on how to use the library.
They are mostly ports of the examples in Libosmium and osmium-contrib.


## Testing

There is a small test suite in the test directory. This provides regression
test for the python bindings, it is not meant to be a test suite for Libosmium.

You'll need the Python `pytest` module. On Debian/Ubuntu install the package
`python3-pytest`.

The suite can be run with:

    pytest test


## Documentation

To build the documentation you need [Sphinx](http://sphinx-doc.org/)
and the [autoprogram extension](https://pythonhosted.org/sphinxcontrib-autoprogram/)
On Debian/Ubuntu install `python-sphinx sphinxcontrib-autoprogram`
or `python3-sphinx python3-sphinxcontrib.autoprogram`.

First compile the bindings as described above and then run:

    cd doc
    make html

For building the man pages for the tools run:

    cd doc
    make man

## Bugs and Questions

If you find bugs or have feature requests, please report those in the
[github issue tracker](https://github.com/agrenott/npyosmium/issues/).

For general questions about using pyosmium you can use the
[OSM development mailing list](https://lists.openstreetmap.org/listinfo/dev)
or ask on [OSM help](https://help.openstreetmap.org/).

## License

npyosmium is available under the BSD 2-Clause License. See LICENSE.TXT.

## Authors

Sarah Hoffmann (lonvia@denofr.de), Aurélien Grenotton (agrenott@gmail.com)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/agrenott/npyosmium",
    "name": "npyosmium",
    "maintainer": "Aur\u00e9lien Grenotton",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "agrenott@gmail.com",
    "keywords": "OSM,OpenStreetMap,Osmium",
    "author": "Sarah Hoffmann",
    "author_email": "lonvia@denofr.de",
    "download_url": "https://github.com/agrenott/npyosmium",
    "platform": null,
    "description": "# npyosmium\n\nFork of [pyosmium](https://github.com/osmcode/pyosmium), including (only one for the time being) efficient numpy interface.\n\n# pyosmium\n\nProvides Python bindings for the [Libosmium](https://github.com/osmcode/libosmium) C++\nlibrary, a library for working with OpenStreetMap data in a fast and flexible\nmanner.\n\n[![Github Actions Build Status](https://github.com/agrenott/npyosmium/workflows/CI/badge.svg)](https://github.com/agrenott/nyosmium/actions?query=workflow%3ACI)\n[![PyPI version](https://badge.fury.io/py/npyosmium.svg)](https://badge.fury.io/py/npyosmium)\n\n## Installation\n\nnpyosmium works with Python >= 3.8. Pypy is known to not work.\n\n### Using Pip\n\nThe recommended way to install npyosmium is via pip:\n\n    pip install npyosmium\n\nWe provide binary wheels for Linux and Windows 64 for all actively\nmaintained Python versions.\n\nFor other versions, a source wheel is provided. Make sure to install all\nexternal dependencies first. On Debian/Ubuntu-like systems, the following\ncommand installs all required packages:\n\n    sudo apt-get install build-essential cmake libboost-dev \\\n                         libexpat1-dev zlib1g-dev libbz2-dev\n\n\n### Installing from source\n\n#### Prerequisites\n\nnpyosmium has the following dependencies:\n\n * [libosmium](https://github.com/osmcode/libosmium) >= 2.16.0\n * [protozero](https://github.com/mapbox/protozero)\n * [cmake](https://cmake.org/)\n * [Pybind11](https://github.com/pybind/pybind11) >= 2.2\n * [expat](https://libexpat.github.io/)\n * [libz](https://www.zlib.net/)\n * [libbz2](https://www.sourceware.org/bzip2/)\n * [Boost](https://www.boost.org/) variant and iterator >= 1.41\n * [Python Requests](https://docs.python-requests.org/en/master/)\n * Python setuptools\n * a recent C++ compiler (Clang 3.4+, GCC 4.8+)\n\n### Compiling from Source\n\nGet the latest versions of libosmium, protozero and pybind11. It is\nrecommended that you put them in a subdirectory `contrib`. You can also\nset custom locations with `LIBOSMIUM_PREFIX`, `PROTOZERO_PREFIX` and\n`PYBIND11_PREFIX` respectively.\n\n```\ngit clone --quiet --depth 1 https://github.com/osmcode/libosmium.git contrib/libosmium\ngit clone --quiet --depth 1 https://github.com/mapbox/protozero.git contrib/protozero\ngit clone --quiet https://github.com/pybind/pybind11.git contrib/pybind11\n```\n\nTo use a custom boost installation, set `BOOST_PREFIX`.\n\nTo compile the bindings during development, you can use\n[build](https://pypa-build.readthedocs.io/en/stable/).\nOn Debian/Ubuntu-like systems, install `python3-build`, then\nrun:\n\n    python3 -m build -w\n\nTo compile and install the bindings, run\n\n    pip install [--user] .\n\n\n## Examples\n\nThe `example` directory contains small examples on how to use the library.\nThey are mostly ports of the examples in Libosmium and osmium-contrib.\n\n\n## Testing\n\nThere is a small test suite in the test directory. This provides regression\ntest for the python bindings, it is not meant to be a test suite for Libosmium.\n\nYou'll need the Python `pytest` module. On Debian/Ubuntu install the package\n`python3-pytest`.\n\nThe suite can be run with:\n\n    pytest test\n\n\n## Documentation\n\nTo build the documentation you need [Sphinx](http://sphinx-doc.org/)\nand the [autoprogram extension](https://pythonhosted.org/sphinxcontrib-autoprogram/)\nOn Debian/Ubuntu install `python-sphinx sphinxcontrib-autoprogram`\nor `python3-sphinx python3-sphinxcontrib.autoprogram`.\n\nFirst compile the bindings as described above and then run:\n\n    cd doc\n    make html\n\nFor building the man pages for the tools run:\n\n    cd doc\n    make man\n\n## Bugs and Questions\n\nIf you find bugs or have feature requests, please report those in the\n[github issue tracker](https://github.com/agrenott/npyosmium/issues/).\n\nFor general questions about using pyosmium you can use the\n[OSM development mailing list](https://lists.openstreetmap.org/listinfo/dev)\nor ask on [OSM help](https://help.openstreetmap.org/).\n\n## License\n\nnpyosmium is available under the BSD 2-Clause License. See LICENSE.TXT.\n\n## Authors\n\nSarah Hoffmann (lonvia@denofr.de), Aur\u00e9lien Grenotton (agrenott@gmail.com)\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Python bindings for libosmium, the data processing library for OSM data, with numpy interface",
    "version": "3.6.3",
    "project_urls": {
        "Download": "https://github.com/agrenott/npyosmium",
        "Homepage": "https://github.com/agrenott/npyosmium"
    },
    "split_keywords": [
        "osm",
        "openstreetmap",
        "osmium"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94f36350516407d74f12f9b1c8aba1e71eb1fb1815e5eff3c8db953641a204ec",
                "md5": "2163854aaea0bcc65a0d2d930e1cfdc3",
                "sha256": "df7a80e8935c2730ca8c568164cb73330df889813b0713b1317bf0fa35cb1421"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2163854aaea0bcc65a0d2d930e1cfdc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1152565,
            "upload_time": "2023-11-18T18:48:41",
            "upload_time_iso_8601": "2023-11-18T18:48:41.399730Z",
            "url": "https://files.pythonhosted.org/packages/94/f3/6350516407d74f12f9b1c8aba1e71eb1fb1815e5eff3c8db953641a204ec/npyosmium-3.6.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7c11cf0419ecbe332981bc1d0bd93628ee67ddb95e2dd00bb8f9f09e8c50d63",
                "md5": "36bfd13a5198cea26d92be98b51cc682",
                "sha256": "0144eef18dca449a4d43970b8b73d8a18e4c86fff47916f668c9f754777db132"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36bfd13a5198cea26d92be98b51cc682",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1309422,
            "upload_time": "2023-11-18T18:48:43",
            "upload_time_iso_8601": "2023-11-18T18:48:43.099318Z",
            "url": "https://files.pythonhosted.org/packages/d7/c1/1cf0419ecbe332981bc1d0bd93628ee67ddb95e2dd00bb8f9f09e8c50d63/npyosmium-3.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2dc39e47ce4e25cee0f32cddb7f920d6335a628f813e48d6973804b708be79fb",
                "md5": "b4de45326cdb65d21e4befbc9efbdc2b",
                "sha256": "a632e25bc4571d7ce57fc07cb9dac8c99120af3e1e028f9c8bf8d05c4bcc21ca"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b4de45326cdb65d21e4befbc9efbdc2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1288398,
            "upload_time": "2023-11-18T18:48:44",
            "upload_time_iso_8601": "2023-11-18T18:48:44.545839Z",
            "url": "https://files.pythonhosted.org/packages/2d/c3/9e47ce4e25cee0f32cddb7f920d6335a628f813e48d6973804b708be79fb/npyosmium-3.6.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "828f1d98f13c074a63763f84bc9f2f7c9347f9d32ceba200cc1643054747a005",
                "md5": "789e5661add32c109727537d33c2a6eb",
                "sha256": "4ddf59bc9141a37f1a818430b9d9f09dd510222b1aa5dd1b6e53a02807be3b5a"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "789e5661add32c109727537d33c2a6eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1152510,
            "upload_time": "2023-11-18T18:48:46",
            "upload_time_iso_8601": "2023-11-18T18:48:46.306178Z",
            "url": "https://files.pythonhosted.org/packages/82/8f/1d98f13c074a63763f84bc9f2f7c9347f9d32ceba200cc1643054747a005/npyosmium-3.6.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bfec68c79e6a6e651e57c985ab60a02f6b865ab9097ff98365306003164cae5",
                "md5": "a102f3c8f956737573e889ae3ad06d02",
                "sha256": "2a2284aeb682a901f01d71c2f14566b197d5c99bc4d73e21855bc40a5033acfc"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a102f3c8f956737573e889ae3ad06d02",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1309171,
            "upload_time": "2023-11-18T18:48:48",
            "upload_time_iso_8601": "2023-11-18T18:48:48.143465Z",
            "url": "https://files.pythonhosted.org/packages/8b/fe/c68c79e6a6e651e57c985ab60a02f6b865ab9097ff98365306003164cae5/npyosmium-3.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a17f7063c6d26d7c3c44e118b1cc7a8eb2547e2a2e68f7ff0e3573ed3238e5f",
                "md5": "f150b6f1f8176962f20b88cd4a008b1a",
                "sha256": "dcded638e33bdc6efaf2a58bad0309742147c26308b9cf16ddb37d6882ccd79b"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f150b6f1f8176962f20b88cd4a008b1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1288559,
            "upload_time": "2023-11-18T18:48:49",
            "upload_time_iso_8601": "2023-11-18T18:48:49.950441Z",
            "url": "https://files.pythonhosted.org/packages/0a/17/f7063c6d26d7c3c44e118b1cc7a8eb2547e2a2e68f7ff0e3573ed3238e5f/npyosmium-3.6.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7751cc7d32a586c0b8c68c94f7b165e5c03471428b44794305ba1669ce37fb7",
                "md5": "4fe03e2b88a1de17229ed8f7dc0cb533",
                "sha256": "cb3335371354c74f3ab9b270b836562bdaf5d272bea705bb5245e9038843bd5b"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4fe03e2b88a1de17229ed8f7dc0cb533",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1166397,
            "upload_time": "2023-11-18T18:48:51",
            "upload_time_iso_8601": "2023-11-18T18:48:51.664919Z",
            "url": "https://files.pythonhosted.org/packages/a7/75/1cc7d32a586c0b8c68c94f7b165e5c03471428b44794305ba1669ce37fb7/npyosmium-3.6.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ffdb6a3ba7eb8eefa0a7764be1bfc5e4239d93e89adca981f4a78abff164efc",
                "md5": "a584d91edbec4819f68893eb3521113f",
                "sha256": "68c99ae95045a2b815d7a022b8b4d13d90cdb05042c3d3cca4cb4ef4e21914c8"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a584d91edbec4819f68893eb3521113f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1309350,
            "upload_time": "2023-11-18T18:48:53",
            "upload_time_iso_8601": "2023-11-18T18:48:53.312675Z",
            "url": "https://files.pythonhosted.org/packages/5f/fd/b6a3ba7eb8eefa0a7764be1bfc5e4239d93e89adca981f4a78abff164efc/npyosmium-3.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "626f8cf04dd5a19ecf78cdd3857a421dffd9628d7c20ba098ab5dfe754218563",
                "md5": "15bd8d2ad4dad722e74feb5cb8030678",
                "sha256": "3ce7955972947056b575fb3a43a0bf817c041234d78078217943b3e2fd15cfb9"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "15bd8d2ad4dad722e74feb5cb8030678",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1293900,
            "upload_time": "2023-11-18T18:48:54",
            "upload_time_iso_8601": "2023-11-18T18:48:54.794746Z",
            "url": "https://files.pythonhosted.org/packages/62/6f/8cf04dd5a19ecf78cdd3857a421dffd9628d7c20ba098ab5dfe754218563/npyosmium-3.6.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a5a8928cb7248ba2dfdfe3c79b3a7728de2ca8730b496169e215569d8c48d71",
                "md5": "128048d075c39f7ee5a8b8d2fcfe41b5",
                "sha256": "6a3e01578625c5d922c52f4ff644023d0874f1efc49eec4b2aa3c17591057567"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "128048d075c39f7ee5a8b8d2fcfe41b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1151932,
            "upload_time": "2023-11-18T18:48:56",
            "upload_time_iso_8601": "2023-11-18T18:48:56.476369Z",
            "url": "https://files.pythonhosted.org/packages/0a/5a/8928cb7248ba2dfdfe3c79b3a7728de2ca8730b496169e215569d8c48d71/npyosmium-3.6.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c83d106da2d1be2b72fca18c09d8eeb00c9f50aa3a15f12275c22a860dc7a052",
                "md5": "8220b3950e45bbcd23df7cc8e6b02a48",
                "sha256": "1160adab7544a78572536de455d977cdf0787e0ed3f4a48e5c1b9c25c2f0eaa7"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8220b3950e45bbcd23df7cc8e6b02a48",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1308083,
            "upload_time": "2023-11-18T18:48:57",
            "upload_time_iso_8601": "2023-11-18T18:48:57.923990Z",
            "url": "https://files.pythonhosted.org/packages/c8/3d/106da2d1be2b72fca18c09d8eeb00c9f50aa3a15f12275c22a860dc7a052/npyosmium-3.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51c2d49fe283dc600404ca4aba53ef54f8d40abf1e0a51fb2d13b8af8b4ae855",
                "md5": "9a26cb126f936d2cf4a704f5e5c9628f",
                "sha256": "f957a4b271b0ea62d2badf531cd380ee5567a32359e2e59043f5d2cbe7285b8c"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9a26cb126f936d2cf4a704f5e5c9628f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1287736,
            "upload_time": "2023-11-18T18:48:59",
            "upload_time_iso_8601": "2023-11-18T18:48:59.371959Z",
            "url": "https://files.pythonhosted.org/packages/51/c2/d49fe283dc600404ca4aba53ef54f8d40abf1e0a51fb2d13b8af8b4ae855/npyosmium-3.6.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21e6e20c472492f7b68529156f452db5ec388071e2d786cf7deebef57cc1fb8a",
                "md5": "c0fe76c294c92557e18ce2521f2581c2",
                "sha256": "a0e8a3f250fa57925b54bf3fba322e87ea4a5d6e2b695306bfce632c2d4064ed"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c0fe76c294c92557e18ce2521f2581c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1152982,
            "upload_time": "2023-11-18T18:49:01",
            "upload_time_iso_8601": "2023-11-18T18:49:01.351465Z",
            "url": "https://files.pythonhosted.org/packages/21/e6/e20c472492f7b68529156f452db5ec388071e2d786cf7deebef57cc1fb8a/npyosmium-3.6.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fcfcc66f749c321d984356323e70f2ca075d58a1d81d1d98124ec3798e4f201",
                "md5": "2116024f23d2784920a38fd8e9469907",
                "sha256": "7f7855cd80b9181edc2fc16ad80b8e92da2ffc3ba6178a2cf90e1e630f066c0c"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2116024f23d2784920a38fd8e9469907",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1311346,
            "upload_time": "2023-11-18T18:49:02",
            "upload_time_iso_8601": "2023-11-18T18:49:02.822233Z",
            "url": "https://files.pythonhosted.org/packages/5f/cf/cc66f749c321d984356323e70f2ca075d58a1d81d1d98124ec3798e4f201/npyosmium-3.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "567a6d5979e995896d2bdc3818d6d18f35c9756d35e5a865b349ad438561e51c",
                "md5": "237a34a03b535f50b9241731dc48f100",
                "sha256": "ffb3d41a2f1dab48420ef6b63a4b5520f321e5b51751069c05b87b5b2184fe86"
            },
            "downloads": -1,
            "filename": "npyosmium-3.6.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "237a34a03b535f50b9241731dc48f100",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1271147,
            "upload_time": "2023-11-18T18:49:04",
            "upload_time_iso_8601": "2023-11-18T18:49:04.453657Z",
            "url": "https://files.pythonhosted.org/packages/56/7a/6d5979e995896d2bdc3818d6d18f35c9756d35e5a865b349ad438561e51c/npyosmium-3.6.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-18 18:48:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "agrenott",
    "github_project": "npyosmium",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "npyosmium"
}
        
Elapsed time: 0.13626s