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.1.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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

ferrobus-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

ferrobus-0.2.1-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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ferrobus-0.2.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ferrobus-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

ferrobus-0.2.1-cp314-cp314-win_amd64.whl (988.6 kB view details)

Uploaded CPython 3.14Windows x86-64

ferrobus-0.2.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ferrobus-0.2.1-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.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

ferrobus-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ferrobus-0.2.1-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.1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

ferrobus-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

ferrobus-0.2.1-cp313-cp313-win_amd64.whl (986.6 kB view details)

Uploaded CPython 3.13Windows x86-64

ferrobus-0.2.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ferrobus-0.2.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ferrobus-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ferrobus-0.2.1-cp312-cp312-win_amd64.whl (986.1 kB view details)

Uploaded CPython 3.12Windows x86-64

ferrobus-0.2.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ferrobus-0.2.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ferrobus-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ferrobus-0.2.1-cp311-cp311-win_amd64.whl (991.1 kB view details)

Uploaded CPython 3.11Windows x86-64

ferrobus-0.2.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ferrobus-0.2.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ferrobus-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ferrobus-0.2.1-cp310-cp310-win_amd64.whl (990.8 kB view details)

Uploaded CPython 3.10Windows x86-64

ferrobus-0.2.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ferrobus-0.2.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ferrobus-0.2.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ferrobus-0.2.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: ferrobus-0.2.1.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.1.tar.gz
Algorithm Hash digest
SHA256 9dbc8f7fd36649e9c4ffa3d46cd0638eda13f900f90240f5f1aa9ad176ddf536
MD5 14e71a31498d7cefb9f515d12d1a410d
BLAKE2b-256 5d2c002128ce32d492d6d674595b677ddd0286d3d4765a2229756218c716199c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1.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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78afd98975839cc1b4790fe4e48ed9b567b670c5dcd4275317f75331eda6017a
MD5 1d092d520497e9b43e06757163f66733
BLAKE2b-256 edfaf8215db9309d865483550e22cdad34179ce2217da5e9bcfc46bf3ebf22e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31ef6407204ec5e3bbae716690072d44264b29c41f1ac8c9e59383b0f639936b
MD5 01e0a3af524a88508932bddaa58087c7
BLAKE2b-256 5fa385ed355647daf1578080ff8153900f4610605dbc07c293d96af465dbde78

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdfc58fc417121ac788319bf90ffc971061540b017b65bc0a49873b5ea29ee05
MD5 79aa64463412e2dfef2a37a7935581bd
BLAKE2b-256 f69010eae52040383c35337e44047452b96ebb670ce566402be0d53a0f888f53

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f369a5baae69ad32dd58075caa525e7e429479ed22b2c73e4f19548ceaa551be
MD5 69a6ab1b3e0be84395b1eb8aff261936
BLAKE2b-256 5bb5b83b5ab0755889efce647176569e27af349eeb8cc8ff27fb9ecf783c3ddf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 423b328c696e9a7748582042b2c890b91724d0cf18819fa1f1bf41f7f526f850
MD5 ba360defdfc29d849ee5f4aa836ca6e7
BLAKE2b-256 4912b19099d5690df3599152c18305c58adcfbc702a2b0aef073c4224553e3ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a87a9d14052420ce1c7aa9faa724901b275bbaf41bcdb53089de3cf6400472f3
MD5 776ac0aaa5aa29dd74c811be175f98c3
BLAKE2b-256 ce5191dd23734c89e5ead6c6fe4f2b6ebd9d30e8aa20c77bf6c263502b9d7fbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d4fda7950b6e960947c16e9286d20be7cb6df863ac8de9703a66c6f374751d2
MD5 085bc0e9b2769999fe5cfbef3042a79b
BLAKE2b-256 4d79dd7e95b4dda0d5f28d0da8990b00e84a9a076c55346c25da9e92400798ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ferrobus-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 988.6 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3ff3adb4066ff53bcc68e35d99c280626236effcffe7b3a4154a1ec2f757659b
MD5 92f83eadc7053b00835ae15e57884bfb
BLAKE2b-256 3c70e7343ee14552db216865713dc76288bfcb941f47e920a296a8135a19dcd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69c618146865d77901a56b0dbbaf67c306bb1978bc4c8054e9e3eccecfe43b12
MD5 52b51461d9de9bbe9647ba5a04347f4f
BLAKE2b-256 f776f91a06c150e26c6a218c2002e2ac24e45fb5128aa3ac2c6a9e1ee727c50a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d8ecd8a4bdc19b46955b495bbce7b8a6df731568bf928707c81ba71e14b6d87
MD5 95e4e26d29ea282b3b7dea278a317b00
BLAKE2b-256 a5cfbc12118d468a061c418c62f6d5d50dff68c951d541ed98831eff7eaede95

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b9b21bcd537d23c75ebc412ce043181fa87baa164863054ff19957022db7908
MD5 4e3a9c0829bab2bf46c72b9b311f17ad
BLAKE2b-256 ca62054b37a9e683619f3913fc66a2b2fde6ab1bb8ec3d2a344f92a549508824

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 124c1a2ee780290af47accc43f93809c8ae46e92cea46bfaf05e988a892309fc
MD5 ab75ea98b48879a6731590c7b83890cb
BLAKE2b-256 fa00ca147791bd229f782dc3f960710f98aa08869b2bdf2dd4cde2e5b4462404

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 026ba0713ba237331dc95f423ab33c105054b117affac1f984ad890b9b6cf139
MD5 c82933a4369a4bb31bee246bae5c29a6
BLAKE2b-256 0e7564fb03ec74d8bd359d3d40b50cd5a0fe19a82222b8510a2193af05ad8596

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bdf7cc81f885c66d26c094e277cb8d5a106d5c9840f87e9d1b7d3c1115c555c1
MD5 a9602b0dd0b153bef51e4e0a789546fe
BLAKE2b-256 86ec41fa16228874c750d63c9fb406d39ffa1eda3529d2fa22ed8a36801572b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a282fb527cf0e060ede9b53a0619f0ffd4f41dc753e29408af7fc5dcaf332fc6
MD5 8e7ab2baae2693f2ecbe4e1ef1b553b7
BLAKE2b-256 9d0169573f604b3f434cb5b095f33b1c4265c7e19528580887007de3002ec748

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60120e4d85d7175d806ac3b5d87ec2d4182c12bccc0fef689659cc69873b4285
MD5 5327acc01f6cf6d23a6a19c251f72c85
BLAKE2b-256 39db7415139748797410e796e248df6f591cad50d49ddac0cf0fd61189b691be

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ferrobus-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 986.6 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 05bfdf2e073de832a1c2a40c51f5cb77faf7732135c02116b7beff9059614ddf
MD5 149e7023d4203564c59e04ba9bd3f3cd
BLAKE2b-256 61b25094d15fe2ad8bc53e2a02ca1cd847e190c02578e01483fcede76fd92986

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0131fa1d622663fdbe3164030f1b3b7ab84b292f055e4997722f3c0c4ffce825
MD5 77474d63a9a28554d45f6948781501a9
BLAKE2b-256 464d550b355f6bcc04ab4ca5980b49d107c507bbee884f506695f4aaa5dd3c45

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93d9445fbcf03d6011848c6c3e9a62a691d0dda0177aad19bb54826224bf4869
MD5 8c2df63fedc4d631fa0dfad99c2c6553
BLAKE2b-256 4eb923d3b18f202ac4a234a34e9e50732b5bfa0a00377b5e93feb3ef283d3701

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 970bd1cfea2344153a15c1e41d0665f09f28ed5cef9cacc6062ddcff708d02de
MD5 602e799ee380d578c3319b729a228d48
BLAKE2b-256 d8eebfab229920a92c289728b3fd9e192b18ac3faf4bd1b94f401219745366bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20747946ed1dbc162a3683cd4f6283f4109bfeb31251a6150c36d3babf3b73d2
MD5 dfa4a4b2bb12864a3c7b0d3f16b4595a
BLAKE2b-256 6828f65fd5ab83fe45cf18b4a6313927c16cf3a548711509251dd4d2fd430c76

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01f4bd234808a0d6450b26340e79aa4684a29fb51968f1f2222193bd7bb467aa
MD5 a82d4a10a337b9e8e107dbac779e5f57
BLAKE2b-256 17451366f00ebfff58679d5d4b4ae3edf3481596f05e79dbb31715b229432985

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ferrobus-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 986.1 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 36e92119d721f095e0b48823abf37dd8121c880a295c876e2b09a7ba9c31d903
MD5 580058d810687ef3d8f1f74ee0b55bfe
BLAKE2b-256 5bdfd8384c5c95b22ea7c186095bc472e97435a0905bd95b5773ccca319d046b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c20622617306327b2b9720d9bc48b64df15fe8ea34c90a56e92c3e934c47a17
MD5 e12d8dcf18a5bede04b4c30ea93e87e6
BLAKE2b-256 77e7f674fd07ba9ec10b2cf3139170827414f34a56b4416e711d505943ade05d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 260586aea5f8f5be33461b37b0347f2dac5f9e6678ecc4a081c8f041bfc60318
MD5 a147b06e52d9f43a44b865f230653d6e
BLAKE2b-256 bc85daeffb2a63d6de73a5b69d6a508b5c453cd79e1cb070891e97721ec81f14

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9d6cac59378defbef5b1aec231bc5976438ddec0f7f31f040d70a45a9e859e3
MD5 b80f353e12fed9cf560db8f4e223dc44
BLAKE2b-256 0d94bcada3863f8c88cd18129df48e15a9d281f375597e0dddf8d8dbd0ad4a13

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0cc9ea342078ac70922a4441957bcb28c6ffbcf6f9bdf4ec2a539ed0f79fa05
MD5 e6f5d75f19056ae742587e426ba59358
BLAKE2b-256 eef3d2783a50a2dc56506b882efe3748f17f0b4adba6898f01ba3da7a29016e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e9a10291d275a3526ebe4b2659b77bbb300b5dbf65337d10be4380e4355fe58
MD5 ea253180bd19cab059144856c4da4c63
BLAKE2b-256 9242333308af993f3c82f31d0fa0bc475cccafd9843df4c7c36d6fa4ee767c0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ferrobus-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 991.1 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 396bba9d9acc49d256280b2f5f7e814dd78cb91b67f1e5894e810150d2d4f77b
MD5 fdeedb0cb58647f94ab76c0520d5291b
BLAKE2b-256 d0cf596897f6d050774f7f83a8b455ab9b15e30d6ec4c18796ab5bbfe25680b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ef33153ea003e4286f68b37e563bc4937732d814712cf333fffeb1cc85454f5
MD5 714b6df74a40f05505a8d72aa753b0a2
BLAKE2b-256 97796690e659c9d3b4e977063eb5a2eb33a4ad6661b1236f2cbc526ad9172f81

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2be393d9b82b383448fc67e1ec6ab842e6263b250f878d9dda2fb17c0746df26
MD5 9ae93f6fd16d0545a4b38def6c14a34e
BLAKE2b-256 a54dde59a7c8e386133f75ab94ebb2b0b836e3ce416790c5a8017e58fe243db9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3eb05c4c70ae1de4d1ef8e75b6338cb64dd8178dbef86956b6b220a9f8bb62a2
MD5 a3edfec760911247ec5225ab6a5e6c58
BLAKE2b-256 0b34b72ec0e8c8d3ad4717a44b0df3c187e6cc6928c9f4af5edc0d99178332df

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ea3be7d3cb316a485b777ba38a6136885d2ace7bcba93b94646615bf55016ce
MD5 1c7ccdca8e547e0fc1f6b283311e5bbd
BLAKE2b-256 c3d965ef1648f477bcbb40632904f1c753edac270f97d29373c7c2339ad850e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be8fdf599c3065f30727f7b8f42118048c4b1beef177f99b5db3fe23bd8428eb
MD5 56d048367c532eae2151940d3e52b5e0
BLAKE2b-256 71ad975eff7719371f4e0df421dd7df70bf1f3785a08c98ace5b73b11228e262

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ferrobus-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 990.8 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ccffe41721a2596180f855f70dade7bd83e5a7f6910ce6799776033e5bef582f
MD5 08fc04d8a4889911edf014871125f631
BLAKE2b-256 6e7eb2104ada689380cee2034696429b10cfba954d1e0ef796d7ee5d40b8c7ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19a65c20f47d6feaeb96739660174ebe95359aa5d7acf3afd5bfa80409d91f05
MD5 4055f8de595da94db7acb1065c0a4c95
BLAKE2b-256 2505b0015ace46744b86b1ecdec165e87abce7a50d1c1d0527006533f795d2f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce0986e1a802db65272913da80a74b3702d100302d0178e3cfd863522676c963
MD5 c1c5c62391e922db809119a9ff1335dc
BLAKE2b-256 ce5a556f3288c7e6c0f2f8a050acba58abdc01adeba9121de4dddf77f2d42557

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d957b03b98e6863046329e9d1c4448555cfa2de2f58c4ac66a00fb4683eb1262
MD5 0483537c2136eb238b406ec71f76cc02
BLAKE2b-256 524645c17616f67043a817fa218cdea819e30fafcaabe2bd214104162464efdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ed62d2b23a0a3641447df3398dbc5da4c264f0d25f0e1d6faef2690c21005df
MD5 f104a9a1013ed8ba8ee2e6eec9423360
BLAKE2b-256 f10ef2d1d6e19ca2e55b6f10c0f33b76fb4b6aee572bd8674a4005f2a19754a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 826fa134cfc6068c44a76a60740743823de4b4b036d4a6d1bb4de4a799b49aee
MD5 bd74a2131bf5e7770265baff2b550e92
BLAKE2b-256 4a5c42fc3a384a0d5a650fc9f7cd367fc7c1872329f006a201043a1810555930

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eda17f31c4637946e965167691fcd5501c1a1608561932fc574b2604419379ea
MD5 c303c74e01ad8d8d9ecee6d214daba4e
BLAKE2b-256 83d13d54d94e2c2a9635cb95b18ec893b3338ff9693a407e95f1a6338f048297

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 443924af8e559ca1d1f88a1941a9e141e60552cd3e53b645d221246c39357f86
MD5 458dae5ce1c212d5e1fd68378e2198a0
BLAKE2b-256 f4d1b566a192889b2eecda45f080341cea8bf969b6f44f5b1e8bc37749946551

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0cbe01e54b2f78257b0520da62327265dd4f4434da7532b4cdaa2fa59d2cc6a
MD5 315a41d6d3d522a98370aa4de66484aa
BLAKE2b-256 2efa27fcc017fabfc1002eef855e1518bbb3306fcae7761e36609d1337e4cdb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.2.1-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