Skip to main content

A Python tool to parse OSM data from Protobuf format into GeoDataFrame.

Project description

Pyrosm

Pyrosm – Python’s Rapid OSM Parser

Conda Version PyPI version PyPI - Python Version Documentation Status Coverage Status CodeFactor PyPI - Downloads Downloads (PyPI total) Downloads (conda-forge total) DOI License

Pyrosm is a Python library for reading OpenStreetMap data from Protocolbuffer Binary Format -files (*.osm.pbf) into Geopandas GeoDataFrames. Pyrosm makes it easy to extract various datasets from OpenStreetMap pbf-dumps including e.g. road networks, buildings, Points of Interest (POI), landuse and natural elements. Also fully customized queries are supported which makes it possible to parse the data from OSM with more specific filters.

Pyrosm is easy to use and it provides a somewhat similar user interface as OSMnx. The main difference between pyrosm and OSMnx is that OSMnx reads the data over internet using OverPass API, whereas pyrosm reads the data from local OSM data dumps that can be downloaded e.g. from GeoFabrik's website. The library has been developed by keeping performance in mind, hence, it is mainly written in Cython (Python with C-like performance) which makes it fast to parse OpenStreetMap data from PBF files. With the opt-in out-of-core ("streaming") engine added in v0.10.0, it is possible to read whole-country (or even continent) extracts quickly without running out of memory. Pyrosm decodes the PBF data with Google's Protocol Buffers library (using its fast upb C backend). Protocol Buffers is a commonly used and efficient method to serialize and compress structured data which is also used by OpenStreetMap contributors to distribute the OSM data in PBF format (Protocolbuffer Binary Format).

Backend change. Since v0.8.0, the backend used to parse the protocol-buffer messages is Google's Protobuf (its fast C upb backend) instead of the previously used Pyrobuf. The switch was made for maintainability and installation reliability: Pyrobuf is no longer maintained and its source build fails with modern setuptools, which broke pip install pyrosm, whereas Google's Protobuf is actively maintained and ships prebuilt wheels and conda-forge packages for Python 3.10–3.14. The change does not slow down parsing — see the backend benchmark. v0.7.0 was the last release that used Pyrobuf.

Out-of-core ("streaming") engine (v0.10.0). Pyrosm now ships an opt-in out-of-core reading engine, selected with OSM(filepath, engine="out_of_core"), that decodes large PBF files in a single streaming pass with bounded memory — the decode, the node-coordinate gather and the standalone-way read all run in parallel across a worker pool, and each layer's result is cached automatically. It reads whole-country and even whole-continent extracts (e.g. all of South America) quickly on modest machines without running out of memory, returning GeoDataFrames identical to the default in-memory reader (which is unchanged).

Documentation is available at https://pyrosm.readthedocs.io.

Current features

  • download PBF data easily from any location in the world
  • find and download the right extract for a bounding box or a place name (NEW in v0.9.0)
  • read street networks (separately for driving, cycling, walking and all-combined)
  • read buildings from PBF
  • read Points of Interest (POI) from PBF
  • read landuse from PBF
  • read "natural" from PBF
  • read boundaries from PBF (such as administrative borders)
  • read any other data from PBF by using a custom user-defined filter, including regular-expression values and Overpass-style filters (NEW in v0.11.0)
  • read large PBF extracts (country level, even some continents) with bounded memory using the opt-in out-of-core ("streaming") engine (engine="out_of_core"), with parallel decoding and automatic result caching (NEW in v0.10.0)
  • filter data based on bounding box
  • control which OSM tags are parsed into columns
  • crop a PBF to a smaller area and write modified OSM data back to PBF (NEW in v0.9.0), or export only selected layers (NEW in v0.11.0)
  • edit the geometry of an OSM network — move nodes, reshape ways, delete elements — and write it back to PBF (NEW in v0.12.0)
  • export networks as a directed graph to igraph, networkx and pandarm, optionally with topological simplification (NEW in v0.11.0)

Install

Pyrosm is distributed via PyPI and conda-forge.

The recommended way to install pyrosm is from conda-forge with mamba (or its standalone variant micromamba), a fast drop-in replacement for conda. If you don't have it yet, download and install mamba via Miniforge from the conda-forge download page — it ships mamba preconfigured with the conda-forge channel. Then install pyrosm with:

$ mamba install -c conda-forge pyrosm

or, with micromamba:

$ micromamba install -c conda-forge pyrosm

(the same command works with conda if you have it). You can also install the package with pip:

$ pip install pyrosm

Troubleshooting

Notice that pyrosm requires geopandas to work. On Linux and Mac installing geopandas with pip should work without a problem, which is handled automatically when installing pyrosm.

However, on Windows installing geopandas with pip is likely to cause issues, hence, it is recommended to install Geopandas before installing pyrosm. See instructions from Geopandas website.

When should I use Pyrosm?

Pyrosm can of course be used whenever you need to parse data from OSM into geopandas GeoDataFrames. However, pyrosm is better suited for situations where you want to fetch data for whole city or larger regions (even whole country).

If you are interested to fetch OSM data for smaller areas such as neighborhoods, or search data around a specific location/address, we recommend using OSMnx which is more flexible in terms of specifying the area of interest. That being said, it is also possible to extract neighborhood level information with pyrosm and filter data based on a bounding box (see docs).

How to use?

Using pyrosm is straightforward. See docs for instructions how to use the library.

Get in touch + contributions

If you find a bug from the tool, have question, or would like to suggest a new feature to it, you can make a new issue here.

We warmly welcome contributions to pyrosm to make it better. If you are interested in contributing to the library, please check the contribution guidelines.

Development

You can install a local development version of the tool by 1) creating an environment with the necessary packages using mamba/micromamba and 2) building pyrosm from source:

  1. create an environment for one of the supported Python versions (3.10–3.14) by:

    • e.g. Python 3.14 (you might want to modify the env-name which is test by default): $ mamba env create -f ci/314-conda.yaml (or $ micromamba create -f ci/314-conda.yaml)
    • environment files for other versions are available under ci/ (e.g. ci/312-conda.yaml)
  2. build pyrosm development version from master (activate the environment first):

    • pip install -e . --no-build-isolation
    • (--no-build-isolation builds the Cython extensions against the build dependencies provided by the environment, i.e. Cython and cykhash, instead of refetching and recompiling them in an isolated build environment)

You can run tests with pytest by executing:

$ pytest . -v

Citing pyrosm

If you use pyrosm in your research or other work, please cite it. Pyrosm is archived on Zenodo, which provides a citable DOI (10.5281/zenodo.3755057, always resolving to the latest version). An example citation for the pyrosm version 0.12.0 is as follows:

Tenkanen, H. (2026). pyrosm: A Python library for reading and writing OpenStreetMap PBF data with GeoDataFrames. (v0.12.0) Zenodo. https://doi.org/10.5281/zenodo.3755057

A BibTeX entry and version-specific DOIs are available in the documentation and on the Zenodo record.

License and copyright

Pyrosm is licensed under MIT (see license).

The OSM data is downloaded from two sources:

Website Website

Data © Geofabrik GmbH, BBBike and OpenStreetMap Contributors

All data from the OpenStreetMap is licensed under the OpenStreetMap License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyrosm-0.12.0.tar.gz (5.4 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyrosm-0.12.0-cp314-cp314-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.14Windows x86-64

pyrosm-0.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyrosm-0.12.0-cp314-cp314-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyrosm-0.12.0-cp314-cp314-macosx_10_15_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyrosm-0.12.0-cp313-cp313-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pyrosm-0.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyrosm-0.12.0-cp313-cp313-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyrosm-0.12.0-cp313-cp313-macosx_10_13_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyrosm-0.12.0-cp312-cp312-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pyrosm-0.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyrosm-0.12.0-cp312-cp312-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyrosm-0.12.0-cp312-cp312-macosx_10_13_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyrosm-0.12.0-cp311-cp311-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pyrosm-0.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyrosm-0.12.0-cp311-cp311-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyrosm-0.12.0-cp311-cp311-macosx_10_9_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyrosm-0.12.0-cp310-cp310-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pyrosm-0.12.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyrosm-0.12.0-cp310-cp310-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyrosm-0.12.0-cp310-cp310-macosx_10_9_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file pyrosm-0.12.0.tar.gz.

File metadata

  • Download URL: pyrosm-0.12.0.tar.gz
  • Upload date:
  • Size: 5.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pyrosm-0.12.0.tar.gz
Algorithm Hash digest
SHA256 447ba8b6aa775d5487322f0b21c52489ca9e9b71ea3c1d71f4e3fe89b0778f71
MD5 86797d62c3b787cf85f7fc9600b0f9ca
BLAKE2b-256 6f4ef94b9c1c621810d70a8620966892b4d73b2086349c09b66d7f87f05c32fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0.tar.gz:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyrosm-0.12.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pyrosm-0.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c34e65e178f175986454b773ab032babdbf1cbdfedd59f82811e2072f7e4e2d9
MD5 0e9a7dbbebfcec84e4140f25a51cb8d1
BLAKE2b-256 f3b574f63cf9a97e7dc83245bfb224aacf041408ed83dc8eea8bf7b34a7e69ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp314-cp314-win_amd64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54ea157defd43ba56067ac37b8bdc39b681d2ffa3f14cf4868534e1cc5a5dfd1
MD5 baaac05761bb5a92818eab4bedf41fb7
BLAKE2b-256 10997ce935fd8b99e92a3710f574a688bd8d48598e5954013e444691a798be89

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbdd007142273f01a3c419c7dc7697d3cc32bb92e7dd3e0c5c340e59934f2596
MD5 dbddec0e991e4c88717db1d8e582d179
BLAKE2b-256 12bd7dfe65a88aeb04e4faaea3d0dffb17c3e4ea1e72794a8352f35159a6f34a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7cd4082498c380ef09fc6434c436e265c63c31c868fd6a704aa34dfd9fbc4926
MD5 0a278ef69eb090456c39dfe001a867b2
BLAKE2b-256 1b9a29589745956e01703854f09891e9b4c749981cb4329029b5f9597189c610

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyrosm-0.12.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pyrosm-0.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 af2d36748c3281a964fc4b4a4121756700740ec82fa61c36e7659d2dd7c5f271
MD5 9bc3820e6178b064b641e357b7369ba1
BLAKE2b-256 c218fb07f36c13e3e071529d6708431d7a1277492749ef86217b9f1097d17433

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp313-cp313-win_amd64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2663c0b0d20e79f7a134ceca2ace148684a8d1d195a3dfedf1a4e7352b1f797e
MD5 f10e2380b9a7b876f4dd19a38e6afbcf
BLAKE2b-256 2d0ac3287f77ec4ead00b8529899ca0fbfa80cb72df8cf4b6645a3ff38684361

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3d2a78515281285dc84aea82529c5a76a683e1a3dece16b9626c46795878385
MD5 780b9e366b1ba024ae2764436c3d39d9
BLAKE2b-256 99eba9efc0a436bd61b1a9633ee4890b0377613db7a78c84916dbe957049cdac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e6d1caa8f3e4343211b5c98a98ae784fb826f18c533d2eccd24e416c13a6ce86
MD5 a69291f6672a6cfa7ddfc82c45203f70
BLAKE2b-256 16043c2af83bfc3da4c8bc5a39cb2d12fda023cf4b9375b7bdea885a11661172

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyrosm-0.12.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pyrosm-0.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 462129649e87e896125465d2f6007850d3ddefd114a75c30725c811971e01733
MD5 5e14f63d2cbb37df80a58d43645473b3
BLAKE2b-256 bb7b5ead42d5784d7333b9c2a3c37e8c170c4f03a8c8b44c3484eb5687f25039

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp312-cp312-win_amd64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d583fe9ab8603ab14509c8d18e9ca694abcbc1d29101032453cd0628d72e1c1d
MD5 0aaf0348f12a8e59a2ff77c9f630841e
BLAKE2b-256 a916588250269bec1d9163b734a3c4ca4134b09c117d7693148d295b738e392a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bc74f3fa16cbd66462fd82279b5634c5192f31562d90848716b7b4cb5b8d2a4
MD5 3774b6a9992e34dbd3c996f327db2f76
BLAKE2b-256 ce84bae54144a9a1e15e8d62555969491703fc222d0a45236bbeff966ede9e7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fc69844fa990e208ff87adc286f10451ad7b744ccc0db8f895c2e80b17c02fed
MD5 2d5b160a71b1d4162322edd3f7eec0d7
BLAKE2b-256 85e7989d9bc46dcff6ba96951346c3b046692124edbb7a184f5e74b0fce4d637

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyrosm-0.12.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pyrosm-0.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2a89575eaba418e0b94b7dfbb2b341120929f196c04689655fa017e051b383a0
MD5 9443b47e2c62207eb4688c959891a558
BLAKE2b-256 faca22385561df75f56d7e40095446141649ff2ec15b2f9d370beac2714b5999

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp311-cp311-win_amd64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe7b0e1d9cf91db815a902fb9fba1d2fd9d5192c3473123cca5f66e4534d95fe
MD5 f3112f1af40cad74dbc31eac9ad2f237
BLAKE2b-256 fe61b5c2841989e39277d09ba8e189b96b1cc79293623d19ac53f90f02b5024f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 137ab3b8a49da6d63ba894add8960a540313918d5739042ae8543d0245b56c8d
MD5 5866baf9ca0f9330e7ebc1409034ab27
BLAKE2b-256 00cb9d60bee2476b114a54dbabff5e648c291284957f3ecf1d86492f206dce4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3bb23d5daade496e58972d6578b37f1711cd60a094edbc8a028c13ea4f7e5782
MD5 2214ed10f76ed3e73f27581e18f052a4
BLAKE2b-256 ae456c3046d33011097f2345664a0aa083350e10f8b04a596722191e077e2b69

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyrosm-0.12.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pyrosm-0.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d5cf4324aae17c40f4af76cf47d78852422a679d5e451bfff550a9172ff6853a
MD5 56fe0cce11bff0164b383f3689fb5daf
BLAKE2b-256 2f6b5acf08ac84b7a9d242f6add139fc487be50ccd4df7dc68ae4a24f7f26f5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp310-cp310-win_amd64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e20a80e5fb316177c9a16543481101d67b0ba302fe7f34f8bf73489eb553b0d9
MD5 c3fb59565ca12fe5b5b9d93c42495f98
BLAKE2b-256 71f01eedda58f88a4eb75975d129c2bc1874ce12ccfad708905f3002bff5acf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c4fc028a180771c41e25d2b559fb25fc9f02e169c3b26e0085ce116360b474f
MD5 9213c8c349df08dcb8d4b06e965420c5
BLAKE2b-256 3040bb42af9fbc8b1294ba18a66d62b96960cf9f7f3f1e35542bc8364596040a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyrosm-0.12.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.12.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4901ba3f637e3776b1f9240324a7da244130433c55bb1c052334c699f53ba0f
MD5 c8ad28f68d1596ee0455a543005183df
BLAKE2b-256 68cb6d4eca07b6474e6442884c45ee654b01f0798cb7e577bbf2393b7c375e53

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.12.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yaml on pyrosm/pyrosm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page