JoMingyu / google-play-scraper

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

[BUG] Missing data - Title retrieving "[]" #133

Closed luishsantos closed 2 years ago

luishsantos commented 2 years ago

from google_play_scraper import app result = app( 'com... 'com.nianticlabs.pokemongo', ... lang='en', # defaults to 'en' ... country='us' # defaults to 'us' ... ) print(result) {'title': [], 'description': None, 'descriptionHTML': None, 'summary': None, 'summaryHTML': None, 'installs': None, 'minInstalls': None, 'score': None, 'ratings': None, 'reviews': None, 'histogram': [0, 0, 0, 0, 0], 'price': None, 'free': None, 'currency': None, 'sale': False, 'saleTime': None, 'originalPrice': None, 'saleText':

I was working with scraper today, and at a certain time, the title started returned the "[]" value, even with the documentation example. Can someone help?

luishsantos commented 2 years ago

not using latest version of the scraper