JoMingyu / google-play-scraper

Google play scraper for Python inspired by <facundoolano/google-play-scraper>
MIT License
726 stars 197 forks source link

[BUG] #128

Closed faraz-bst closed 2 years ago

faraz-bst commented 2 years ago

google_play_scraper.VERSION 1.1.0

Describe the bug response no longer contains the key size which was previously present in the response or can be referred from the Repo's README.md

Code

result = app(
    'com.nianticlabs.pokemongo',
    lang='en', # defaults to 'en'
    country='us' # defaults to 'us'
)

Expected behavior Key 'size` should be contained in the response along with other keys

{
  "size": "94M",
}

Additional context Found a commit where the code for size was commented - https://github.com/JoMingyu/google-play-scraper/commit/d53bbf383b93a5e9ece0a22eae9176449a646227

JoMingyu commented 2 years ago

I updated the example. Thanks you.

faraz-bst commented 2 years ago

Are there any plans of adding the size key going forward @JoMingyu?