GooglePlayStoreScrape
1.0.0
GooglePlayStorescrape
pip install GooglePlayStoreScrape pip install - r requirements . txtChrome 드라이버 패키지와 관련된 오류를받는 경우 컴퓨터에 설치된 Chrome 버전을보고 호환 버전을 설치하십시오. 이 패키지는 91.0.4472.101.0을 사용합니다
Selenium과 BeautifulSoup을 사용하여 기능을 호출하면 Selenium을 사용하여 크롬 창을 엽니 다. 마지막 페이지까지 모든 리뷰를 열기 위해 아래로 스크롤합니다. 작업이 완료되면 창이 자동으로 닫힙니다.
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 )