Search and Download android application from ApkPure
FYI, i'm re-create this project just because im bored😒 and also i want to learn about some library what im use in this project.
but if you want open issue or anything dont hold your self
- Simply to use, just 1, 2, 3 and there your output 😁👍
- Fully type hinted for more documented 😋
- Multithread request make your download and search more faster ⚡
- Pandas table output make the output more pretty ❤️
- More? soon 😁👌maybe
for now just clone this repo and install all dependencies from requirements.txt with pip install -r requirements.txt
>>> api = Api()
>>> apps = api.search('vpn') #lets say this contain 10 rows data
>>> print(apps)
>>> api = Api()
>>> apps = api.search('vpn') #lets say this contain 10 rows data
>>> print(apps.to_dict()) #return data as type dict
>>> api = Api()
>>> apps = api.search('vpn') #lets say this contain 10 rows data
>>> api.download(apps) #<= this will download 10 apps
>>> api = Api()
>>> apps = api.search('vpn') #lets say this contain 10 rows data
>>> api.download(apps, count=5) #<= this will download 5 apps
note: `count` cannot higher than lenght of rows
>>> api = Api()
>>> apps = api.search('vpn') #lets say this contain 10 rows data
>>> api.download(apps, index=[1,4,7]) #<= this will download only row 1, 4 and 7
i didn't test this on mobile, if this doesnt work please open issue or make pull request
Dyseo / Dyseo