gflights 0.2.0

Unofficial async Rust client for the Google Flights web API — search flights, price graphs, and booking offers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Request-building helpers: encode `Config` fields into Google Flights
//! POST body strings.
//!
//! | Module | Purpose |
//! |---|---|
//! | [`calendar_graph_request`] | Price-graph (calendar) request body |
//! | [`city_request`] | City / location lookup request body |
//! | [`date_grid_request`] | Date-grid (departure × return matrix) request body |
//! | [`flight_request`] | Flight-search and booking-offer request body |

pub mod calendar_graph_request;
pub mod city_request;
pub mod date_grid_request;
pub mod explore_request;
pub mod flight_request;