sarafg11

Untitled

Feb 20th, 2020
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. {
  2. "start_urls": [
  3. "https://www.zalando.es/desigual/"
  4. ],
  5. "fields": {
  6. "name": "//div[@class='_3yfuT5']/h3/text()",
  7. "price": "//script[@type='application/ld+json' and contains(.,'price')]/text()",
  8. "price_old": "//div[@class='h-product-price topSection']/span[contains(@class,'h-strike')]/text()",
  9. "reference": "",
  10. "image": "//meta[@property='og:image']/@content",
  11. "description": "(//div[@role='tabpanel']//div)[1]//text()",
  12. "brand": "",
  13. "brand_text": "//script[@type='application/ld+json' and contains(.,'brand')]/text()",
  14. "categories": "//li[contains(@class,'category')]/a//text()",
  15. "availability": "//script[@type='application/ld+json' and contains(.,'availability')]/text()",
  16. "rating_average": "//script[@type='application/ld+json' and contains(.,'ratingValue')]/text()",
  17. "rating_count": "//script[@type='application/ld+json' and contains(.,'reviewCount')]/text()",
  18. "barcode": "",
  19. "stock": ""
  20. },
  21. "links": {
  22. "detail": "//a[@class='cat_infoDetail--ePcG']",
  23. "next_page": "//*[@class='cat_link-8qswi']"
  24. },
  25. "regex": {
  26. "price": ["price\\\":\\\"(.*?)\\\"", 1],
  27. "availability": ["availability\\\":\\s*\\\"(.*?)\\\"", 1],
  28. "brand_text": ["brand\\\":\\\"(.*?)\\\"", 1],
  29. "rating_average": ["ratingValue\\\":\\\"(\\d+.\\d{1,2}).*?\\\"", 1],
  30. "rating_count": ["reviewCount\\\":(.*?),", 1]
  31. },
  32. "splash":{
  33. "item_detail":{
  34. "request_type": "list_request"
  35. },
  36. "positioning_spider":{
  37. "request_type": "list_request"
  38. }
  39. },
  40. "list":{
  41. "product": "//article[@class='cat_articleContainer-2vK3a']",
  42. "page": "substring-before(substring-after(//nav/ul/li/div[@aria-current='true']/text(), 'Página '), ' de ')"
  43. }
  44. }
Add Comment
Please, Sign In to add comment