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 )