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.13.0 is as follows:

Tenkanen, H. (2026). pyrosm: A Python library for reading and writing OpenStreetMap PBF data with GeoDataFrames. (v0.13.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.13.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.13.0-cp314-cp314-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.14Windows x86-64

pyrosm-0.13.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.13.0-cp314-cp314-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pyrosm-0.13.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.13.0-cp313-cp313-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

pyrosm-0.13.0-cp312-cp312-win_amd64.whl (5.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pyrosm-0.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (12.0 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pyrosm-0.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (12.1 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pyrosm-0.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (11.7 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pyrosm-0.13.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.13.0.tar.gz.

File metadata

  • Download URL: pyrosm-0.13.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.13.0.tar.gz
Algorithm Hash digest
SHA256 3c2fb5d8e1b85eb76a6ff7132f1638da26591ac95efd9f784139233b137cf578
MD5 213f1252eab6e1495ab6319dc3d21fd5
BLAKE2b-256 ff6d46c47720e9c69c44b966c895bdbb11e69404eaea8724a87a8992a24075c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyrosm-0.13.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.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d52598edf886eab1a56a1a8cd5b6aecd938acc17c0bb5c5737cb3d52a7deea41
MD5 32dd27b45de5ed4b5be206d78717956f
BLAKE2b-256 0e9a645ead41c9d8491837bc9df6651be643d7a8a6bac6f3f5791d8afe1348ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.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.13.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f6609770e9798d92a8f030d6dc27331e3d09e58b619848ec3b65f885ead2ff1
MD5 04ddd08eb41e9e0331fdddcebc83fbd0
BLAKE2b-256 0d966c90d7f065e7e08f18cbd95cb261462195bfd68fb4ed64e9911e8e44bac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35ba070188843ef46060fe39b3e58102a15edd013c1559c3a8fa34d004d778f4
MD5 0f78ca94e77db4569a375b506ed0cc00
BLAKE2b-256 792cfd2f93e221c58ee1e280c84518c45425e8b37d9fd80daaea83eac508b237

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 506cc46c56557b7257ce9db2a888eda3becd50a2302390606c2834a7aa7181c9
MD5 9c8765f9c48b788ed1501f13cf5b7a01
BLAKE2b-256 137e8fbc29527f53afb941e56476412763c5999641b17232e208ddd01481421c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyrosm-0.13.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.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0f6e37fcb84cb39aa2a3a949b86b6ddddb0a723d324b1c542cb3e195d1016d8a
MD5 ec046a4610f2e2032810885cff5a3206
BLAKE2b-256 bb254cfcbafe7d7518b268f0a441fdfd875e449b194c3c63fcd3bf79d06c1db3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.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.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 753c9133668e67faeccc3fca492f262785c87009e03d1275c35f64a1c4ff91fc
MD5 d585efd2f15fc914ea9f0fd051f495b8
BLAKE2b-256 26dd2cb7b37d10bd75043cff5cd3bb863c94d02c55758fae5f3224d2c465718b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae29c80f4ffc5b0da2f302931c0503236f73dbdf8dd44f306b490af777f03304
MD5 4c78d2ba620a881b24f1f8a8f0f0143b
BLAKE2b-256 d02d1ad3ea1a5728cad3bff7ca46e339527069dd7095edd07fea88ce6b7ec8dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e11f53b78eb8729dc240f243c85133d37a9eb44ba449d579d848d2bb0463dae6
MD5 4bcbfb8ec7ceccdb56937cde31b44f5e
BLAKE2b-256 fb2b07086d95bf7b8086439fb5cedeca40cd045e8bb8bca01662fd59844ab995

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyrosm-0.13.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.1 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.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 686afd60a650a3013f590416c4fc1f817f40527d9a1b76c05eebe3cea04767fb
MD5 24287935197e829d47ef1f70c3ad5a9d
BLAKE2b-256 e46dba9832512e9edfe7cee3e2d4ea0cc7847cb3eb2f9ab9d87703c6b17bb3c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.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.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95235d5e72b737abb6da2e519c97a54767109d4575a5d6a558cd0a10a162687b
MD5 e3fbbfc8e9e52dd1346c746926547ac7
BLAKE2b-256 75abec621a9a835e940d5dfc18392531d93df80fe48d657db6a32fec545da71f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fc07e4d78bdc7389851f7212a26b87e8dfe5f41859036df792a0a88cafa3acd
MD5 633691b5fb6ff98970f1524055dd88ca
BLAKE2b-256 58ba77c2188f9cfb75953aa1489de80eb6d69a4d5686d9f5e6ccbd1080719459

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9123a1ebe176ecd6ebc806323d5faf1189140288fe868754d9bc46cd8d0bb6f4
MD5 66cbb16fd44aaeb17900d8d4e29440c8
BLAKE2b-256 1c684f16d76425671c857b31f7fd37ebe577eaaa487f9625c51e9c0991d07476

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyrosm-0.13.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.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d705272b0b45abc1578f1ae00970dc4773668f58f08225f32d897e898eec43f
MD5 f11ce5597f08901aa8326aa48e240c18
BLAKE2b-256 86609fb12b6edb70f2afe739eb624a4d703deee3ab96a034b3c1551b21d1641a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.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.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02ba06f4a0883938e46eeebcddba6a4fa593d9f7a12bd1f94dfd8425c576dd2a
MD5 b53c2790c676bdd484ac799995e659cf
BLAKE2b-256 ceab9f4a10202f11bcdd9b2c9c2712d9430c53b103f22eb6cce72bc92788089d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34a0d7e5a6b3eb5ba88887e2fd553f2c0459c1c9f9e588857a40a84cf02aaf45
MD5 d67e018abc28365847306029bc3424a5
BLAKE2b-256 68469b3efb09264e8a443a36e7fc49a7de947e10c5ae287c53a45e1b6152024f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d871455cf7cd4e74b5f66884a290e835a17b9efade42a4031bd9ed0169371873
MD5 19e27494929ed80ee1cb2f5cdc1427b7
BLAKE2b-256 e484711bca010498a96f39b9ecf6cdad25ff2b5a4ad6d3ef5b1d434f89fc6f93

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyrosm-0.13.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.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 afa9f299f7f85d0b3c7b752b2bba6362d3707c482452b3cc124ca66b4a06aa3d
MD5 c310c940d58d96c691f95e6d11338890
BLAKE2b-256 420d0483e4d2e2f4667d28c3626814c58006304a265e5c736a04920819bd2bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.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.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd3a9f023d4dd54ebc8abd4c00269912d330632035076e904df5f6956a4e0dd4
MD5 f7c647b86ebbc17a5d03fb5a7b3bbbf3
BLAKE2b-256 89af6462ca5473444dc80ff2f96ae7f59b964e2b221e8a9fc61e7bab07481085

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e8c4e7fe0d4556a4d589497fefe0b91e75076dc4c68996481966e75fb4be0ca
MD5 8c86f36c380db2db4f7863638f039aee
BLAKE2b-256 7cd2eee4d559c1bd6951a5167c72ac1ac738f5915ce736300b9eba0a41c4c8ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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.13.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d604ac0e3ffb499733e3366d8acfaaad74e736f3d924bf7b1a11d87d28b1cd2
MD5 b7bc070ebc62ed736d2809ba10769a0b
BLAKE2b-256 ddc78ddc5ffca9d6845f80866f3d276c67f319985b6c1676ef0694eb84539290

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.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