Skip to main content

High-performance multimodal public transit routing library

Project description

Ferrobus: Multimodal Transit Routing Library

CodSpeed Badge

[!NOTE] This project is still in its early stages, and the API is subject to changes. Please check the documentation for the latest updates.

High-performance multimodal routing library for geospatial analysis workflows. Built with a Rust core and providing a straightforward Python interface. It aims to be orders of magnitude faster than existing tools.

Unlike alternatives such as R5 or OpenTripPlanner, Ferrobus doesn't require Java and installs without external dependencies.

Core routing functionality is based on the RAPTOR (Round-based Public Transit Optimized Router) algorithm developed by Microsoft Research. For details, see Microsoft's research paper.

Features

  • Multimodal Routing: Find optimal paths combining walking and public transit
  • Isochrones: Fast and uncertainty-aware
  • Travel Time Matrices: Compute travel times between multiple origin-destination pairs
  • Batch Processing: Efficient native multithreading
  • Time-Range Routing: Find journeys across a range of departure times with rRAPTOR
  • Detailed Journey Information: Get complete trip details (in progress ...)
  • Pareto-Optimal Routes: Discover multiple optimal routes with different trade-offs (in progress ...)

Installation

To install Ferrobus, run:

pip install ferrobus

Pre-built wheels are available for the following platforms:

  • Windows: x86_64
  • macOS: Apple Silicon (arm64)
  • Linux: x86_64 and arm64 (including musl-based systems like Alpine Linux and manylinux2014-compliant systems)

Supported Python versions are CPython 3.9 and later, including PyPy >3.11. If a pre-built binary is not available, the package will be built from source, requiring Rust to be installed. You can install Rust using rustup:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Quick Start

import ferrobus
import datetime
import time

# Create a transit model from OpenStreetMap and GTFS data
model = ferrobus.create_transit_model(
    osm_path="path/to/city.osm.pbf", # OSM pbf file, preferably filtered by region and tag
    gtfs_dirs=["path/to/gtfs_data", "path/to/another_gtfs"], # feeds, operating in the same region
    date=datetime.date.today() # date to use when filtering GTFS data / None for all dates
)

# Initializes and pre-calculates transit points for efficient geographic operations.
#
# Transit points represent specific geographic locations and should be used as inputs for all route calculations and related
# operations. By creating and reusing these pre-initialized points, the system avoids redundant computations of geographic
# positions, resulting in significantly improved performance for routing and spatial queries.
origin = ferrobus.create_transit_point(52.52, 13.40, model)
destination = ferrobus.create_transit_point(52.53, 13.42, model)

# Find route (departure at noon)
departure_time = 12 * 3600  # 12:00 noon in seconds since midnight
start_time = time.perf_counter()
route = ferrobus.find_route(
    transit_model=model,
    start_point=origin,
    end_point=destination,
    departure_time=departure_time,
    max_transfers=3  # Allow up to 3 transfers
)
end_time = time.perf_counter()

# Display route information
print(f"Route found in {end_time - start_time:.3f} seconds")
print(f"Travel time: {route['travel_time_seconds'] / 60:.1f} minutes")
print(f"Transit time: {route['transit_time_seconds'] / 60:.1f} minutes")
print(f"Walking time: {route['walking_time_seconds'] / 60:.1f} minutes")
print(f"Number of transfers: {route['transfers']}")

Advanced Features

Detailed Journey Visualization

# Get detailed journey information with all legs (walking, transit)
journey = ferrobus.detailed_journey(
    transit_model=model,
    start_point=origin,
    end_point=destination,
    departure_time=departure_time,
    max_transfers=3
)

Travel Time Matrix

# Calculate travel times between multiple points
points = [origin, destination, point3, point4]
matrix = ferrobus.travel_time_matrix(
    transit_model=model,
    points=points,
    departure_time=departure_time,
    max_transfers=3
)

Isochrones

# Create an isochrone index for a specific area
index = ferrobus.create_isochrone_index(
    transit_model=model,
    area=area_wkt,
    cell_resolution=8,
)

# Calculate isochrone (areas reachable within 30 minutes)
isochrone = ferrobus.calculate_isochrone(
    transit_model=model,
    start_point=origin,
    departure_time=departure_time,
    max_transfers=2,
    cutoff=1800,  # 30 minutes in seconds
    index=index
)

Documentation

For more detailed information, see the full rendered documentation:

Benchmarks

Ferrobus is designed for high performance and low memory footprint. Benchmarks are continuously run using CodSpeed to avoid regressions. Typical routing queries (including multimodal and batch operations) complete in milliseconds on modern hardware.

License

This package is open source and licensed under the MIT OR Apache-2.0 license. OpenStreetMap's open data license requires that derivative works provide proper attribution. For more details, see the OpenStreetMap copyright page.

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

ferrobus-0.2.0.tar.gz (1.1 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ferrobus-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

ferrobus-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

ferrobus-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ferrobus-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ferrobus-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ferrobus-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ferrobus-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

ferrobus-0.2.0-cp314-cp314-win_amd64.whl (945.7 kB view details)

Uploaded CPython 3.14Windows x86-64

ferrobus-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ferrobus-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ferrobus-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

ferrobus-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

ferrobus-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (992.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ferrobus-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

ferrobus-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

ferrobus-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

ferrobus-0.2.0-cp313-cp313-win_amd64.whl (946.1 kB view details)

Uploaded CPython 3.13Windows x86-64

ferrobus-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ferrobus-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ferrobus-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ferrobus-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ferrobus-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (993.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ferrobus-0.2.0-cp312-cp312-win_amd64.whl (945.9 kB view details)

Uploaded CPython 3.12Windows x86-64

ferrobus-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ferrobus-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ferrobus-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ferrobus-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ferrobus-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (992.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ferrobus-0.2.0-cp311-cp311-win_amd64.whl (946.5 kB view details)

Uploaded CPython 3.11Windows x86-64

ferrobus-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ferrobus-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ferrobus-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ferrobus-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ferrobus-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (993.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ferrobus-0.2.0-cp310-cp310-win_amd64.whl (946.4 kB view details)

Uploaded CPython 3.10Windows x86-64

ferrobus-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ferrobus-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ferrobus-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ferrobus-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ferrobus-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ferrobus-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ferrobus-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ferrobus-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

Details for the file ferrobus-0.2.0.tar.gz.

File metadata

  • Download URL: ferrobus-0.2.0.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ferrobus-0.2.0.tar.gz
Algorithm Hash digest
SHA256 3291da70144bf2932fb281cb19d3194bb5381bccf21ca23c3c82dd73092bd535
MD5 415d45d3683bfdb95df7386f4d242921
BLAKE2b-256 f9521fa9499f20f9faa1a2e47c3cc495745de129636e1bdd2711e448dcff6b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0.tar.gz:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb92ccad5bd7dc6e8184b08fc7f05b103e831f86216bf66588e6e0762d5d750d
MD5 6696f99218912db7aee21150e80751ca
BLAKE2b-256 cc9dbbd83afa0a2d1f1fa75979013ac66a84feda633e3d121622a3137d45227b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5dbe835fc3311f9885bb07ce0e8c9d884890484196e5f6f8b26925d61d9f2be3
MD5 a93f19f04c367def295d102939120f44
BLAKE2b-256 368b3676a662352132c6b475b6a7245e3299e2aa7fb9c2870d2dc3466243f396

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fddd0d13513036ecd575f673940f04ea28e9b8823b7e2bf074496bcebd23a108
MD5 737d3d634ae4be1133bbeeb9d5d1475f
BLAKE2b-256 ae5f4f3833f8ffadcbe373f49348a4f6e56f8d5c07b80fd28ffeafc33745342f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36e2c68c7cb98d050d5c915995ea1d112b16da1b9a2a0f365ed467b0b5ed16c5
MD5 3128a766358d44e7b348ec0032f0fc69
BLAKE2b-256 9708e9dee596839edd8356e20e248ba87800718546904ef9d7dd7cf5ca5ba922

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2abe63d2d28525cae81df81d36c9270ca010396f882fa9d8cef46ada1fa379f4
MD5 940d9f1ad02bf6dfd8c2e355b9c9188e
BLAKE2b-256 93988300721a37a42414fbef5ec9e5759eaa5eb346d0dcd558c70556070e821f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1bb03b89ccf954ddc1c98b78e65bd64a430cb5ea57b0b7895bf18134eb7a6458
MD5 6d47d66490c9e117028c3ad65863979e
BLAKE2b-256 d6478ae2f04e1c823bbcef2a5d6bae92d2c7a3f032820f33949b1b2b070d47f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8c343183eb3df81a3ff45b010d459db2a1108b7f873e705e839a25767521b03
MD5 1515162786fd9ab9fc7b9c742268e554
BLAKE2b-256 e919ec41d16eeecfab05afa1f391ce025be5d4bd2357729501954b28fa8eca52

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ferrobus-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 945.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ferrobus-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a8b1ce9b49f6b8aab1d6e15413160c61810f5d66bde5f9a44da11e91c644ddd9
MD5 776ade163312e92a19c07fe2baeb07bf
BLAKE2b-256 b98073e4aa2a2e0ace8dfba3492461ef4bfb41f676ecd1cf39b03d33d6b80cb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79fdcd41e2bd3649575df5c009b54690a4fe384d72643642e8f83b9fa3344ad4
MD5 c1e500aae63bcdc2584f9bb5e96dfe23
BLAKE2b-256 3690986c9abfb49030603def5c48aa3c85815cb420883cfb0bf56d7ba9872b05

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4a06ce2a5ba248d80b922d90e9d7667f6f0de8b89ba31fdf72184e734761a52
MD5 c05c01094d0fbfa23519d24c663da5c6
BLAKE2b-256 22ddf1da4fe36bbbf7b0278e53f0dc7090a3b6944751e5315ebc2365825117e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9326491371bca3bc5b1d442f14b39b5e0e824a345f4c47eb3e9c2c085a1d4630
MD5 0de0491dae74d3c1c6e16e139d2346ec
BLAKE2b-256 93f4b71ab0cc9fc88c910263ecf85c8ef1aa6dc1a208230b70f005fbde5ef9ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3c1206d8c719cd643649d67000033de4c4b4a7f16496b106eed8b0a2a419ea8
MD5 f9cc1a1d31fc6e5fb52b451e3e40f2b5
BLAKE2b-256 333ca3bc276b4987ac5dd436661cb8050e1ab015e434c7baa5c71948c7436769

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da37e803126fdd6dc569e3922823e2aeb8fc253eabe2ae89bf694e8d6532995b
MD5 ecca293d660114624d21df58bbaf0f06
BLAKE2b-256 04ad52337e5cef0aa632a2a8d613988969ef45c7941003213bf1aa068ac2a42d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7de1d1ac5ac1d878e667a000da412fbd825f88b974c56aefc13d644ac0d22a1
MD5 9ba493e8f92c10bcd184464ae62886ab
BLAKE2b-256 090d2c65a193ca8133d39903e0d33a84fe88bb0b169bda216cdd549444ce3edc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9154f3d657170985dc2fae1901af5cc35632a7b8c145d9ab1d178f702b8949f7
MD5 c21d8f69b87e743aa45010c42775a027
BLAKE2b-256 d7db50f43284ad5ec99711902afde2caed4d4ddd2923544f32033e1635e6712f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b709b35c62aa53da629b2dc2c620a6521093cf4a543fbea37f1ab63b25e15770
MD5 081eac27f6bc0a88a8ad9c61d617ed66
BLAKE2b-256 33f888697e304181c05b6ea2a41a7d67d7f2acb3d7d49d6ac4fdecb4d7d46ba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ferrobus-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 946.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ferrobus-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a283d053b2ca86ce0dd0a74647fc5be95f75bd690aa36eeae62991eb6a314408
MD5 a99ff485835a34c3ece437de6f8f7abe
BLAKE2b-256 acc7342149245a80a5e9510addbc829cb50818b0c133c4e6fdf952bb9be9ca24

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77912787b15023fbe2d2fcc8b8cbbb4dab9549ebc5a96b928a0108b9fe7d1f5c
MD5 795403b5920b0db35fda749997c92114
BLAKE2b-256 f4d88224c138a9f718feb3e36780ccb18a8e49c4f992393d2d76735f4006940c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aed20fc864a1909cff548a795d96677b172e629f3d6f9872d2859c1d904c5a17
MD5 936193a46765294c5912d032dfc3f463
BLAKE2b-256 72acd21e1fd789e77880c089774f0a1c0066e5eadb8a36a6a583cc3e90a36f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27e7b21fe9882b882bef20c9a39973c544cc0937bb49ffdb601c4db33bedfd4b
MD5 4c3c4c75e918c4b7e2ded30ee65b2b48
BLAKE2b-256 f77c3e465323c4c3161152cc7d0190d0a6ccf2e38ba680f26f898ecb328e9bb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79895e327e1da7290329b6e8113c9d2704e3140e1573396a946f420700c2d87f
MD5 c90eff5f04d5174098596780cc75ec6c
BLAKE2b-256 aa68ffd396fa03eb80c2b271bb32100184408f0ab40b86c2f71064922bc3d57e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfb0b5411a178e79b6e5c3efaf91fdd215f7d24a1b3eae56e5c48e71d6c684b8
MD5 30508d829229a4a1bcacb72e24378ce0
BLAKE2b-256 a6727f08979ac039d5a6da727674fa802fa1b427ce1191a5a445e610aa105eee

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ferrobus-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 945.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ferrobus-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ba43d1a790b57098cf354d3eacde801c0d347dc076271252022e0350b9f3197a
MD5 8263e56c518455b7bb86803ff11087ba
BLAKE2b-256 05fe0773ea48a81f16bd99595c36888fee029557e5e2d9a0d5f53a92f3f48fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3585bc94e5d6dec2df304405a4d8a13dda1b2e328ced677a82b2605f663d75b
MD5 3be3e4454e0eea9e86e87ecdfe8c4670
BLAKE2b-256 a06f66e1378ff0b1d327618c864cfe40fcd8ea2b7b9eef91d2ced6dc8d2e1047

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc217043fbf901edfde2371c04f1945c80e9a80d6a64d68efa10e2cd91388601
MD5 789b60f8973998af9a06fa301313625b
BLAKE2b-256 86d37ce5001a00c593d1326e607d547adeba210d787bdff2abb1e990a81702e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc3eab12ed7b5a2a45be32e154bd462ab2184c9b7ed8bcd7eef3af673f0b3128
MD5 7d2f9473048716cc4adf18d5ccefa8ed
BLAKE2b-256 49fc5f7774e549a5d102954e1dbd5052903c9b14e97265b00b1916ed399d492b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a136c89d0783213a59fdffe232cdf98c60ccf61c16fa83b6942cfb4860d41a7
MD5 b5f84b1f8fd18fec67bd48df19d6d30d
BLAKE2b-256 fa597b8ea6c4dbf600eda43d714a103213df0519f9f1291dcd211baa8768edcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdf67d2065d29263592afd50ef9faef8859a0117b961a85a76f471fb04044027
MD5 7dcad57417fd267e28e169a1ebce93be
BLAKE2b-256 38babe63364b682843c820cb53cd2dd173d57b25e16eb69311271647f02de6ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ferrobus-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 946.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ferrobus-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 61c3dd5902919305449e481bd448267196280a1e241138796fe7bda78071fd25
MD5 14b8108ca8bd58ad1131c720f4572bcf
BLAKE2b-256 56a6c0dc048e433a1f90210c88727567eb3b65f355d3f1c59f34aded7d712fd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da93d9b17a8b785babe8c22c4eefab21c94091f699f252206f2a7eeee4c60397
MD5 c51dfbbcb3b259189504b828d59b6675
BLAKE2b-256 12fc9bbb694393795910135a4bb90e23c5d0dae73cfcb0aa8179367ec76518ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 592aff0120b645d39cca98f4784550ad6988ab72750f17270ce303be5bc9f572
MD5 992f07789294df2faed461294ea1f236
BLAKE2b-256 988a524318b194f7b68c5dea56ac9b0af9c93769108cc8d7abada345118df0d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2ce01ce778efc1e007b7f4f6d9e95cca32c7fbdb70074035cb945a10fc22896
MD5 13a994837308f26e41cc347841bd741b
BLAKE2b-256 e7979777cd609285617da5b8d52afe490928a787a72b63f8e0930241664089c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d14bd2dbf009e68006057f8aaea3be39e84b44cdf2882a4b249a9a8c55903f67
MD5 b7ab5234fe213cf80fd5a33cfbf7a46d
BLAKE2b-256 48dc189d6a82bcb0e4c40c88c9dd8894d7f9adc447b44a435b14c4675486bf3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d27c466abb3c67aa9857f99619524e0521cc82e36ee0b61ae58d380bb441aab
MD5 7218224d0fa4e2aa43cf5bfd4c157a3f
BLAKE2b-256 dbec96aa4502b40af137ff270d498cd53601da9eb7e6923f337ab147a038d8f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ferrobus-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 946.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ferrobus-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4797372cfe9968000c26fff7a5c137fc4053759c908fab59287ae9b6c5ebd51f
MD5 c0d8524205d6f089801b0588bbe8f041
BLAKE2b-256 773a0c02c183358865aec718eb2b33c0db1dfea158a8bba48c231b3be8ce90af

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e38844679e1489a943ae64edeeafbe03dfd114be0f5ba537dfafe07848d92fbd
MD5 b1ba59661b688880644090815492b108
BLAKE2b-256 f1cab8945adf593295479710bdb32b33fdf094ea3515afb75572e184b1b3a55b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0702359939c5ce481f0b4bcd64e900c7e052fd76883981052dbe999750eebee0
MD5 6ed61c87853d4c1a199661f2970cb4dd
BLAKE2b-256 9b9e4576f6def5234fedfe255f034bbf057cb19183dba67b6acee11e06c72c2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c2ee544025b02b584281cfe381fc824f71a4ea94439e10d0a67266e8ae9af75
MD5 7187d428ab98a281cad76e1f76a156ae
BLAKE2b-256 159ac55ac05f66201783235b6ee3ee97b5c08cb7f45708be514239dca85d73e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99e79e9fc3a494c6e922f592ac2951459ba53acf7ca100a25b6c7c691175aca8
MD5 5bd50f7ee875215eb92f45e128baca7e
BLAKE2b-256 9bf9814bd68f96b2b4907c4eac2a9a25c2e9349fda81edd07b894a8798c684e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ac14bb3edcfaf5fb9c0959a3a3431054b0157e10158fcaf9ccd9d51972cb1d0
MD5 e8782dc0be8f016f50b6dc460bfc4c57
BLAKE2b-256 188a6ce4f1d73d082eb9a3f4c3dcf0c2fb1f89d742b11d2c5b36cfb280fc1844

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11465549e0c64fa113800d92004c18d925dfe1697a8fae468d20a742209a9006
MD5 6381f08995b5da630b3bf1d23d088a89
BLAKE2b-256 2e10ba7fcc3c15eb80526c9b3749d73f0333b442cc6da0406c518f7a1524f04f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 105d44a3dcf825baf2c1dd16e5eb18c08d1c36f273a1b13532ea714d6b458f80
MD5 50131ebc04abcff9a23590c61a69aeb7
BLAKE2b-256 36ffb53e498acb8d52ddfce6a1ddb653c03c12b8d333d8a1fbe160d675795f3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on chingiztob/ferrobus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ferrobus-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4c99cad2ee4c5556a6d745e171f024f22cf327f4f8a94604c44a4fc2fbc738b
MD5 00008fa48d782e8b184bc99faffe5b6d
BLAKE2b-256 7440b015b67ab9e0cf7ca5fad91ba7290e8a1b3249d7b2701efefada246f5397

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on chingiztob/ferrobus

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