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)
  • 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.10.0 is as follows:

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

Uploaded CPython 3.14Windows x86-64

pyrosm-0.11.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (11.7 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pyrosm-0.11.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (11.8 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pyrosm-0.11.0rc1-cp313-cp313-macosx_10_13_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pyrosm-0.11.0rc1-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.11.0rc1-cp312-cp312-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

pyrosm-0.11.0rc1-cp311-cp311-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pyrosm-0.11.0rc1-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.11.0rc1-cp311-cp311-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

pyrosm-0.11.0rc1-cp310-cp310-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pyrosm-0.11.0rc1-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.11.0rc1-cp310-cp310-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyrosm-0.11.0rc1-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.11.0rc1.tar.gz.

File metadata

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

File hashes

Hashes for pyrosm-0.11.0rc1.tar.gz
Algorithm Hash digest
SHA256 43f42c056d82319a3aceb2bc0d98eb9e887a42df0f1d2555ed7b60f971171c24
MD5 f426f19f5ac85a78885c6d239667463c
BLAKE2b-256 81aa506f02f8974535ab5ba39e9ec6909d0fc51cfd646ee15f50937d372704a6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyrosm-0.11.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5feca1caaff48bc3fa3d84972093155cd2f460cfb98227050f4cb07a1a578c35
MD5 89fd1d9aa6a016c9922582b9d0f0b7a3
BLAKE2b-256 6cd8e3ee06ff8be9ce927208f8bcae8d1ea695c61d1ec154cd2cc250f66d6a44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.11.0rc1-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.11.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b7143d5c6f5bd11306f613a9563f4e3232390fa4a7fab3bf5cc1e06fcd90d0a
MD5 2b7f8a9eb78a6e1f6efaa6f29fb0d249
BLAKE2b-256 9f7116e7acfb5ff0b09b967d3f8b54b693661d4105ab2d62b1675cda2a3cd974

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31399277cec5f6b312d2f5edf2883512a3ea2b610ef40cc943ceb5c98b121268
MD5 ee744548d46d439c539da6f590d31ba1
BLAKE2b-256 7e0f3fd092157f8619705ca95dc62cb7815805baf6d734c3fcbc6eabdc822084

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e3359290185fb93fa4b1521001466404d368cc8b8bd2357c8bfa62dfdc6a850f
MD5 96f633f5daaaef757fdb813d0fb6cdbe
BLAKE2b-256 5a84f33c2aa7c16495e6b5fc4c7d8bae5f3b02e8a07f4ae0a196b8b2382169cb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.11.0rc1-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.12

File hashes

Hashes for pyrosm-0.11.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bf5697902487afe5d2de8d24d3b65eaab6e5246867721ef5068a323563869b26
MD5 20771bed4afdaefa628584b46f82dbf3
BLAKE2b-256 b0aeb5f3b2a08be137d1fc202a34973701987cf0f60ccd609bf4650f6ec04a0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.11.0rc1-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.11.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38d6eb9e355e011c90a944a549ba3bd66e65115ffee8a032cccd429324e2f124
MD5 6d78c553572b057ef70fa0bc6af88c05
BLAKE2b-256 e009f4a3ab78e6f7632b8565010eca36d064918c9b8927232d49f551f9c9016d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6502a3554566d1331626795897cf87d36072e59c088eedc403e60e0240f183b6
MD5 b6d95b08a1644daf62032af2a302bda4
BLAKE2b-256 ad9dec88d51119c3fb35aebcb17671623868fe88133bd0b32cddf0fdc3603032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4e5c187adaad5fe0d1ed7387ee1ea41141f0a6eba186e7f5206ecb8f3c1e4505
MD5 6c8200e718771aa5d9b623f7a52643a4
BLAKE2b-256 c94ece8a3b342cfffe2003012923292938c46adaa080f97a3f094f18059c503a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.11.0rc1-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.12

File hashes

Hashes for pyrosm-0.11.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cd08d2a969584089f09a2ff6e79058dc50f92b68f96cc9bf7a5abf4bdf370145
MD5 369c579a3de490f8d5c38dfb4f1d19f4
BLAKE2b-256 a87f879453cadb4c438b78c9fcab4533ffb87ccf88bfc62863797eb4ef981097

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.11.0rc1-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.11.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 502cd5c21ad8752147565f3d90d88098f7ed9d07ceca1d8ebf0113e93de724d9
MD5 4a78bfd0b82544f08a4de5fd2a210b62
BLAKE2b-256 9cb6f02502f1682762e02f5981af37d00c648c73bd9985f12cccbb6b1ef3665e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10c816c420c0175485a691f13c2953595c0ce07e7a103cd61444f5f9bb990f8d
MD5 76bd97083ed5fbdda12d64c2827a96e3
BLAKE2b-256 2119ce53c67e2c2353da81c28c49497084f6e53684bc3f5e42495b9b7b175daa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d99ba60c2039c019d409a7935fb71991d00e0665bba0900b5e3b156e00187846
MD5 2dea4446d5756dbbce4076fd96308000
BLAKE2b-256 376d528d6757d8c2fd8117167e656dd624014badb10081c53d048e822af474a1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyrosm-0.11.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 77448c526709279b1813eaa6c057649ab4302b103893a3330ea294799c4ec79d
MD5 5da63d646f9f024c8202cfe820869f8b
BLAKE2b-256 b448cb0e3f95a6a1397a4dafc55fc38aaacdf23494b40e4466683f059b073240

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.11.0rc1-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.11.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 acd6dd15ebbefb2a847be539570b99d1b3173540d0f9434dd9b73d06ea1ebce6
MD5 893df3d0388c5028c5e4f0afc11c9c04
BLAKE2b-256 cf9745603198419f384ae5cf896356c592c4d10863ec0ec6dd6c4e47231abdb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f40fe564de425ffff0b05d0ee6004c33d33891e22e58faa38f7ae507bcf0ffce
MD5 6cc2e547c54e43492bcfe2b342da334b
BLAKE2b-256 c59d80f8234ba96570311bc5198dcd2ae4217cf7ee9f3f713dbba00cb37a70b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a37963f6c7bad52d6b044f11fb0f20673af99542d8d23f7bcf0be3e37c96571f
MD5 23ab95d4c4736d38e58a59d27604afba
BLAKE2b-256 6a67a7fa913f91fc4efb906171d66d721058da98601362d9c6af40dfa1fcfd79

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyrosm-0.11.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d810e89a71c26cbba22db0f12778e16555b6c91460c189e5bafbcd5004af552c
MD5 2f6c01995ba20c1abab510efccaf45a3
BLAKE2b-256 197139562d45f8bb719eb47e34be17bd32e453c559ce5972bff596354601948d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.11.0rc1-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.11.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5306672c502b1d6101f6f456ffb6c23cebd5bf7d6576cac286666065999d6856
MD5 986a3cbed2c081199ff39b26fc95c10c
BLAKE2b-256 af0771908be73eac009473784e64156248323845d63514195342ba26ceebae11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1eeaea9088ad0c3215fa53cb8ed2937c4785fc3b4cb664b546fa2dde5af63c18
MD5 029836fc5ac6263eba4ad3a46fa3db4a
BLAKE2b-256 7d42ff9a5632e92c56713f034a2782cc87109b75ca880eef2e7fc64e4710504c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3cd279eff7c80138915096f74eb65f6edd09e0e541dafede0c89dcda9ab3c65d
MD5 4781a04782b0f51cb95b8439068d3747
BLAKE2b-256 532448cfabf7c2d472a39dfa49c60879ef3352646c6d7d3f6612603c7beffc5d

See more details on using hashes here.

Provenance

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