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.

rust let mut gpa = Gpapi::new("en_US", "UTC", "hero2lte"); gpa.login("someone@gmail.com", "somepass").await);

From here, you can get package details, get the URL to download a package, or use the library to download it.

```rust let details = gpa.details("com.instagram.android"); println!("{:?}", details);

let downloadurl = gpa.getdownloadurl("com.instagram.android", None); println!("{:?}", downloadurl);

gpa.download("com.instagram.android", None, &Path::new("/tmp/testing")).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.