GooglePlayStoreScrape
1.0.0
GooglePlayStoresCrape是一个python模块,可在Google Play商店中删除有关任何Android应用程序的其他数据
pip install GooglePlayStoreScrape pip install - r requirements . txt如果您收到与Chrome驱动程序软件包有关的错误,请查看计算机中安装的Chrome版本并安装兼容版本。该软件包使用91.0.4472.101.0
使用Selenium和Beautifulsoup,在调用功能时,它使用Selenium打开Chrom窗口,然后向下滚动以打开所有评论,直到最后一页。操作完成后,窗口将自动关闭。
摘录在Play商店中对特定Android应用给出的详细评论和评分
import GooglePlayStoreScrape as gpss
#define app id and path of chrome driver
app_id = 'com.appname.extension' #example in the app url
country = 'IN'
language = 'en'
gpss . get_reviews ( app_id , language , country )在Play商店中提取特定Android应用的详细信息
import GooglePlayStoreScrape as gpss
#define app id and path of chrome driver
app_id = 'com.appname.extension' #example in the app url
country = 'IN'
language = 'en'
gpss . get_info ( app_id , language , country )