Skip to main content

A Python tool to parse OSM data from Protobuf format into GeoDataFrame.

Project description

Pyrosm

Conda Version PyPI version PyPI - Python Version Documentation Status Coverage Status CodeFactor PyPI - Downloads 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 hundreds of locations across the world
  • 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 (+ allow searching by name)
  • read any other data from PBF by using a custom user-defined filter
  • filter data based on bounding box
  • export networks as a directed graph to igraph, networkx and pandana

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.8.0rc1.tar.gz (1.9 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.8.0rc1-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

pyrosm-0.8.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.9 MB view details)

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

pyrosm-0.8.0rc1-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyrosm-0.8.0rc1-cp314-cp314-macosx_10_15_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyrosm-0.8.0rc1-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

pyrosm-0.8.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.9 MB view details)

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

pyrosm-0.8.0rc1-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyrosm-0.8.0rc1-cp313-cp313-macosx_10_13_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyrosm-0.8.0rc1-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pyrosm-0.8.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

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

pyrosm-0.8.0rc1-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyrosm-0.8.0rc1-cp312-cp312-macosx_10_13_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyrosm-0.8.0rc1-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

pyrosm-0.8.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.9 MB view details)

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

pyrosm-0.8.0rc1-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyrosm-0.8.0rc1-cp311-cp311-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyrosm-0.8.0rc1-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

pyrosm-0.8.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (4.8 MB view details)

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

pyrosm-0.8.0rc1-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyrosm-0.8.0rc1-cp310-cp310-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file pyrosm-0.8.0rc1.tar.gz.

File metadata

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

File hashes

Hashes for pyrosm-0.8.0rc1.tar.gz
Algorithm Hash digest
SHA256 36a59582c3bc42f9b386427668611214c6a9b7d28846b3c8bf02dab54700c3a8
MD5 1274c70f0e7a7199da09d490fbb6c6bb
BLAKE2b-256 1bb29d93cea16ba3672419449a27a14470bb6a9566481328809de559866e1506

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.8.0rc1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.3 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.8.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 84a853e5ca3c74e2149094491373ace34c8a65841f681ccd1f23b34fb1c3eaf0
MD5 a3a567a99e0a6785cc8015cf9436eaaa
BLAKE2b-256 b37f3e821438bfd9d29b935bb3c3bf117c750c95aae4914d76b49b54d1bf1ecf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.8.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.8.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.8.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1617e241321b67b3e2e6420141dd69f5406cefde15415bcf6eeb207c58361dc
MD5 58a2cbd5913c9eb5e935d3638696681d
BLAKE2b-256 7d1fde7411d4f665ee6d1cb8d1dfa983de4c19909b5e02d1cb6fab175f0d7628

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.8.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bac80ba0ebaed87fa67efa18fa4aaf60fc452952ebd788bc6dd6b86cd2604545
MD5 a3d1f354c3e446276a57b73c9a2991d7
BLAKE2b-256 d25df0d1c413a37eb9335ebb3a923de3a794c8f3b45937aea31b139eb570cd08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.8.0rc1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7f35739834de1d3fe3916297d310d3a62847c6708bfaf780273e03e860671f10
MD5 85a6a9669dadd30fea3391e61988f0e1
BLAKE2b-256 e48d116d1fb2a8de2d177ea2e35c4c61dce4cf3b48d0bd092e00474d3e908b67

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.8.0rc1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.8.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 66c785f6a5c476cfd4e8e2cc8c5984aac66cba04aaa7b6483aceffc5b349de68
MD5 1de55c11b2da30e6fd73be6615030d7d
BLAKE2b-256 49a0abc573c9c6968cb1a878e536394c790d9577db23e2dadaa0f0cb50c83771

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.8.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.8.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.8.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 564914bd26267e137f868fa242f30e34ddcdc1dababe9ec07209ad9ac9db4332
MD5 04b0d209d2dcb439057a30fb0e5fb4b6
BLAKE2b-256 01392fd3ab3345f890e81303e2bd68142710bb68fbffd1d3a37d5feba5654944

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.8.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28da3901f60c9bb75e4a826106f3830fabf9eb85d4a8946308d5ed84bb3c72d0
MD5 2f399a3456666109319d4f85dff593de
BLAKE2b-256 a883c55196a530c1ab741f4cbe55ebeffc4ba8610a33e4ac68de1e01316500ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.8.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ea2f0b8fb16a72e8e3bdf7138a3d5b71806d981b7083536f2b1b517b9ef83cf6
MD5 c3782ff527749529a18503324fd56a5a
BLAKE2b-256 2e628b37c36d0e4a0b766c64624d28f4dd674304f711e703f4abd01d13290a47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.8.0rc1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.8.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 08c02ddb3050f8e3a07bf66d7d10646d96b221c68313cfd426e9b8e79ae57cdb
MD5 bcf0eb83656cea69a04094587433d155
BLAKE2b-256 d29db3f90209c887b5e63ad5c41fbdc4bd73ee9c883f8b0518bae5df2ed96ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.8.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.8.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.8.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5b93e364cc237a928b99977f22723679bb3092bbb798ee70e7c61090ffc0e1b
MD5 14a37c80251612c02e4beab98cb987cd
BLAKE2b-256 db4254cdcfa1ff0b9135348921c33d4938b317274860c35e4efb017e616d9641

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.8.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f3fc7da7fe0691cd9a2a0acafb28be2c7737702024c4e7edac0eeea16488859
MD5 0b10562f56f24531d01034e6b174f0b6
BLAKE2b-256 1a47156e529bcee422ab3a71ae3ae334bdda360dd1ef4a17f1de139e3fd48d36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.8.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ee0374546c65bfd2b42f1181229a3fa138d801d25b916e8ac6badf5b94163108
MD5 92631228775b5822389ddb6c08a50ac4
BLAKE2b-256 8f199d97b0d4a4d61a4484fec4c942d90de2d016efc97664ddb73022e21d3d1d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.8.0rc1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.8.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e43f55bd0d11d3f66f112e2f626f8ea2148462d7cff5f34d10caf4d45e30bf83
MD5 e9601da50c54496560f71d905c4168d8
BLAKE2b-256 a69b4d3db3783946f540b5423b13ddebced7204f5c61ef3fed1c7120e6dc071b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.8.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.8.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.8.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51ba2f2e403fb1f8499490fbac7e0fcd61141930952a16a24873843a35080f74
MD5 9f6a780b7cb6bc136357ce5acc998cb7
BLAKE2b-256 c64e9d9dc6285726f816080bc10bd0a8366e063e3d8ee3be5ab59da51725fdc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.8.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99534873d4af03431ff79f755985fd6f8bc711db9094a4b1729bb875ee0ea930
MD5 a4bfc86f88e091d12643836ee59df4fa
BLAKE2b-256 778469dbf7abe0f3093eabed365d254854d4a99aef714109c889e1321d5e9810

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.8.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3c939ed605b3c9606779722bd8397b8f6276e0ee6154ad6f3072c5772fa6997
MD5 cb73bedfd2f1ba76fb2453b96bc39a07
BLAKE2b-256 b57ac050b704d069e2f2aa64097c467ff5482576e41f0dbe5d7ff9e9e63f74ad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.8.0rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.8.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d00b8805ae5ab0bf87839fb5036e6908ad873c725131ed7491be7923c5c7b4f0
MD5 f47e8a865fd02bdb5c7abbb1220d70f0
BLAKE2b-256 594a1981231d7be303c91503f1c4cb426e147a3cda29e3a9857739423af4464b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.8.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.8.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.8.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09e6011c91ceaf0becb31203feaba5d13ae406ac0c601dad4ef9b84b66dfe09d
MD5 21b134bc4515d523f4c8102f8f9e4c7f
BLAKE2b-256 006fb41148d1d58ffaa5d554e29862845c207f3b12d5684b78344008ffc084ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.8.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 266886fe05a3e16cd78d4187b8e07b07bd72adf6cd5551a5c6a58bbabe5474ab
MD5 b4c847a266239b33ab38ed87507a6409
BLAKE2b-256 e111bcd98a1119178198b1e005133f2f8cf33f2c6289f9a9bcffb9f9d67ad08f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.8.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a0eb6976a8821ad53b6bca25fca8d4e559b39faad4d1e57f7c1250d3a780b79e
MD5 cf5c75da25ff1e2023b3f4295822f19a
BLAKE2b-256 499fddbc9b4c4774722d2f810290f24d4e4ca1db08fda80766cb43df5aba2289

See more details on using hashes here.

Provenance

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