Alnyz / ApkPure

search & download app using python
MIT License
26 stars 5 forks source link
api apk mit-license python3 wrapper

ApkPure Unofficial Wrapper ✨

Search, Simplify detail & Downloadable from Apkpure.com

Codacy Badge Build Status Python License


this repo is no longer maintenance, and will be move to This repo


Features

  1. Simply to use
  2. Readable
  3. Using async request & multithreading for really fast request (not really sure)
  4. Easy accessing dictionary

Installing

How to

from apis import ApkPure

apk = ApkPure(return_as="dict")
#set 'dict' or 'rpc' for returning as

Search Application

search = api._search("pubg")
print(search)

Get Details from giving url

details = api.detail_from_url(search.results[0].url)
print(details)

# or you can do simple like this

detail = api.this_detail(search, 1)
print(detail)

Download application

api.download_(url=detail.url_download, name=detail.title, ex=detail.extension, path="/downloads)

Author

Dyseo / Dyseo