Usage - KeremDlkmn/appstore-profile-scraper GitHub Wiki
How to Use?
After installing appstore-profile-scraper, its usage is performed as follows.
Scrape profile for an app:
from appstore_profile_scraper import AppStoreProfile
apps = AppStoreProfile(
country="tr",
app_name="instagram"
)
if __name__ == '__main__':
print(apps.profile_info())
Scrape profile for an app:
NOTE: If the application name contains characters in the format of utf-8, the following code block can be used.
from appstore_profile_scraper import AppStoreProfile
apps = AppStoreProfile(
country="tr",
app_name="instagram".encode('utf-8').decode('latin-1')
)
if __name__ == '__main__':
print(apps.profile_info())