flyr-cli 1.6.1

Search Google Flights from the terminal
Documentation
pub mod error;
pub mod fetch;
pub mod mcp;
pub mod model;
pub mod parse;
pub mod proto;
pub mod query;
pub mod table;

use error::FlightError;
use fetch::FetchOptions;
use model::SearchResult;
use query::{QueryParams, SearchQuery};

pub async fn search(
    query: SearchQuery,
    options: FetchOptions,
) -> Result<SearchResult, FlightError> {
    let params = query.to_url_params();
    let html = fetch::fetch_html(&params, &options).await?;
    parse::parse_html(&html)
}

pub fn generate_browser_url(params: &QueryParams) -> String {
    query::to_google_flights_url(params)
}