Skip to main content

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

Tenkanen, H. (2026). pyrosm: A Python library for reading and writing OpenStreetMap PBF data with GeoDataFrames. (v0.13.1) 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.

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.1.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.1-cp314-cp314-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.14Windows x86-64

pyrosm-0.13.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

pyrosm-0.13.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrosm-0.13.1-cp314-cp314-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyrosm-0.13.1-cp314-cp314-macosx_10_15_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyrosm-0.13.1-cp313-cp313-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pyrosm-0.13.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.6 MB view details)

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

pyrosm-0.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrosm-0.13.1-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyrosm-0.13.1-cp313-cp313-macosx_10_13_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyrosm-0.13.1-cp312-cp312-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pyrosm-0.13.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.6 MB view details)

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

pyrosm-0.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrosm-0.13.1-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyrosm-0.13.1-cp312-cp312-macosx_10_13_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyrosm-0.13.1-cp311-cp311-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pyrosm-0.13.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.4 MB view details)

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

pyrosm-0.13.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrosm-0.13.1-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyrosm-0.13.1-cp311-cp311-macosx_10_9_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyrosm-0.13.1-cp310-cp310-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pyrosm-0.13.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.4 MB view details)

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

pyrosm-0.13.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrosm-0.13.1-cp310-cp310-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyrosm-0.13.1-cp310-cp310-macosx_10_9_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyrosm-0.13.1.tar.gz
Algorithm Hash digest
SHA256 984692c106153adbb6eacf5f698849ee6bbc8eeff6c74a3c76f2204be8a881ef
MD5 6d2a69ac3feb778329332c327e883ccb
BLAKE2b-256 7841baa6f4c8e829fbc878a45c60c938828593163902cad7623604fae092b3ba

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyrosm-0.13.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f1e2693e8a78ccbeec462b638d37c9edeccb03a768a65422c98b4588b48c2584
MD5 d8edf2823aa57c8b59caec5183a43b35
BLAKE2b-256 cd34eafc1077915791ab30ec9f93bb6ce5af1fa99efa97209781074fba36d4eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f09e02b983c45485a8a6da469bd2a8f0734f1b9e41576739ecb76d0f4b010080
MD5 765f63a8f60fa3f2ecea2a7c22b3e32b
BLAKE2b-256 af63f4181df487c457716243e60ddb35ebf057f1503fa1d889bc412419e61550

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-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.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 353c84987ce600942601b7ba1b492275974f33d36f1fef69540c55dc6d1e9dff
MD5 1ecb512cdd2d7b4a52b8defb66a64eab
BLAKE2b-256 4b70e2cd63ed45da26570c428474b4bf7633891e025047a31da66b24e295ad98

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97c43c59ed5c5c662e02eb4427d415ff9f05db6ef4cf61be89b98825cb95f3cb
MD5 30a7b983af97340be7c411be3eab06bd
BLAKE2b-256 02b6740244b648905c59fc607932303748c347b33f579388281e14e97877ff49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 437053956fb2db5e732b5fd61ececbab076d5ca2d2c435bf2da72670e44e54e1
MD5 68d53800a23333184df988eaca601ed6
BLAKE2b-256 045b9504a99a11d5b49c29b79e6c019170242622e2fec4ba9abded38764d6703

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyrosm-0.13.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 62fa3829890e79460c9c0b67e84b13b102e571e99b1f79fe4d692ed43250a22f
MD5 e7de2e7d4794c813115f78dd8ae24cd7
BLAKE2b-256 d0fb4b1179d50cf45c22d6a77811f09f6d0a64fee3f28d5b35ae2f0385f9624e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a37f00943342ac11e444a6490ea9858c54f670479571041565e7de2e798c3bf
MD5 95afb1578108942567e5fb02761b4888
BLAKE2b-256 2b1b6e181ddeafa60545ca030705f26c9103e09bea5f927122d8925b665bb59e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-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.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8693db29553ce176bc041d71a051bbdf72355ef77f9f0f9183e28806fa3f4946
MD5 8c8f5f31b2722fe5daeb55391b4d6b62
BLAKE2b-256 2ad623e6bdfbd388f018d8a5fa0744fb0971e0196fab102387d86d88c6ca9f3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 829e188107f1b3eb4804e6bbf3f071bb4f511afdf101fcc730b77fe09f052526
MD5 75b6ef5c6ee1654cf026fccbfc9f2040
BLAKE2b-256 5f2499f641809ae92946c22068a3ef7fbbe1df5d70038a3e0f096a8d268d6790

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a361f3461e806f8c1af5bde8c56f4f7460c78febd9a2cbb8c28a28436bbd4ddd
MD5 1a78ea4f6f3c74b95475abb3eab04759
BLAKE2b-256 2cf3b9afb0ab2e34262fd9a79b088f20d6a1d8e56bacfeaade34e7933ed9b471

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyrosm-0.13.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5697430d3def552f86d224bb5426d0143cf38895d9c9321040da90dfe0aca58f
MD5 4bc394f7000bdaf2c16acc2b09ad518c
BLAKE2b-256 26558ebed364494cc8c73124c162d4400b0ccc830bce04900a548e4242262839

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c3b68e6662a87ac743da1e4d56df402d3de71e4105a6b6ab45d4121d72752be
MD5 7fde2d9f0220a8f4adcd0d1a298e0d1a
BLAKE2b-256 23141d73e894b033bf82e17193c9469f585cb51f62059925ccad84fac9ed9818

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-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.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b830a5499b44fd153db0ba2b5eb28d3d965ab8636fc8e3d0f8c2cba58e19607
MD5 f03cae9092d6f0812114e2f6e871811f
BLAKE2b-256 a9b3d7e2c5a06fc77ed5986a2572e15587a6903fc0aa0d102d17343937a58c45

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71043d73fdc567964c38111c734dc76d13d3c1fdbf789b3a6ff987e0fae48e6d
MD5 52267e805e15e34e652f1d950cc65566
BLAKE2b-256 4421540a1a23c41081ab1f8f1baf3792c4134260c32a5ec6db4592b35a614861

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ceb0e8f9bc3f566a1904a222e9f2b225a05d4ea70bc505f162c9efe483501073
MD5 a404ae79a218630377213df06ed42202
BLAKE2b-256 c68394357d3f6e60220db5a14a92eee59cde31b9b8e41bc210b55677dc6b88e3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyrosm-0.13.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a4d5a51e30185d7c9edb50cf56f350e0643aa7dcf228ecbdfd47f0a2d4086e35
MD5 4a5218d8ac4efefd526ea462856829c8
BLAKE2b-256 c5d0d7d062ac2d7166e755845fca42764c42f8ebadf167a3074c62224eb0a4fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a81e5906928631c73995fa287d9336c6bc3ab768876d74dee2e605a38d3bf3ac
MD5 a20ab817fd91be9f8d97c14687103fd3
BLAKE2b-256 526cf2d93cb306a42b177ca932a32f55fbe787859e1570ecee31107e74f411fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-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.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4001f5034a5143d98c8e3ebbab038a91da4e96748a45d4534984d290a9fb1ff0
MD5 cb657053f08467e963ca2c8755888b2e
BLAKE2b-256 aef71ee1ac70058457df22f033c03a2a56271f5c30038cf676bb883e03e78058

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b4f3aab43e47ec9d5168d3bd08c29e90b13dddb307e41fe4a1a5da05a32a492
MD5 c3ed7e145d4ba53a0b234ac7640f74bf
BLAKE2b-256 b03711c9af3fe02f05713fa39775afd16aac86b10b2b14155c61f7a118f5ded7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c6eadeb86bc171ada13e341af2fe68ce4416a736648d2eb4ff6ed325bf9dc9d
MD5 dda7c5f668541e1d0ab21bf355f73eba
BLAKE2b-256 4b75012fff3a7ae3834f64ca03a8c64ea3b5e2abba16aaa133ac2e347cd5a6b6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyrosm-0.13.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 09f8a1277ee8c2fe8fb92579b18331e0fa98fd63bab2c6e5d4572518aba89212
MD5 1b73931e207728f4add23f69ebda789c
BLAKE2b-256 e83cf9385e30d359c2cbd9f3391b99329dc139e13b46d09995cff9580d0af9f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 abec0ec84bf316cef73fe9e8cab79fbe3e58afa92203a63ce36a3ea4f35ca000
MD5 c7292a191b8cae340d04fdafa6237178
BLAKE2b-256 ca7ffaf1b4f76a14169eda8d18bc195a6114c93990b6300b1ca78a33dfaf331b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-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.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bed50cb2c7aa4f20ff1289d8d18e65576b63c1c6ee096df13a3e6d56fd69c93d
MD5 c060f1b7f8bbb32c70fded9215516a02
BLAKE2b-256 bc87af22566a38b17cb99d7f9687f27e418d7a21657a1565a4dd5e41a8c3083b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94499acb3835702802e3136b7d6bdf41c59a22b56bf313c39cac86b686ff43fa
MD5 e80e567c011c08b18f3b06f9f60f67cd
BLAKE2b-256 a66992063849e648b607d5d23da1e0014ad96869c989c7a301e32ab5f4ded049

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.13.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf58fed3b75878e08b88e3aba85cde5d1718f4dcec0d510da292d0e44ad60e12
MD5 e2df28401bac731b345b0bfb7c15bad8
BLAKE2b-256 7dbd7dca2a25d9c42b3f06e9f7d4d65d3857de1bdfaeaa9b754290b6fc49f702

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.13.1-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 Sentry Error logging StatusPage Status page