Search, Simplify detail & Downloadable from Apkpure.com
this repo is no longer maintenance, and will be move to This repo
- Simply to use
- Readable
- Using async request & multithreading for really fast request (not really sure)
- Easy accessing dictionary
git clone https://github.com/dyseo/ApkPure
cd ApkPure
pip3 install -r requirements.txt
from apis import ApkPure
apk = ApkPure(return_as="dict")
#set 'dict' or 'rpc' for returning as
search = api._search("pubg")
print(search)
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)
api.download_(url=detail.url_download, name=detail.title, ex=detail.extension, path="/downloads)
Dyseo / Dyseo