GooglePlayStoreScrape
1.0.0
GooglePlayStorescrapeは、Google PlayストアのAndroidアプリに関するレビューやその他のデータをこするためのPythonモジュールです
pip install GooglePlayStoreScrape pip install - r requirements . txtChrome Driverパッケージに関連するエラーを受け取った場合は、マシンにインストールされているChromeバージョンを見て、互換性のあるバージョンをインストールしてください。このパッケージは91.0.4472.101.0を使用しています
SeleniumとBeautifulSoupを使用して、関数を呼び出すと、セレンを使用してクロムウィンドウを開き、最後のページまですべてのレビューを開きます。アクションが完了すると、ウィンドウは自動的に閉じられます。
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 )