Skip to content
This repository was archived by the owner on Nov 18, 2019. It is now read-only.

Commit 30ba1f6

Browse files
Updates Readme
1 parent 08ed23c commit 30ba1f6

File tree

1 file changed

+45
-7
lines changed

1 file changed

+45
-7
lines changed

README.md

Lines changed: 45 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,53 @@
11
# PlayStats
2-
A python package to fetch details of apps on Google Play such as ratings, vendor,last updated and much more.
2+
> Fetches details of packages on Google Play.
33
4+
It is a python package to fetch details of apps on Google Play such as ratings, vendor,last updated, content rating and much more.
45

6+
7+
## Installation
8+
9+
Install using pip:
10+
11+
```sh
512
pip install playstats
13+
```
14+
15+
## Usage example
16+
617

718
```python
819

9-
from playstats.appstat import AppStat
10-
app=AppStat('com.google.android.gms')
11-
app.vendor()
12-
app.last_updated()
13-
app.rating()
14-
app.all_ratings()
20+
>>> from playstats.appstat import AppStat
21+
>>> app=AppStat('com.whatsapp')
22+
>>> app.vendor()
23+
'WhatsApp Inc.'
24+
>>> app.title()
25+
'WhatsApp Messenger'
26+
>>> app.rating()
27+
4.4
28+
>>> app.genre()
29+
'Communication'
30+
>>> app.version()
31+
'Varies with device'
32+
>>> app.content_rating()
33+
'Rated for 3+'
1534
```
35+
36+
37+
38+
## Meta
39+
40+
Apoorva Pandey – apoorvapandey365@gmail.com
41+
42+
Distributed under the BSD license.
43+
44+
[https://github.com/apoorvaeternity](https://github.com/apoorvaeternity)
45+
46+
## Contributing
47+
48+
1. Fork it (<https://github.com/EternityPy/PlayStats/>)
49+
2. Create your feature branch (`git checkout -b feature/fooBar`)
50+
3. Commit your changes (`git commit -m 'Add some fooBar'`)
51+
4. Push to the branch (`git push origin feature/fooBar`)
52+
5. Create a new Pull Request
53+

0 commit comments

Comments
 (0)