Fetches details of packages on Google Play.
It is a python package to fetch details of apps on Google Play such as ratings, vendor,last updated, content rating and much more.
Install using pip:
pip install playstats
>>> from playstats.appstat import AppStat
>>> app=AppStat('com.whatsapp')
>>> app.vendor()
'WhatsApp Inc.'
>>> app.title()
'WhatsApp Messenger'
>>> app.rating()
4.4
>>> app.genre()
'Communication'
>>> app.version()
'Varies with device'
>>> app.content_rating()
'Rated for 3+'
Apoorva Pandey – apoorvapandey365@gmail.com
Distributed under the BSD license.
https://github.com/apoorvaeternity
- Fork it (https://github.com/EternityPy/PlayStats/)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -m 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request