ergast_rust

Crates.ioergast_rust
lib.rsergast_rust
version0.1.0
sourcesrc
created_at2023-12-25 18:17:49.151144
updated_at2023-12-25 18:17:49.151144
descriptionCollection of utilities to fetch data from amazing F1 dataset, the Ergast API.
homepage
repository
max_upload_size
id1080377
size51,146
Yuichi Nakamura (yunaka354)

documentation

README

Introduction

This repository offers an ergonomic Rust wrapper designed to seamlessly fetch JSON responses from The Ergast API, a comprehensive source for Formula 1 data.

Basic Usage

// fetch results endpoint
let path = api::Path{year:2023, round:Some(1)};
let params = api::URLParams::default();
ergast::Ergast::results(path, params).await.unwrap();
Commit count: 0

cargo fmt