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 and x86_64
  • macOS: x86_64 and arm64
  • Linux: x86_64 and arm64 (including musl-based systems like Alpine Linux and manylinux2014-compliant systems)

Supported Python versions are CPython 3.8 and later, including PyPy >3.8. 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.

Comparative Benchmarks

to be added ...

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

ferrobus-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ferrobus-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (981.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ferrobus-0.1.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

ferrobus-0.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

ferrobus-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ferrobus-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (981.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ferrobus-0.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

ferrobus-0.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

ferrobus-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (982.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ferrobus-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

ferrobus-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (977.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

ferrobus-0.1.8-cp313-cp313-win_amd64.whl (877.7 kB view details)

Uploaded CPython 3.13Windows x86-64

ferrobus-0.1.8-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.8-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ferrobus-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ferrobus-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (980.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ferrobus-0.1.8-cp313-cp313-macosx_11_0_arm64.whl (932.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ferrobus-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

ferrobus-0.1.8-cp312-cp312-win_amd64.whl (878.0 kB view details)

Uploaded CPython 3.12Windows x86-64

ferrobus-0.1.8-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.8-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ferrobus-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ferrobus-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (981.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ferrobus-0.1.8-cp312-cp312-macosx_11_0_arm64.whl (932.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ferrobus-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ferrobus-0.1.8-cp311-cp311-win_amd64.whl (877.0 kB view details)

Uploaded CPython 3.11Windows x86-64

ferrobus-0.1.8-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.8-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ferrobus-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ferrobus-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (981.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ferrobus-0.1.8-cp311-cp311-macosx_11_0_arm64.whl (937.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ferrobus-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ferrobus-0.1.8-cp310-cp310-win_amd64.whl (877.0 kB view details)

Uploaded CPython 3.10Windows x86-64

ferrobus-0.1.8-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.8-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ferrobus-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ferrobus-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (981.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ferrobus-0.1.8-cp39-cp39-win_amd64.whl (877.2 kB view details)

Uploaded CPython 3.9Windows x86-64

ferrobus-0.1.8-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.8-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ferrobus-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ferrobus-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (983.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ferrobus-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ferrobus-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

ferrobus-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ferrobus-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (982.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for ferrobus-0.1.8.tar.gz
Algorithm Hash digest
SHA256 68973f049684ec823c1055c027302269d143a0bddca4903a7abdd42c936a1111
MD5 9176eb9e693bcdeb90caa036c940e17f
BLAKE2b-256 a12c8c7d508812edcd9bab915e0cf5309326886eb3a644d415f5644695384481

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e91fb99f5d06c85595ee1d7daf75fc0cb56dbe9490d98f5fe5b64ef523335da3
MD5 091509fe7f4128378aefd61c66fc533d
BLAKE2b-256 3935b3001897e7e9320e2425d96fe7862ea2ec4918a512735d06f788f3e423a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a05093ae9ff300f5afb5fb800c3e5bf28977e19a511bd4d3139ba5be401749cd
MD5 bde14076f13666f0da9855204d3c8a84
BLAKE2b-256 a503d9bb3920e06c81421713142713978d8a1d8d4102bc94f85f6fbd00e368ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a19179846d9dfaf0273afeea8646478f50043138643bfef1ea8da0a32d6039df
MD5 ec50b115dc87e271863ad03540ac1026
BLAKE2b-256 1c94c2151a8f5e1d40a935cadd20c9ae88f27840b7a1fec9e0f9df7187a14774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 775f595616add55a05913e80a7521d1633d91e39cb3890633db7fb19ed532621
MD5 13d8263e392574624dc4eb0359de340c
BLAKE2b-256 fbfd02d1b79b1df016fe01bb6aa944d42b10ca9530020428fd7a2dacd613d554

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-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.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd3a8eeb0bf5c2596e5f0a74975c1c13ea66fcd0c083971c8823459cc6834d99
MD5 2620535ea8becdef77c3a3fcf7985e19
BLAKE2b-256 f4baab3f72389226cee0d712c75b7e5eb08e188828b769a8c513f1278daa0a47

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-pp310-pypy310_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.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb17b9eb71d8d784239f114d3a4c8d840be6a8d03c69e7a78417039827d813e9
MD5 c0e5e280a79eea75df69f07b5870942e
BLAKE2b-256 16e9cbf7ac0f3de76adf37215a03a4c73e3c27dcce5479ca527e4c48eb7e9501

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-pp310-pypy310_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.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f837087508a7fcfa6733ffb424ccb1162f6710ec5916fb860f6e1b0ad3be58ba
MD5 55d1eb288464ff7dd4058f74fb0b48f0
BLAKE2b-256 cc5069acaa1d300a50afd393f8abe8b6ce8c61118f59f70284d3911c28ad6b61

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-pp310-pypy310_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.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71573867d428437558180333425f62d806d19aa598e737ca3e1c4a3a5259b39d
MD5 35708e4f7f2825541c89bf87c1783796
BLAKE2b-256 1a48e0e2fe423efd4c90a71d5b6c0dd5d5af1b1cde3221ac46ff79b38ce9fa70

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-pp310-pypy310_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.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a7687f183b814566b6993c0b89bd88d7ab30fb4219e992f1ebbb02110ec8fa2
MD5 49447e82b05e1975dc19dc8bdc9644a1
BLAKE2b-256 eb672e172ede8064b3e84a7e006eb1ac7009c80984f802400d00930ce94286bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-pp39-pypy39_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.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0da9591ec50a317f5fe53277f6cf0a2ffc26e35f3d6dd5f29b94f3be0bc2e5cd
MD5 dfa6342068f81199a4f77b59c6b5cdf8
BLAKE2b-256 f19b694a4be95b320975707602c909f5c7b7ae8a47c6f0a021b954a2cfccde54

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-pp39-pypy39_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.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d3165ee03b49e9753122a926e14701be8e018292e8c0bb7580f4522ee8fec31
MD5 c1bf9e4dbbf382cbf0d88e26f65c8319
BLAKE2b-256 4f951a5c367daebac926acd5473b371c96479ba33f1f6acb884335129f408a2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-pp39-pypy39_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.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9f8621623bc284a87fd774b30055921dd531ea3b01b4c4011838a4509781e87
MD5 0f8a14db84039b683f05bc030bea32da
BLAKE2b-256 56ec84347976237ab2a96e32cbd94ff11de65611fc3b40ac64cec2660673ee93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 299d6280c4d2ca02aba7ced890bdcb14dc9e492d4d0c002d3c6819d8f643078c
MD5 47617479cec4a49c0b2411b452f9901a
BLAKE2b-256 3b2b2aa442dcd436a84027898a654e09552a157121efac43c2ad4b6e76f4903f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f85a9448dfb12aa45846ea4c1195bd515041d538a4eacc70d6a5b7756f980701
MD5 1d8180c68299ea796b84ce959c2578b2
BLAKE2b-256 7cccc26d6deafc618a27a52859145fe395ae3fbf7716d3ef5fcc0396c5b80b54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6055614dcfc8e33b4fc50b8dbec0472e5fad466456da198a62663e0d08983e4a
MD5 7cd6067b40daa28a50c9376ff089d9b8
BLAKE2b-256 1e7ca20c666f121c5af384bc667ee8a6e2e3ad2b6f2721c1695fc0c7e1b2f78f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ferrobus-0.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bd861472a0b4f31a22ab2f24830de9bf12f15462aed179bfbc86e8b2a7960bd7
MD5 f6d39b3dca3bb8ce4abfe7c544b4e123
BLAKE2b-256 78b7aedd7fa7043aa0407ae9da709aa40a31907ae259995d462520c990c35b60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e20b14ccafa2602a4dbab4e010effb6312acceca11576867d8228d44fe7974d
MD5 89438c00c604013e9b0bb72e17be0300
BLAKE2b-256 2900bbce3b1a30037b0e4a59a1dd79fb139e5252992d6f997d75972c454ef77c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7f651d46385e56b0098a481e8d6788b2f3406812da0985a519a00b27822e8f9
MD5 3e0bf69d5c50e4b46cce4b73e4f33100
BLAKE2b-256 cdb0d6029af7061b1fdf636bead82027be86d20a1a2fd263747a5866f3b44c73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8aa99461dc365d1689ed3b34ea6a6214273f966de083634ea0efde8df94bbd3a
MD5 feb5710263905a4e40e701e9f30a3902
BLAKE2b-256 b8c6ad499bc5ccf96c49d88fad9f7a5d8aff9abe4c840e024963153042f0d808

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03517eb34983511226c9d8b829c8f9ac8b51513543c0d504f6b61e73e279b8f0
MD5 cb483e1dc7d4c130c5a7b0d2902592d3
BLAKE2b-256 aac4c252ba090f0440aede0611cd4cb108549f03362dfd98385b109ad3abcb21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfc43f73d85f4a5a6028297fa00f3b382254c36089ac948a0ebb30895317479f
MD5 4cd2f0a7a10d4e137f72d695dcc9f388
BLAKE2b-256 29bcf6387856f68880f2002ca807e88734631543aac03b6cdf59d802116dec0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-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.8-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 765e8bda5e1986e5cee732a872b9573d7c67353c06613266d91e13efabf17f8d
MD5 f4e99d7effad1b4049033e87cabd0c00
BLAKE2b-256 4c3863ef0fe6fc307b583435938abf8d3aa4c17f54e1377b18f51dfb7a6f7fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-cp313-cp313-macosx_10_12_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.8-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for ferrobus-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1607790a0b1448abfc0def08643f7b736296da3e08fa14c10038689a2a388695
MD5 06181b8ad3fd445c53e71132b26c87a8
BLAKE2b-256 73ec8d7752b71fe1595d002e50fc1f0ec48fc67106367a740b5289e140adc2ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19bbed468cceeeb386cbabc13b99f0a6b73076373a0fa895067e09515bd64111
MD5 d658c4232825cf2055e8d3bcaff7fef5
BLAKE2b-256 804dafd8467519c43a8ed20ae601a956c35ae5ddae96aa0bec1965a3e88fd9d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ea44071a0f1c3f1c1bf3dfad1ded8d7b6b8b3b367f10ea7ab459603af5416f7
MD5 b135f86fd1c3fabd4deca0d8aa32b223
BLAKE2b-256 f00d4eea047b336b0604d0b9a440a0e772d0be81b1407dffc376f25b533ed6a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53be37f843d27637a13998d092cb9461ef46afba9810f9c7b8b87b0cee2760f1
MD5 e6324f658624285f6dd536ec6063629b
BLAKE2b-256 4530700d61f0b0faee8d38d33971d6408db6d51cc5186d6c77b6a917e4fa2bbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4dad328576e336995640163769ccf9671b45db4f605d7c3fd1a19c71b5f06f9c
MD5 8ed0b00ead1727a822853685a8f6b2ec
BLAKE2b-256 034075a1f1771c397d815c26c5a44ce2eceb54f3571340f4b90bc271aec7f81c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f4368f907beaff1fb6ba95a268e3988d37a12db86a2f13fb9412275b8957bba
MD5 4a1e61c9e7ab6038ae52801034f0e536
BLAKE2b-256 7780cfa128fa2138479420968006f87e59921a3cf6af0af80e5a8dc5837f15b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-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.8-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c3192de33c8f98796f8944f16f2a641a7027768fd8d121a7c55fcf4b8042736
MD5 abac3f6fd20ec8b279e9352db1750cf8
BLAKE2b-256 7c0cdf6abb65bb70d745fbb3a5312c06f65d01bb66dd0667199bf538dd747015

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-cp312-cp312-macosx_10_12_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.8-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for ferrobus-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8708bf74087bc49291946c6733445e1ed5a060ce43978d49d1adef9cfbb7e74
MD5 92004de984a2763e1b53011e0ed39fbd
BLAKE2b-256 85a3bb4311273ddd95d3bcde4c80788067591cd65b7e0c7041fded89c4b33b01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a141e5af30bec84bbcf3e842fdda1e44def66e6a8dd4ce4c78cdf4b71ea8581
MD5 04b5701c1f7a27c38c25cfa19f2c3205
BLAKE2b-256 692d3a17cea4df50989a273bb013cafa2a4fb3bbf9495edba5f3174b2f7eba22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c819bacc3dfcfba72cfec460c6fc8dc4725383cf62e225ca54d9bfe2bc9c0f9d
MD5 cead8cd2eaf909c20eb12939858f6c0c
BLAKE2b-256 bb8d35e058af44e8fea78d776043cf625b15ce1a03d319a26073108a5563f7a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36b578c85871272d86d0241bcdc2849e9061ce9cd7df0b7d3ffe546476745645
MD5 aa83a371c750ac71dc8ef3c562b34b4e
BLAKE2b-256 f0d8b9cc4a77be673e396ac5e2885fa848e765319e655e4a96fc0257a36c6521

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa7494c2537dcbcbd4b4142ad1204e24b28024eaa390cc082f77813b1db5b6d6
MD5 192e386cdc45a3aa3f06e718dfcfae36
BLAKE2b-256 622ed605f5d09905a4826248b55b022dfb5f4dd8cab0296eb5af06d48a212fb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ce23086ce1d627ed902fe89591da97a5c55ea64ec116b2517102e65b91fb1b0
MD5 7c7b851f6793c93fed7afd663b31777b
BLAKE2b-256 79440f9c13501e1014bfa33cb280de017fd93b8f156d29e824001ea667f313e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-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.8-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c7fc55ac0007972fe75bddc315579986d7d2e18facb3779c7f15a5409056667
MD5 ad56cc7a9104d828e498e6bd9c039588
BLAKE2b-256 f9db555f0acd4da77ddd2268a9a5767a885741557526436a6a1ea848d1f2d6d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-cp311-cp311-macosx_10_12_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.8-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for ferrobus-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1854e9a00ce9780454cef5c5575aa99f4d50d22d933411831c8750ab08133358
MD5 320af89457012c3da4b3e6a666716be6
BLAKE2b-256 ce31673f17e9ff41427c4275f0283c4d0f070ece0cfde131c657b81706f17412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 caca3c93e7a5df50ff14517ecdda72e07125969a9499c9427e9d092a6bbd3b2c
MD5 d27f87342d62f2283c03075f866ea99f
BLAKE2b-256 a6c4f1666a344012df40a1684f02ed3b1c4bfe8d8e6b42516cbb6ecc7715320a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15ce76cfec841520f735d62700f33cda35271790b37395071b5ed2278250c7cc
MD5 befeea8f97073ac91ef016e552ce0f94
BLAKE2b-256 92f333a610aaade8ef496f0dcb13e0daaf62f3f119d569e1cdd27d639229bdc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 004bf3d6a604f02506a40ac5b29fb73b465931da67ddb03432d1f63595cba9d6
MD5 810c826d944f30ce95d8fa3149b3a491
BLAKE2b-256 c4707abc21fde7aceda7d7c0983149a78774aefa94f2a9d74696024894040d7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0404129b32c4d0343383f8b04e7c1b62ccf2a82b68b51dd1933da10b4b0137f2
MD5 2c7949a44fad1d4773bfe2f91cbe21d3
BLAKE2b-256 690e5b8f3bda63a43b1b304dcad9da092d21d73ee92a003719fb7f0d1501b016

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for ferrobus-0.1.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e469e7ac43cb2367b54264237a8dcff1b7e05f49269cf58813968299beabd155
MD5 03978082cf2ec94ff547715ec0d9c515
BLAKE2b-256 da4f750a506b9a3d1d1e00ebc6b74bf98646d8585ba5d7b4193a44604e08d07c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c89352f2fa47d608dd4009393133d73c2980ac1565efb78c790579e3e8a5362
MD5 82e22016531cc5a6417c028019f5aee2
BLAKE2b-256 e40aaddd3fb5a0867c81e81e3487cc890b8a21cd491967ef526285ad6354fce7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbf503874907b1e6241cdfefd765302e24d597bb0504dcd6728bfc28f0785347
MD5 2f1b3fa02e5e9d1414feb8cc4f3d8cdb
BLAKE2b-256 3261b790a04a03e228402ecaeb45d9753484afe1d8ba653dc65ee23f65f24df8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f8d2d1d7aee3c66788b7289b86835d1710f0c4b6b815f9fc55a070bc6647607
MD5 31a404b4738d2bdc71c5cd9069601395
BLAKE2b-256 57101ca15c0f4ed1a52c2f0ae207d88c12b1e06c494440e92dcf0f9c2f2f6ee0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3694b630d9174314fdda8febbc218cbe536442d221bc8d16d930755554bd2dd7
MD5 2e78512884454a5bc8eef708a1667e8d
BLAKE2b-256 f1d983c386c8194bd2e09fbf46ffc76f07a3a4f1ea6b7a19831db5eb75281035

See more details on using hashes here.

Provenance

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

File details

Details for the file ferrobus-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d2c26fea3ee01b15e0ea78ee7a20eedc1de626c617b5201e14a4ce021ce493c
MD5 cb60882b3b0f2f30d49926287896bcbc
BLAKE2b-256 98cbbe423728bfaec601ed020147682ddfc91739fe3f8689fdfb8cd3e7bd1e2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-cp38-cp38-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.8-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ac79237673e7686c5719d89bd164f92b3b288d4eff70cb8240ece0d91602dec
MD5 2a99d1dfb42e9face6220432631ad0cf
BLAKE2b-256 4b164ed5ff63f19fa967cccea6781e56cb3d10b6740757586d47a62f5f83129f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-cp38-cp38-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.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1865a2369cb8a79903e1d4afbe4704f340ac04a9bf3d64159f0defd3594200c
MD5 d74d8eb52f3b723e0a29176edce12b0c
BLAKE2b-256 8ad4ba4037f81e3df1611015b6b1766997c3ce90b243276451aaa872ed102382

See more details on using hashes here.

Provenance

The following attestation bundles were made for ferrobus-0.1.8-cp38-cp38-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.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ferrobus-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72ccd90d01a117dcf524794df59c9dbe7f09584e7fe319bc64cffe6caf7e28ab
MD5 3448d57be8527379c238056f56a86638
BLAKE2b-256 b544117e50bd643bb5e6e4ad73a77e56cb71b46378aa52528d5b01093b7d0489

See more details on using hashes here.

Provenance

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