Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

fixes #76 adds tablespoon spider #199

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions scrapy_proj/openrecipes/spiders/tablespoon_spider.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
from scrapy.contrib.spiders import CrawlSpider, Rule
from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor
from scrapy.selector import HtmlXPathSelector
from openrecipes.items import RecipeItem, RecipeItemLoader


class TablespoonMixin(object):
source = 'tablespoon'

def parse_item(self, response):

hxs = HtmlXPathSelector(response)

base_path = '//*[@class="recipe-area hrecipe"]'

recipes_scopes = hxs.select(base_path)

name_path = '//*[@class="fn"]/text()'
description_path = '//*[@class="summary"]/text()'
image_path = '//*[@class="photo"]/@src'
recipeYield_path = '//*[@class="servings"]/text()'

recipes = []

for r_scope in recipes_scopes:
il = RecipeItemLoader(item=RecipeItem())

il.add_value('source', self.source)

il.add_value('name', r_scope.select(name_path).extract())
il.add_value('image', r_scope.select(image_path).extract())
il.add_value('url', response.url)
il.add_value('description', r_scope.select(description_path).extract())
il.add_value('recipeYield', r_scope.select(recipeYield_path).extract())

recipes.append(il.load_item())

return recipes


class TablespooncrawlSpider(CrawlSpider, TablespoonMixin):

name = "tablespoon.com"

allowed_domains = ["tablespoon.com"]

start_urls = [
"http://www.tablespoon.com/search/#&page_type=",
]

rules = (
Rule(SgmlLinkExtractor(allow=('/search/#&page_type=&sort=&page=\d+'))),

Rule(SgmlLinkExtractor(allow=('/recipes/\[a-z]+/\d+/')),
callback='parse_item'),
)