3 stable releases
1.1.2 | Aug 18, 2024 |
---|---|
1.1.0 | Feb 10, 2023 |
1.0.0 | May 19, 2022 |
#402 in Encoding
33 downloads per month
45KB
870 lines
VivinQ: wine data library from Vivino data
This project is based on the python project Viviner.
It prepare an URL to query the Vivinio API. You are free to use any HTTP client to perform requests.
Usage
fn main() {
//get all wines from France and United States
let pl = vivinq::Payload{country_codes:Some(vec![String::from("fr"), String::from("us")]), min_rating:4.2, ..Default::default()};
let url: String = vivinq::get_url(&pl);
// perform your request
}
It seems, you don't need to specify a USER_AGENT in your HTTP request, you can send an empty string User-Agent:
.
The Payload is defined in lib.rs and parameters are optionals:
pub struct Payload {
/// "country_codes[]": "br","fr","us","de", ...
pub country_codes: Option<Vec<String>,
/// "food_ids[]": 20,
pub food_ids: Option<Vec<u16>>,
/// "grape_ids[]": 3,
pub grape_ids: Option<Vec<u16>>,
/// "grape_filter": "varietal",
pub grape_filter: Option<String>,
/// "min_rating": 3.7, from 0.0 to 5.0
pub min_rating: Option<f32>,
/// "order_by": "ratings_average",
pub order_by: Option<String>,
/// "order": "desc", or asc (true)
pub order: Option<bool>,
/// "price_range_min": 25,
pub price_range_min: Option<u32>,
/// "price_range_max": 100,
pub price_range_max: Option<u32>,
/// "region_ids[]": 383,
pub region_ids: Option<Vec<u32>>,
/// "wine_style_ids[]": 98,
pub wine_style_ids: Option<Vec<u16>>,
/// "wine_type_ids[]": 1,
/// "wine_type_ids[]": 2,
pub wine_type_ids: Option<u16>,
}
Features
serde
(enabled by default). It allows you to deserialize Vivino JSON using serde.
Dependencies
~0.5–1.3MB
~26K SLoC