Skip to main content

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:

  1. 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
  1. Add the djgpa and preferences applications to INSTALLED_APPS in your settings file (usually settings.py)

  2. Sync database (./manage.py syncdb)

Usage example:

  1. Setup Google Account, DeviceID, Proxy settings on admin panel

  2. 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

django-googleplay-api-1.1.0.tar.gz (63.5 kB view hashes)

Uploaded source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page