gpapi
- Google Play API for Rust
A library for interacting with the Google Play API, stronly following google play python API patterns.
Getting Started
Interacting with the API starts off with initializing the API and logging in.
let mut gpa = new;
gpa.login.await);
From here, you can get package details, get the URL to download a package, or use the library to download it.
let details = gpa.details;
println!;
let download_url = gpa.get_download_url;
println!;
gpa.download.await;
Todo
Some of the functionality of the python library is missing, such as browsing and searching for packages.
Credits
This library was originally created by David Weinstein, and is currently maintained by Bill Budington.