rtrend 0.1.7

Unofficial API for interacting with Google Trend
Documentation
1
2
3
4
5
6
7
8
9
10
11
use rtrend::{Client, Country, Keywords, RelatedQueries};

fn main() {
    let keywords = Keywords::new(vec!["Cinema"]);
    let country = Country::ALL;

    let client = Client::new(keywords, country).build();

    let search_interest = RelatedQueries::new(client).get();
    println!("{}", search_interest);
}