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. This makes it possible to read data faster thus allowing e.g. parsing street networks for the whole country fairly efficiently (however, see caveats).

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. 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.

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
  • 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
  • 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
  • export networks as a directed graph to igraph, networkx and pandarm

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

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.

Caveats

Filtering large files by bounding box

Although pyrosm provides possibility to filter even larger data files based on bounding box, this process can slow down the reading process significantly (1.5-3x longer) due to necessary lookups when parsing the data. This might not be an issue with smaller files (up to ~100MB) but with larger data dumps this can take longer than necessary.

Hence, a recommended approach with large data files is to first filter the protobuf file based on bounding box into a smaller subset by using a dedicated open source Java tool called Osmosis which is available for all operating systems. Detailed installation instructions are here, and instructions how to filter data based on bounding box are here.

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.9.1.tar.gz (3.7 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.9.1-cp314-cp314-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14Windows x86-64

pyrosm-0.9.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.1 MB view details)

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

pyrosm-0.9.1-cp314-cp314-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyrosm-0.9.1-cp314-cp314-macosx_10_15_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyrosm-0.9.1-cp313-cp313-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pyrosm-0.9.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

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

pyrosm-0.9.1-cp313-cp313-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyrosm-0.9.1-cp313-cp313-macosx_10_13_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyrosm-0.9.1-cp312-cp312-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pyrosm-0.9.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

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

pyrosm-0.9.1-cp312-cp312-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyrosm-0.9.1-cp312-cp312-macosx_10_13_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyrosm-0.9.1-cp311-cp311-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pyrosm-0.9.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.3 MB view details)

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

pyrosm-0.9.1-cp311-cp311-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyrosm-0.9.1-cp311-cp311-macosx_10_9_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyrosm-0.9.1-cp310-cp310-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pyrosm-0.9.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.0 MB view details)

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

pyrosm-0.9.1-cp310-cp310-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyrosm-0.9.1-cp310-cp310-macosx_10_9_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyrosm-0.9.1.tar.gz
Algorithm Hash digest
SHA256 20b16f98bbbbea4427ce4587fdaaa8d179c10094bbfa3a62b0a58e28d5345d11
MD5 1e6292ac12ef27d140246a66cb67f24a
BLAKE2b-256 4ebb170bafc7808a5a222e5c699f6e94d307f7ba89849a4ffc274161982d3084

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.9.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.5 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.9.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f2cdd1cef85243811dbf9b6b6d961d7f1f48ce019b44cb8b3b31f43d9768107c
MD5 22a5e84695f438c2dc61a23417cbf1b9
BLAKE2b-256 c157c5547e772acc670abbede29feb04643113e6a651824bd7e25556f3401894

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.9.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.9.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.9.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d3f5498bbf9c3bbb852816a0ca00446dc3d89acce08095d187f69ecb8375b18
MD5 4e3f9ce387299756e793ec3bc648cb20
BLAKE2b-256 0e7e296dc7691163c269675816e7ee4dc731db60656af8939f8e82aa840e14fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de57f6a808170f67144f72104880a934a07e3a6ca3c5c416c982e4856c93a61d
MD5 6f280ed98346175071f14bd938f6b826
BLAKE2b-256 06ee2701a57aa14c83c48065bf857b6fd3d06e4f8ef408bfc428ffda66b46193

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9623552dcef2359b854a71290227f56584c03218adc7ad159a6509710fe64735
MD5 45c40800299c56125a994ac56f4105c7
BLAKE2b-256 14193ba7295b5371fa6e672dcf1f4abf7365c39f5d65e42a5c58d5d3d3613625

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.9.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.5 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.9.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e42a973bbd730c2b8c75b90f226d17bc33a1e4387b8bd9567cb2370d064e7407
MD5 c32eadf222ca444d95b505c0b4eeebca
BLAKE2b-256 641cb834e2e233cd1e7976a8fcd1e410474a781d3b647e2d7f1b37021db4ad1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.9.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.9.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.9.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46285089d35b67dcd72a73b4d60c18e83afbc5c09bfe4061c3b2ad294c054e55
MD5 3f45003442d84098ef1d12ad840b9835
BLAKE2b-256 99fe3dccb8d8b984883c1da8e9fbdd302e949e9e065803310469543c2b93c28c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ee6962fb3ae44f82b1c7ee80a375081bad7383d5620ffaec29e9709892570a6
MD5 940df8a026e052a0095a23e17d6ae9bb
BLAKE2b-256 5cf4a08c1b8fa5bec82c3038f097926266e484aa48fbf6a31d1107d3aee3c687

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4d0a810ff5dbdab1014b1fda1f9fa8e1f592a2804eb4eb4a188d58f7f198d3d8
MD5 d48df6f70373923ee491d071c32a14e1
BLAKE2b-256 212aee8d558ffad3dd397ccf1a7cbe6d95f602408530b40ac8b9674cff1f51a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.9.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.5 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.9.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a30bf1e5575f8c67f5f1eb4c3971ce1c0979885782d787d74fc6b402626b4f52
MD5 38f9c437def2884542b09c3ae52d5d6d
BLAKE2b-256 64041a57bc2092e2d394bb586526a1d1201fa631353791bd50152cbba7f2a472

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.9.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.9.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.9.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9481603cfcc83eccdcca1ea30d172c6bb0227ed6ee7ed1576828dcefeb74dd36
MD5 0faf33fe5ef2dee80d9db14f15cabb5a
BLAKE2b-256 f648ef57a45bc05f7a33572f246e41a41515d0317ac1a7ee2dd67de647bfc900

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 208c9c8c97cbb665b08eec3533f5096c580c88e12766bb3ee125615ff726ea52
MD5 7c2c6cba0206a7a81598e361c11f0008
BLAKE2b-256 6460f63a525a1e59eee6c92ab1d66f065c849b4d080a013aa40399d099f8b71b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 65b06698730859f472cae1db0714b955d3a8327d78ee4c73dc696d69a6e751de
MD5 56aecd887c325ba5a944f1616e832963
BLAKE2b-256 5b4130a4d0c7aecb09606739b80ffd0aee6651725f9f21e492f66849f9b883fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.9.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.5 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.9.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fa1bf9b562d3da8fd51a68400765744d1572b5ebde674d41c1d1634cf1c4b622
MD5 bb89e6e6a6447f930dd7c2862eb13864
BLAKE2b-256 b476704acf9d6a1896850e03a313132701898f4679c7094b664727e4c9f25a6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.9.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.9.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.9.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b1a239ae9ca66bb02efa3f3d18b20618c9d207d2bb7bff749e0e046d13df2da
MD5 822d157a654a614b9bb20523456c658c
BLAKE2b-256 b8c3e6587a7e01dd8326f630d0521a9c9e4e845a6df87968bb3b4e67cd4f1b68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b09e649f0bec91d35d6cc3cbcf65cde52c6c3cf6b80999d9100108a3de2333bc
MD5 9fb19c2a91af1c04a207b669c7af6eee
BLAKE2b-256 981b2c7a57382743c7e76369f152152848457124f9544fda530b65d2535d88ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca5c11813e38fec0fe249b9b7aced59d0ef9db611fa98abb88c5844987acd25b
MD5 21f6dff3ce705d757ffbff3a9e4396fe
BLAKE2b-256 bc04af4582b43e23bbd52deeac49198c14b9c61693904655aaff27ac4dd6a645

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.9.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.5 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.9.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f7bf18df95c889a0be18d35e4691706f0eb8ab5bceb8c7886850490952b6d1d4
MD5 1e6b3c7e054b853cce57fe98f94d070b
BLAKE2b-256 9971cccae057aeb4eb161e1d51a615cb2e286eeec29dcf2152560ed3a59cab87

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.9.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.9.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.9.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9659edb4310e7fe552600b9a0779261c4e75e11dc92a2654b5949f32d6e3631f
MD5 679dc91551736d1f6353eaa62c085a9e
BLAKE2b-256 4732eef09f45127156b145c39ed2c24e0eaced109edb42333491ab60fddc660b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6a01d0435b59b984c6f689abccbc46e57a3c66c5c011f18bc2b9681cb54c265
MD5 17640ab2ac9e5ce90548d415e2675a16
BLAKE2b-256 77c7a4a55a5d2cbfa103f06cd0ca973988ebd4a9002c27c4dcb73fe908b4b600

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ab7fa1792b8544e6fc8a236fef6d7f87852d597f16192b2d566a9b9fe1981f3
MD5 12c29dc5fe71906da14be6275e39fc10
BLAKE2b-256 791537bade55fe5e15c1275db1e487577e92ec802a27842bd8a0549c92054993

See more details on using hashes here.

Provenance

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