sarafg11

Untitled

Nov 26th, 2020
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. {
  2. "start_urls": [
  3. "https://www.walmart.ca/search?q=silk&c=10019",
  4. "https://www.walmart.ca/search?q=danone&c=10019",
  5. "https://www.walmart.ca/search?q=oikos&c=10019",
  6. "https://www.walmart.ca/search?q=activia&c=10019",
  7. "https://www.walmart.ca/search?q=international+delight&c=10019"
  8. ],
  9. "fields": {
  10. "name": "//h1[@data-automation='product-title']/text()",
  11. "price": "",
  12. "reference": "",
  13. "image": "//meta[@property='og:image']/@content",
  14. "description": "//script[contains(.,'longDescription')]/text()",
  15. "brand": "",
  16. "brand_text": "//span[@data-automation='brand']/a/text()",
  17. "categories": "(//ol[@data-automation='desktop-breadcrumbs']/li/a[@target='_self'])[position()>1]/text()",
  18. "rating_average": "",
  19. "rating_count": "",
  20. "barcode": "",
  21. "stock": "",
  22. "sku": "substring-before(substring-after(//script[@type='application/ld+json' and contains(text(), '\"@type\":\"Product\"')]/text(), 'sku\":\"'), '\",')"
  23. },
  24. "json_fields": {
  25. "price": "$.*.online[0].maxCurrentPrice",
  26. "price_old": "$.*.online[0].maxRegularPrice",
  27. "availability": "$.*.online[0].status",
  28. "seller": "$.*.online[0].sellerName"
  29. },
  30. "links": {
  31. "detail": "//a[@class='product-link']",
  32. "next_page": "//div[@id='shelf-pagination']//a[@id='loadmore']"
  33. },
  34. "regex": {
  35. "description": ["longDescription\\\":\\\"(.*?)\\\"", 1]
  36. },
  37. "parser_modules": [
  38. "walmart_single_item"
  39. ],
  40. "pipelines": {
  41. "AvailabilityPipeline": {
  42. "forced_false": "NotSold"
  43. }
  44. },
  45. "list": {
  46. "product": "//article[contains(@class, 'product')]",
  47. "page": "//ul[@class='page-select-list']/li[contains(@class,'selected')]/a/text()"
  48. }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment