sarafg11

Untitled

Feb 19th, 2020
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. {
  2. "start_urls": [
  3. "https://www.zalando.es/le-coq-sportif/",
  4. "https://www.zalando.es/desigual/"
  5. ],
  6. "fields": {
  7. "name": "//div [contains(@class,'container')]//h1/text()",
  8. "price": "//script[@type='application/ld+json' and contains(.,'price')]/text()",
  9. "price_old": "//div[@class='h-product-price topSection']/span[contains(@class,'h-strike')]/text()",
  10. "reference": "",
  11. "image": "//meta[@property='og:image']/@content",
  12. "description": "(//div[@role='tabpanel']//div)[1]//text()",
  13. "brand": "",
  14. "brand_text": "//script[@type='application/ld+json' and contains(.,'brand')]/text()",
  15. "categories": "//li[contains(@class,'category')]/a//text()",
  16. "availability": "//script[@type='application/ld+json' and contains(.,'availability')]/text()",
  17. "rating_average": "//script[@type='application/ld+json' and contains(.,'ratingValue')]/text()",
  18. "rating_count": "//script[@type='application/ld+json' and contains(.,'reviewCount')]/text()",
  19. "barcode": "",
  20. "stock": ""
  21. },
  22. "links": {
  23. "detail": "//a[@class='cat_infoDetail--ePcG']",
  24. "next_page": "//a[@title='página siguiente']"
  25. },
  26. "regex": {
  27. "price": ["price\\\":\\\"(.*?)\\\"", 1],
  28. "availability": ["availability\\\":\\s*\\\"(.*?)\\\"", 1],
  29. "brand_text": ["brand\\\":\\\"(.*?)\\\"", 1],
  30. "rating_average": ["ratingValue\\\":\\\"(\\d+.\\d{1,2}).*?\\\"", 1],
  31. "rating_count": ["reviewCount\\\":(.*?),", 1]
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment