| """CSS Selectors for data extraction.""" | |
| APP_SELECTORS = { | |
| "title": "title", | |
| "rating": "rating", | |
| "installs": "installs", | |
| "price": "price", | |
| "description": "description", | |
| "genre": "genre", | |
| "developer": "developer", | |
| "updated": "updated", | |
| "version": "version", | |
| "size": "size", | |
| "content_rating": "contentRating", | |
| "icon": "icon", | |
| "screenshots": "screenshots", | |
| } | |
| SEARCH_SELECTORS = { | |
| "title": "title", | |
| "app_id": "appId", | |
| "rating": "rating", | |
| "installs": "installs", | |
| "icon": "icon", | |
| "developer": "developer", | |
| } | |
| REVIEWS_SELECTORS = { | |
| "rating": "rating", | |
| "date": "date", | |
| "author": "authorName", | |
| "title": "title", | |
| "body": "body", | |
| } |