gpapi
- Google Play API for Rust
A library for interacting with the Google Play API, strongly following google play python API patterns.
Getting Started
Interacting with the API starts off with initializing the API and logging in.
use Gpapi;
async
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.await;
println!;
let download_url = gpa.get_download_url.await;
println!;
gpa.download.await;
Docs
Documentation for this crate can be found on docs.rs.
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.
License: MIT