wordstat-rs
Rust library for interacting with the Yandex Wordstat API
Usage:
Create the client:
let client = new;
Get the list of available regions:
let regions = get_regions.await.unwrap;
Start the report generation:
let request = new
.add_phrase
.add_geo; // Geo is optional
let report_id = create_report.await.unwrap;
Getting the list of all available reports and their statuses:
let report_list = get_report_list.await.unwrap;
Get the generated report:
let report = get_report.await.unwrap;
Delete the reports (you can have more than 5 reports on your account simultaneously):
delete_report.await.unwrap;
Stuff to do:
- Creating reports
- Deleting reports
- Getting reports
- Getting reports list
- Getting regions list
- Cover the methods with tests
- Documentation