gpapi
- Google Play API for RustA library for interacting with the Google Play API, strongly following google play python API patterns.
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; ```
README.md
is automatically generated from the rustdoc using cargo-readme
.
Some of the functionality of the python library is missing, such as browsing and searching for packages.
This library was originally created by David Weinstein, and is currently maintained by Bill Budington.
License: MIT