Google Play API, with configuration on Django.
Project description
With this package, you can configure device id and proxy params, for google play api. Also you can change google account, and link device with new or existing account. This reusable app give you capabilities to search, download and etc.
Installation:
Package:
$ git clone https://github.com/gotlium/django-googleplay-api.git
$ cd django-googleplay-api && sudo python setup.py install
OR
$ sudo pip install django-googleplay-api
Add the djgpa and preferences applications to INSTALLED_APPS in your settings file (usually settings.py)
Sync database (./manage.py syncdb)
Usage example:
Setup Google Account, DeviceID, Proxy settings on admin panel
Try to use it from shell (./manage.py shell):
>>> from djgpa.api import GooglePlay >>> >>> api = GooglePlay().auth() >>> # Search apps >>> for row in api.search('google'): ... print row.title >>> # App details >>> details = api.details('com.android.chrome') >>> print details.docV2.title, details.docV2.creator >>> # Download app >>> api.download('com.google.android.apps.docs', '~/Download/chrome.apk')
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Close
Hashes for django-googleplay-api-1.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f724fff18981ba2c650db08fc881579ac69035dee903f2b52ecdb303a34d2954 |
|
MD5 | 90958532aa6f018e607fe53fc5a1b712 |
|
BLAKE2b-256 | 2e0e3a6a954be1d15eb1c3f3fe68f0d37747d094a16a4ebe58d1bff73a189ca6 |