gwelle 0.1.0

Lightweight Rust client for the Google Trends API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![forbid(unsafe_code)]

pub mod client;
pub mod endpoints;
pub mod error;
pub mod models;

pub mod agent;
pub mod session;

pub use client::TrendsClient;
pub use error::{Result, TrendsError};
pub use models::*;