StoreHunter
StoreHunter, available here, is a Python script that retrieves the list of all the mobile applications having access to mobile stores developer console.
Having valid App Store Connect credentials, the script will retrieve all the information about the apps:
App Name: Application common name
Bundle ID: Application bundle ID
App ID: Application number ID
Version: Application version
Status: Application development status
Is Watch Only: Is the application only for watches?
Downlodable: Is the application downloadable?
Date: Creation date of the last application version
Is public?: Is the application publicly available on App Store to users?
Release History URL: URL of the release history for an application
App Store URL: URL of the application on the public App Store
Having valid Play Store Console credentials, the script will retrieve all the information about the apps:
Account ID: Account ID of the user used to access the Developer Console
Web ID: Application number ID used in Developer Console
App Name: Application common name
App ID: Application ID
Status: Application development status
Date: Creation date of the last application version
Is public?: Is the application publicly available on Play Store to users?
Release History URL: URL of the release history for the an application
Play Store URL: URL of the application on the public Play Store
Installation
Execution
You can specify two modalities:
--apple: to retrieve information about mobile application from the App Store Connect account--google: to retrieve information about mobile application from the Play Store Console account
Other options:
--timeout <seconds>: to specify timeout in seconds for the login phase (default: 60s)--debug: debug mode--help: help command
App Store Connect
If you specify --apple a new Chrome Window will be open using Selenium and you have 60 seconds to login into the App Store Connect using valid credentials.




Then the script will retreive information of the apps that the account can access to in its console and will output in a CSV file (YYYYMMDD__AppStore.csv).
Play Store Console
If you specify --google a new Chrome Window will be open using Selenium and you have 60 seconds to login into the Play Store Developer Console using valid credentials.



Then the script will retreive information of the apps that the account can access to in its console and will output in a CSV file (YYYYMMDD__PlayStore.csv).
Last updated