Skip to main content

High-performance multimodal public transit routing library

Reason this release was yanked:

Incorrect route pattern processing, leading to rare incorrect Raptor behaviour

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 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(
    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(model, area_wkt, 8)

# Calculate isochrone (areas reachable within 30 minutes)
isochrone = ferrobus.calculate_isochrone(
    transit_model=model,
    origin=origin,
    departure_time=departure_time,
    max_transfers=2,
    max_travel_time=1800,  # 30 minutes in seconds
    isochrone_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.1.9.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.1.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

ferrobus-0.1.9-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.1.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ferrobus-0.1.9-cp314-cp314t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

ferrobus-0.1.9-cp314-cp314-win_amd64.whl (909.1 kB view details)

Uploaded CPython 3.14Windows x86-64

ferrobus-0.1.9-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ferrobus-0.1.9-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.1.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

ferrobus-0.1.9-cp314-cp314-macosx_11_0_arm64.whl (959.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ferrobus-0.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

ferrobus-0.1.9-cp313-cp313-win_amd64.whl (908.7 kB view details)

Uploaded CPython 3.13Windows x86-64

ferrobus-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ferrobus-0.1.9-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.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ferrobus-0.1.9-cp313-cp313-macosx_11_0_arm64.whl (959.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ferrobus-0.1.9-cp312-cp312-win_amd64.whl (908.7 kB view details)

Uploaded CPython 3.12Windows x86-64

ferrobus-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ferrobus-0.1.9-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.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ferrobus-0.1.9-cp312-cp312-macosx_11_0_arm64.whl (959.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ferrobus-0.1.9-cp311-cp311-win_amd64.whl (909.2 kB view details)

Uploaded CPython 3.11Windows x86-64

ferrobus-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ferrobus-0.1.9-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.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ferrobus-0.1.9-cp311-cp311-macosx_11_0_arm64.whl (959.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ferrobus-0.1.9-cp310-cp310-win_amd64.whl (911.0 kB view details)

Uploaded CPython 3.10Windows x86-64

ferrobus-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ferrobus-0.1.9-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.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ferrobus-0.1.9-cp39-cp39-win_amd64.whl (913.4 kB view details)

Uploaded CPython 3.9Windows x86-64

ferrobus-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ferrobus-0.1.9-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.1.9-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.1.9.tar.gz.

File metadata

  • Download URL: ferrobus-0.1.9.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.1.9.tar.gz
Algorithm Hash digest
SHA256 26d336ce5bc19583c5627fe3561020f925687819b5a1ee85cf98d09148508b61
MD5 b96e35117f83b3020d5be581c98c44b0
BLAKE2b-256 9964032399dbb95864e53924917046e85ebaf9cf5425399ef8c91e94b508e8c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1492fff7b5b2b3680371b99537e90e0a2ac3e777b14a133356eae97708aba75d
MD5 4aa30dfc58f2620e0a51a884f8822a05
BLAKE2b-256 ddfeb8aac5bc05e7f02fda8d0de78ebb91b2af50893fd07d2ce83ca14b4b91b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 450cdb04d9f7a36f98c3e82311877ddbc26e332795fb0d1c6b87230ea38e6982
MD5 99aeaa62fe00624df2b1733da574c0d9
BLAKE2b-256 891cc5d0714bd83ab8f50a63f0fbeb2f3ad36474a36e0fcafa3b25f05e3fcb0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95ca67839704e5cf02a53e6f684126e29be239595188403fa44782d0fbf57c3e
MD5 2492d7706b406e52a711d503f81b91fe
BLAKE2b-256 05f390ea70ee4548d32e599a5a334529a1287d3ffd5c198ff41732d645e15895

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 488a68a47fd5d074117e8fe02998857171bb1ad60e3ea0602bca739e4689c1f6
MD5 0bcd1c9366f70217f94ba0b2b5acec5d
BLAKE2b-256 a9f417e32b028735cde1309e2816d2e3fb54e165d6cda6580af7839232debbf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aac3bb625113cf8068d86ac8bfe8462a4d4ca724cdf4e4e4aed59ce7cf410515
MD5 97b9bebcb0ad38bb3cc64980f636d0f9
BLAKE2b-256 f2dc99e7f1f1cb30a6fbef3cdb5bad6e61c6fbc8f781f34396a00a82032e6eb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7791a09cb1b92bf1a4dc188b7ec3fff190e5eb6b7e49c8573b74957c17b4cf4f
MD5 a4792b288f6d24b98ffe0cdc8404815f
BLAKE2b-256 fac9627f022734e25e1987c7239f6cebfe2a21a2b34abede101c498453e4659a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 390d8fd634e12c30e5879b38a8274e6dfc57c38d9cc8575a50a4810883ab74c6
MD5 2c74aa45ce4efeb874e382b72c14fd8a
BLAKE2b-256 ec6fbd89af63ed8b6690cc00570115213a942a21bd4166170da87c61a8b0eb38

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ferrobus-0.1.9-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 909.1 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.1.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ed2119aac69e33c32e6dea2a200d9f3fdef6397745fbd2a5a7960ea0c96246dd
MD5 8eb7135780adf7ec8f25a044ab8b4ec6
BLAKE2b-256 5d5b3a39f750551d42c72c2aab225d5df362cffe992e326a8995579165124616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05cb89f61845d74c686e5a68dca0e4b15ca93dc174d7f5d9f15ce5d135ce2864
MD5 39190e67fa2c5a2b8278c4c6747b9d48
BLAKE2b-256 e0d6aea72d97c169324e20d1d428ebe836b9204af6167606b6d3593fe81f8919

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1203696bf458861a8a53b411dcbe08a700d2133e4a7b9a4fef23df8ccf9548a0
MD5 8b9e88c9d9470f1f535f30c898174616
BLAKE2b-256 af02e49f81885182859cffc917dae93e126c97fc695e6bd8f6664e9159523814

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 820eac57652fa0ca39b64b2b6cd84a5b4840769c0659d4295c04bd6198357ba9
MD5 7de422557a3c71c40b187b77346f3204
BLAKE2b-256 9ec22ddd91aab657223a45730f502e201da58037f8948ac2076f5f353d9c828b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b24e8f29a100842043bdfbf62137a8134f6fe66342ee144ca7bf55c95cfd7e7
MD5 85a060e3a649a7fd34f962df28ecbc30
BLAKE2b-256 7b063941122636feb448a0ade86c67dc3e2ba613dfcebb503cd5e06d1b733158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0888bd09152afb7fc5851ff66a2d42ffb863773f9022443d4f4e2bee01e35584
MD5 c24b4126befa746dd83087e17636e7b5
BLAKE2b-256 fe4d03422143c8326f1df8f21649d78357b7ba4750927e704d8c3ba11e1fcb9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 863c119ce8493f676ea731983b2e01af8c625046ce613dc2cf8342174610a247
MD5 dba74ad34ca60d1311946e1135a2c066
BLAKE2b-256 5401cb54c105b9f85ddd4b8684bad9ca9f26fb34785f1e8bee5b04b08c3911a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c512b2d488eb2db728d35c238cf982c945d3de2ffbc2a07a8bcf3a22280010a7
MD5 8d5653ffa131cb30117830228e6a8c57
BLAKE2b-256 44e6cf375fa56dea89cd3600013aa1420adbd0a84c888715d3ef7ac245ef156e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08799ca56a2de90be26044d98068aa71a11697bb8fd55921ad29a49d82657de7
MD5 2bad1a184971187ed046fd770885846b
BLAKE2b-256 91365bd374fb99c41ecdbf8971ad945a1ddb4fa437fc4ba109cd609553753b86

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ferrobus-0.1.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 908.7 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.1.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 972a7a8db2bb9cc62f44c82945d30032b11c87e39a009f7ef6f4b29a8fe1bf10
MD5 15a9ed44669e7de39f9bd11b453945a6
BLAKE2b-256 d4990d8423ea1ae3f25d37c276e9c446a3b5d3ab88bf1042988633da683f9a2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0f7087f745cee722958ab1cdce4b68fa1892398116002f92d55fc637acc53c8
MD5 974c1518e0fce158e70e92024cc93b46
BLAKE2b-256 f9a20b7c47331ad048b6f293fa048cd1d60e3895601baea41304dc7657b66d7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9082102b80ac306947f2c03eb09e887d79a6bb3ef784108af48c18012a88816
MD5 32815c51f2415a5296a24ef2ae2015af
BLAKE2b-256 95280229ba7cd0a635f8876cf37847faebc6321b9f844b6b9ac393f50e1008e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c667d82d6f84755eb4c9c274275ac3c04e4e583d552adbcdfd2c05505371ccde
MD5 fb0bbc72a647b558eeff32e2a4a0a152
BLAKE2b-256 5996baf8c065bbc3573bc486bd35552ab1e7828a49968f5924f5ed7766b58c29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12672eaf5ef0adf9319d4943210fa6456b17a0e270255b97299d593e1c163916
MD5 78ff6129ddf8667ca17fdc207eeb346f
BLAKE2b-256 00434b4dfe4cb50576f99184f6be095cb195c9f7766e8906679ac44ff60ac876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e8785110125bdf2fb35ecf1a737534525edd4281970fb4bface52e247a3fb92
MD5 0f811bdf0c72dfdaeab81d1a3fc5405a
BLAKE2b-256 ba36274fccf1868bbdfa5bc5bbd4d19a3c07f47c97532af03e0aeec66b770674

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ferrobus-0.1.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 908.7 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.1.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f1f7aed74453e6209493124d85ba709e83986877377b27ff88834350d3132f62
MD5 19fe3af44594f8781bdf0714158f82b9
BLAKE2b-256 2650b2b99731e5494aad19596b17f4eead99631c102a218f5aa0109f3b05866a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a65a2a8bf982222e06091f6bd67b758a912c77cad48c4179135fed52750b5a3
MD5 723d12fbdbf2e0b0632870d2c68a9d65
BLAKE2b-256 f748054ad6d1f066f04d512b2fba72357c4063d4528abfc99f880815ff27f15f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ba7c9d723f7cd1c0c178aee7ad4309d99fb8dc7ae5f7d42470964f7681ffa8b
MD5 ab39a23168fdf4633c15858beb1f0ed4
BLAKE2b-256 854ac90d782e74ea08fdcd8790c0ef41fbb13df46fce66ab10b75ad950f9922b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63d55d6209b1ea3b3e3ae22c72b97a457f2d1f42e197ac3ecf72d41688ddfb51
MD5 9eee4b72580b1b4b31cf93edae631b4c
BLAKE2b-256 a3e7f9d37ce7c82da502d3a98e9bf7836568f6f0d3e5164d6159ed7308201cf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea155f2d3de995434141bcf7e0d57daea6a04abf7db96f0e61e728b31f16aab2
MD5 221a839a55a4092f76a7eec1c2dc61f6
BLAKE2b-256 133e05c8f69ba568ac5ec2337a0c1631cbb9a5f447053292ac88f86aa97689e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a311db4d97a805b8d3c73d6fcd7016da044ac6e8165bb9891611e46f9e5c1b93
MD5 f75aad0c0183d33f3723378fca02320f
BLAKE2b-256 7baae51a68f26aacc2b218ac907fe0fc654ce34b4fe7174d4c4b4d4a20adebc5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ferrobus-0.1.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 909.2 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.1.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8398a5be59ab7112ac6f74f0b0b2a04e3c5f0028899be761b8f23dcd734404d3
MD5 1943438286856c5ef7f4fa390cc07d60
BLAKE2b-256 da68a7d0f839de2bb1ba2e92b2d3d3374f11e720bc91acfe32abf0e8fe0be48c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee91d02de2be4731eaeb7f48b0e9ae50209ff8428fba52f13a14541f95557cd6
MD5 8f52affe42a790669e4dc19e10c852f3
BLAKE2b-256 dd5818a96f9b479cb8d3072373a65aaba7d0dc8c7591adce2796c14668429a86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e86bb91db138f4cc64c0a2c77102b5d9e3dcf4e5381621ea73c0a268a0ab41dd
MD5 1f5afb43391ea83dd3bce9abe79e5883
BLAKE2b-256 36d3e7ccd7413f8b5eea1ffa8d0ad947188056c53f29ca730bf95de2d5947b9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 116f694a0e0974264e4670fb0598507b4d81ec31514db07d172ffa7c3883c828
MD5 4475fd836fceeaeeca79abda539d0f45
BLAKE2b-256 dfb84db00ad2bbcc7064924f36d3beebed81368c521b358a58a648ba11a5e60a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e51c9ce23c0a28e9a31dcba51bd5071fb59f835b38b07ab4cdb2038a52c3ed75
MD5 a59e617863add38773b3b9848a0f54aa
BLAKE2b-256 cf2812d5003e075708ee92bd8d9f7cdfab213707d5879ece15fcee080e4358f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e370577bb3e24f162f0dd48a1fe00e07a2fef2a74323e3a27a5832f4896d4255
MD5 286e3ed37c0108670b8167ea48e16cd3
BLAKE2b-256 3edcb366b55adb57696f8431a3a09c89060b177f60e7f8db42f82551911a87ab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: ferrobus-0.1.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 911.0 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.1.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bd7de99d9d1316fc808c610d92ef0146158347b11ff94495f638c828d97ed94a
MD5 e8a747d523ed8855abaab2e680747122
BLAKE2b-256 db612f1e8b1e5a397a6c2b858e5362ba9e6ef3c7d188788ea3ccb6aff5c95a75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c21ca9737d37980a5677992626ff410b74cffb4c1cf5b843d72effdb0df71a8
MD5 61aef33299341e7678808976e027c262
BLAKE2b-256 32428ea44a1f673b8ec7a4b5b15870e07f84841655060e3ff55f1b377c9c45d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 552664b2402332cf5034e12538f4be459f2ae476f7f8bbd1b5c3de709f505a9c
MD5 f3c96d3cb8954a6965d4dfa6098be4a4
BLAKE2b-256 ab11cbfc9dccdec511c7ff919f9a15f6f8db708badae49e67b8a8cc0b2c67807

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b5575e413b4945826aff2efc89f48cd2cc322a2e9c8923ac516f3deb8d784e9
MD5 9b05c73f42961b1831abbecaf1fbce0b
BLAKE2b-256 f8e730411fd3fe6961fe723ac8e7967d160cb506514b47b7376383a6ecdec86d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9c8866edfe29c4d9cda3b8bec198fa418883c103b23b4beb653ab7c53432bc1
MD5 12b2ab72a7f4062a3f90a69823dd492e
BLAKE2b-256 acb80bb62232d3205f018d5bc467fb3555e1b57a516a8df71b3641d133649b56

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.9-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.1.9-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ferrobus-0.1.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 913.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ferrobus-0.1.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 988d35896590e2fd721467d63574c22a7a68ea10708353f2b3b4ad9c6d895e7b
MD5 017335499d9aff6c33c6e3158ba6a958
BLAKE2b-256 e63bb5399bcc3cc02640ba7cf12bc8f3e5577277a5345a936207f790fe703d0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a013a421a230a3f17d1e08987d593f542c0c7da5bb135f03cc127c97d5f193f3
MD5 0cb51e052e6d670ae01637e6bd3e276f
BLAKE2b-256 cef601ba54f6a2c3dcbf47a2ae54ca42b9cc6635ba02f92fb6cf731cace782df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b57d1ebc50f5c51e87e1e1d3040b391d536a0bb0ccfd67bd1740da31f844e1d
MD5 1a6fe220e3a9106a054d15ccb9ceac23
BLAKE2b-256 dadb26800a5bd541f5c0817712534a86de3b2684977dc29220e367632ad7ef15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2a66298427990d931d9e58eaf258101e6a318dfe51589c36ee36bdfd032f5ef
MD5 82636056faa2baaecf93f3773e25b19f
BLAKE2b-256 6eb3e4226f2bd3ef35bc68da76a39643fe3155edb3b7181bbc8534ca21f5ea6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6f2cac6f0326bef27661df7e53025c1adfe8a1d0c0b1bbd46926b7a717d394d
MD5 c1ff4edca0b2ff9bac1dce749d7397d5
BLAKE2b-256 f377aad2eec859d27e3b40b4cea72f3bd6d5df7dab38c240951d043eb804a219

See more details on using hashes here.

Provenance

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