"""URLs and Formats for Google Play.""" BASE_URL = "https://play.google.com" APP_URL_FORMAT = f"{BASE_URL}/store/apps/details?id={{app_id}}&hl={{lang}}&gl={{country}}" SEARCH_URL_FORMAT = f"{BASE_URL}/store/search?q={{query}}&hl={{lang}}&gl={{country}}&n={{n_hits}}" REVIEWS_URL_FORMAT = f"{BASE_URL}/_/PlayStoreUi/data/batchexecute?bl={{app_id}}&hl={{lang}}&gl={{country}}" PERMISSIONS_URL_FORMAT = f"{BASE_URL}/store/apps/details?id={{app_id}}&hl={{lang}}&gl={{country}}" DEVELOPER_URL_FORMAT = f"{BASE_URL}/store/apps/developer?id={{developer_id}}&hl={{lang}}&gl={{country}}" COLLECTION_URL_FORMAT = f"{BASE_URL}/store/topcharts/{{collection}}?hl={{lang}}&gl={{country}}&n={{n_items}}"