File size: 718 Bytes
405f410 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | """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",
} |