gpapi - Google Play API for Rust

crates.io Documentation MIT licensed CI

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.

```rust use gpapi::Gpapi;

[tokio::main]

async fn main() { let mut gpa = Gpapi::new("en_US", "UTC", "hero2lte"); gpa.login("someone@gmail.com", "somepass").await; // do something } ```

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

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

let downloadinfo = gpa.getdownloadinfo("com.instagram.android", None).await; println!("{:?}", downloadinfo);

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