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

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for pyrosm-0.11.0.tar.gz
Algorithm Hash digest
SHA256 d81ebda14461c570cdb757b4ac9ec369f5a8959eba5eff6edd7760653aeb4600
MD5 42204dc878587f72f10f40fd87af7cf1
BLAKE2b-256 6fd17e8ca4e359643d3b1732a665395f0b574558b21c4727bd4f17a55b179238

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyrosm-0.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a00f09e73f31e33441e2871d55e5bfdb1762bbda37e9392bb50695d4ddff7261
MD5 68d42232440ab096462322aa2e0a3ffb
BLAKE2b-256 edf09d13747916cb3f0c7a3fdcc7ad7b4ef67a2fd0c4abc01ae6109216be5617

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.11.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.11.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.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b7d76360f8eca4707d061bfd6bc874898aba6bd66f3413d5595ac6d58c3f500
MD5 9fc26bc370f1d6291372d8960c52f5e5
BLAKE2b-256 b2869b28fcb71eef69c951dde78cf581531957e26460d582684b0aaad32d608f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a65b7777d973e7882fb9fc7f3c2029bd88659409f137f64afb587d742b270aa
MD5 c01e7030281c0f7b1d8018d8333312ca
BLAKE2b-256 47d4f6d4dcee7d216e1d0fd86330b9549a0c7d4a0455d61ec3b9650a6e2efb94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5a602fd99f102cbf2d75bd08fb040e45b1d1287e5a19ca7f1fe28806f407a0d2
MD5 b444e3e7eb5b192afd34dc804e0cfbd9
BLAKE2b-256 282bc030c3127d3ec2cd3635733a5f084eb13a6471763dedf8249d4ffe7fc17f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyrosm-0.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 56b2a0bd494fd49e10592aed9a509f14ba1df0d395d67c62c455c9894d696585
MD5 030de944d785f0e9737dc6c1392a109a
BLAKE2b-256 4e23daa956785316c269f4736b1b9fae561ab362e4a4c138fb8e155f69b89a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.11.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.11.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.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 444b870f129d656dfad51b892b1677e6b35d3874c71bd746a9018def601e7cff
MD5 a730b549809d8d4fcb4827796e287816
BLAKE2b-256 726ad3c5ff729b4876630e216c40948cec637a7cd9b2e0c137b81a3e9bab8658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8288419480393312ed037cdb258cbc283cc28a66654e8e8b5064464d1bb1dc75
MD5 a535ad787bc5c9daf6089edd8e54dda4
BLAKE2b-256 c35aef19c18b31919575d46361801c8a97b7065e5edf0678ba103b38eb640300

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0fe4f890afe27fa1d751dad9e19e55020c286fe446d07db645f83192df00100a
MD5 6115b3b4cc9c71252287ce0ffbea46f0
BLAKE2b-256 5c01e86cd478496d848d152495f407b87f80f7a63c52d7218a2504cac34ca97d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyrosm-0.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b5e01d83a41e3cfde0a71bb4533905a76349123564c77eed72a55407cf011d3a
MD5 320d60f26e750d764983eb0f894356b8
BLAKE2b-256 22a7216bdb27f4bcd2b4bf10fe373e394db71e972949d5bbf0b213054142d02a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.11.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.11.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.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d00bdc7e21b5188540ccc065fb5159805afcb42662c82d6d51b684c6b52ac6c
MD5 44a61f94f7a70893f93008c0cee6b5ba
BLAKE2b-256 4d499fbf2f1a33e816b70c663d3e813e8e0f1067dca004d661cc1177eb2c310a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d769910b0803a67b8b0d7b1f49bbb69cd789534f9c0bf447981d892932ffc5d
MD5 16ba071db9aecd7020873a66d228136e
BLAKE2b-256 fe01d7d7a25251e20aef7ac9d8362c73b6276fb9772b857fbf82bdc2f8cdb841

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e5c00140e84f327abb1e2ded4289c8aeca728ff7730b4a54b2a99073416fe1ed
MD5 c6ec4a33a5d0de461a9a34f653c8e6c9
BLAKE2b-256 106868b4479f4a70662c03a53178d5ea2883f5cbc8a9b78674d45b1b30cf8d44

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyrosm-0.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9d6463c5927fc7460dddd1363a4c8dc218b8a4d432eb2babc12b86d1abbcc197
MD5 76815257828e464a531565f241e820a7
BLAKE2b-256 a744b19df21403e35e39c77501d28e8c801ca3bacdc3bda4385a020e21077640

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.11.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.11.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.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15d8ce8527048763ed80427da9dbf87d3586df815dd8c2efde7117cac773e97a
MD5 1eaf762948e6cdf77fa952c706fda694
BLAKE2b-256 f379363c6337c6b2939d9d1241e8bc7178667c7eaf4e43246703017720068552

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aed62e871f5645fd65d87b24291d88b2351ef10706b8f3ca5cec35a98c765777
MD5 6e4abc0c46036c612fa0414385d54906
BLAKE2b-256 18944289bbf1f8f6f6604e3d0f8664e003b3fb28d5440e4c2f01919d5eeb5847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12bab68538463f27b2453e7fd82e2bcd8b8f0c3645d155013810832332476021
MD5 5e945d706ca05b52c758abb7f9ff5152
BLAKE2b-256 4ad702c943811e63ee7e19450725072d301ed413dae6704126e73078260d4973

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.11.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 868251fe5d6e133d3f5df215d4da5dda5853e924adf785a9041f2f4fe5d1b927
MD5 17cb206cacf2cd1aa170f786f84f276f
BLAKE2b-256 6588c3451b58bde0bab3ad15f0bb2d4d7b42619c592f0c923f30dfba7bad4b25

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.11.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.11.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.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5d93b374d6c81bd918f1f5fd0b6da45e7c98bb6de23c300205c44acd75db4f4
MD5 e48eb97e060c0d0c82fe98c363bf4531
BLAKE2b-256 88610d71e68a6e15d40d0a580323c36b2c26294a444a668e4c92ebdf170aa802

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38cbeaba2c11a15423b3c22562b8054ea81c0242f3dc155d6ab6497e77041cf8
MD5 1607b0028e3bbfb559092da91d1236d7
BLAKE2b-256 34a39d4228299d909457fe947bdd244ebee296fb94181b75af14831893e5ce94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.11.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77a8071a7e83f86b56ac1d7fabbda1525f7fb9635b6119795a76ef8f2865ba51
MD5 85d933e7fda413ef2fcfe613aa907a0b
BLAKE2b-256 1785471fcbf9acdf239f9c02ca554b3265dbf75328b8892a9a810a807622b4c9

See more details on using hashes here.

Provenance

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