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.9.0rc1.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.0rc1-cp314-cp314-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14Windows x86-64

pyrosm-0.9.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (9.9 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pyrosm-0.9.0rc1-cp314-cp314-macosx_10_15_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyrosm-0.9.0rc1-cp313-cp313-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.13Windows x86-64

pyrosm-0.9.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.0 MB view details)

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

pyrosm-0.9.0rc1-cp313-cp313-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyrosm-0.9.0rc1-cp313-cp313-macosx_10_13_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyrosm-0.9.0rc1-cp312-cp312-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pyrosm-0.9.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.1 MB view details)

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

pyrosm-0.9.0rc1-cp312-cp312-macosx_11_0_arm64.whl (4.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyrosm-0.9.0rc1-cp312-cp312-macosx_10_13_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyrosm-0.9.0rc1-cp311-cp311-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pyrosm-0.9.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pyrosm-0.9.0rc1-cp311-cp311-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyrosm-0.9.0rc1-cp310-cp310-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pyrosm-0.9.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (9.8 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pyrosm-0.9.0rc1-cp310-cp310-macosx_10_9_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyrosm-0.9.0rc1.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.0rc1.tar.gz
Algorithm Hash digest
SHA256 93242cdc30d378558cebbaa23b5b841644ef131abfcafe17e43bf041910ce38e
MD5 23e24f35291c8cf095ff4de7f4492441
BLAKE2b-256 6efbd4083f9c234108de8ea0a87edc8161208e29a15d08a5dd4c0b2fd61dc8dd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.9.0rc1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.4 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.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d6e954a178c2854565b4ab1157972bdaba19ae1d1d6c34b0c7f07e774acc74e1
MD5 2e575d613dc91a13211a4359592d7c72
BLAKE2b-256 3ecde1b533d89c9838fa60a8d9f020c2d59feeaa5941b3d8405cdf2a7142b933

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.9.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.9.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.9.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae6538ffcbadf71b2f10e0f7ef8d0bb2bdc760737b6c957623e9729daab13391
MD5 cdcaa71d72d3e4dc4f56f812fc6c080c
BLAKE2b-256 0be3184a4c408dead98965d86995f2abf4542454a0647eb67c742d42f4b91825

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afca7246016494db4f9cca9663040a5a4e2a68cceeacdb15b03d0cc4058007c5
MD5 2254c65ac22768f297d010f373b6f359
BLAKE2b-256 bbe5d9fd32e382dc0b1a6a6236535fe444c65ffb679d691bbc2add027b76bc73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.0rc1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5af17483039a5bbf92706af36cd97b14afca8d789b078c83732b15eada7e1edf
MD5 539b12beff552c7407ea20f5daaf236b
BLAKE2b-256 df1e853b610370dc2fd2092ba5415204545c5e940c54399d6e06a3007c5d60c8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.9.0rc1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.4 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.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7e2bc3b216a8457aeba96af1f0be130a20677d9041d0affd57232b93ca4bde50
MD5 f38cf99245ab5251bcd5c97101b83537
BLAKE2b-256 625cdf1ddd798922e66c94e9c40754bde4aafc550bbe8fb76546b43c15cf9089

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.9.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.9.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.9.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c9a731db497b256353320d017fc5b9a8346d7d3584bce156177951ddc09e4c6
MD5 3e57cf1e0e82b04b4ab1def07f200140
BLAKE2b-256 433efb15b26ba572a74305b2461eaf45f462c57559189da208da0a71e1d13316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 929ec80715de984f9bf1820642ca7cf80d837793c1f372f9697ce353fd1893f0
MD5 5563a9d38b455294424af2a002dce65e
BLAKE2b-256 850e81a9924508e52ec483b5948ac6eb3cd2dd9a715745d937b70d8877dd8335

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e61d35ec9d9bacb1593b2e061829a2bb2a70fb3876c168a97a10a4f06cc5724e
MD5 e5c780ef0fb827932d8f68ea2c71317f
BLAKE2b-256 a2c50daa6435fcc2783cfbfc2753cdabcbec7b9af769142c4b45f50c8814da65

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.9.0rc1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.4 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.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b1086685976e83d60249bba5f88d7aa896e3d5b899bdb79808401f265adc576e
MD5 4315ed909f91d2df32ac6082004ed7dd
BLAKE2b-256 4003f1709dd34f1a1ca1a2d15c859bf6a39f66c6e8baa58b38c79b9afae10660

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.9.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.9.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.9.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8dba769aa0f9098ec126c0059474c9243ae4b525c0d4678c2b875a9137f0536
MD5 b64d2ec7234e1c88378d598a490ffa1a
BLAKE2b-256 f04e4bf9b777d7d107b5e2f2d896be39e7e0fce3c85dcb96c4485d95eb957d97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f4e2a3df36bb54a061920fef0f2338f0833a1b420157b7219399d1cc5a64fab
MD5 153f1f54a68a4e079ec6efa167a1fd77
BLAKE2b-256 0a6f0a7b1e07bf4c95d9b55ceb2b84e5775ffa734dd723b499dc266714d172cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6e6336290720ee71d0361894286eed026833076c59554cd672e85f0a66f3628c
MD5 8132130790ba3afbcc33f622aaf6d27c
BLAKE2b-256 25e77848d5ed8d8ca51576b06e0445d42e9ea93505e64828e312589ecd898e98

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.9.0rc1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.4 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.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c20d7c8a2d2d2c19b70f9f5a36c7bc9a94b7513bbe94c59f6257987e8121678e
MD5 fe4f3b2eb5b402be36347036ee3bd1f3
BLAKE2b-256 d96c1b1653ec9358b82d4928bf1bcc959145e35193013819a9ca2277bf81fa65

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.9.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.9.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.9.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e1749f2cb437c714eb5241789d87736a17e1914a0c737504d9e46a0c04f445f
MD5 fff8af29db1392c5c145bc8cc893f257
BLAKE2b-256 2f439043e805464b529b62eeae2b63eddccf8165602c5de33d6cb9c76250c856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 995ca43af9216e757d20fd4eea24f6cdf7d9954202a66b6edc7c7579aee3bbdb
MD5 fb5e4bb24db319802c477273393fa798
BLAKE2b-256 c4eca9f27141d6016eaff02f1c1cd8ae2a77add16d674cc26903ad894822a55b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a68d7ef57d8dc2f9629075a52ed7a29a061a3f7f7a4ef3809b0246d3dedc36e4
MD5 dbc031a70728805a626cf646351b43b4
BLAKE2b-256 38e214ab1568df145721f7deabe626d9a61a671e4526d59664e1c93c75755ba7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyrosm-0.9.0rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.4 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.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0122128fb8dcbc81b7ee1465e7c8b69590cb9b5e3fe813fc9363e9f504acdf83
MD5 e646031e05cbda6f0977c646dd5ae42f
BLAKE2b-256 c6cfb071be8dc5f114ac941851fb00d470315d05646127dac3aca16e83129f04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrosm-0.9.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.9.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.9.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1fb9d20ed0e3f20c2a99ddbfd568fd7dec65a8e2272ad594c3ca7c5b887bbdfa
MD5 18e22c04ef5b29761b36f594d3a3d7a1
BLAKE2b-256 409745ef3fdd74486ea75c20d7bd239b59a7f9d252a054324d85eb12bb41d8a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6dff441bbf31e7763d9ceb9711e3e320e892a013850210c47d41237c8ef74eb
MD5 51149533404fd987d8f13fe06dfe233d
BLAKE2b-256 c09f911f7c815932878d0802ba8e841660746efe733ce0d86b49a1400afea20f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrosm-0.9.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e58bad538fc652ef65112862dab50e48207737766092568bdfe05d4e0d1cae9b
MD5 d7f8767d3bc4657561ce24b28f00dc6a
BLAKE2b-256 6a35ce9fa698462b093ab0615c7da3bfe0c1e162b896e62dabe8dbc34e49f039

See more details on using hashes here.

Provenance

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