In [1]:
from pattern.web import URL, DOM, plaintext, Element, extension, Crawler, DEPTH
import re
import pickle
import random
import PIL
import time
from PIL import Image
import os
In [2]:
class Scraper():
def save_image(self):
pass
def get_recipe(self):
pass
In [3]:
class AllRecipesScraper(Scraper):
def get_ingredients(self,element):
ing_nodes = element.by_class("recipe-ingred_txt added")
return "\n".join([plaintext(a.content) for a in ing_nodes])
def get_instructions(self,element):
instr_nodes = element.by_class("recipe-directions__list--item")
return "\n".join([plaintext(a.content) for a in instr_nodes])
def get_recipe(self,element):
return self.get_ingredients(element)+"\n"+self.get_instructions(element)
In [4]:
class AllRecipesRandomSearch():
def __init__(self,tried_ids = None, recipe_list = None ):
self.scraper = AllRecipesScraper()
if tried_ids is None:
self.tried_ids = set()
else:
self.tried_ids = tried_ids
if recipe_list is None:
self.recipe_list = {}
else:
self.recipe_list = recipe_list
self.count = 0
def reset_count(self):
self.count = 0
def new_id(self,rec_id):
return rec_id not in self.tried_ids
def visit(self,rec_id):
self.count += 1
url = URL("http://allrecipes.com/recipe/"+str(rec_id))
print url
try:
source = url.download(cached=True)
self.scrape(source, rec_id)
except Exception as detail:
print detail
print 'Unable to Scrape:', rec_id
self.tried_ids.add(rec_id)
def scrape(self,source,rec_id):
print("scraping", rec_id)
element = Element(source)
recipe = self.scraper.get_recipe(element)
self.recipe_list[rec_id]=recipe
In [ ]:
ids_to_scrape = pickle.load(open("paul_recipe_to_dload.p","rb"))
print len(ids_to_scrape)
search = AllRecipesRandomSearch()
count = 0
for id in ids_to_scrape:
count = count+1
if count%100 ==0:
print "Check point Iter: %s"%count
pickle.dump(search.recipe_list, open("recipes2"+str(count)+".p", "wb" ) )
search.visit(id)
print "Saving the final work"
pickle.dump( search.recipe_list, open( "downloaded-recipes.p", "wb" ) )
7945
http://allrecipes.com/recipe/24029
('scraping', '24029')
http://allrecipes.com/recipe/63331
('scraping', '63331')
http://allrecipes.com/recipe/11542
('scraping', '11542')
http://allrecipes.com/recipe/11546
('scraping', '11546')
http://allrecipes.com/recipe/11544
('scraping', '11544')
http://allrecipes.com/recipe/55292
('scraping', '55292')
http://allrecipes.com/recipe/19395
('scraping', '19395')
http://allrecipes.com/recipe/19393
('scraping', '19393')
http://allrecipes.com/recipe/22266
('scraping', '22266')
http://allrecipes.com/recipe/48896
('scraping', '48896')
http://allrecipes.com/recipe/82227
('scraping', '82227')
http://allrecipes.com/recipe/88390
('scraping', '88390')
http://allrecipes.com/recipe/6791
('scraping', '6791')
http://allrecipes.com/recipe/6798
('scraping', '6798')
http://allrecipes.com/recipe/56127
('scraping', '56127')
http://allrecipes.com/recipe/98310
('scraping', '98310')
http://allrecipes.com/recipe/75943
('scraping', '75943')
http://allrecipes.com/recipe/97157
('scraping', '97157')
http://allrecipes.com/recipe/75947
('scraping', '75947')
http://allrecipes.com/recipe/25286
('scraping', '25286')
http://allrecipes.com/recipe/25281
('scraping', '25281')
http://allrecipes.com/recipe/16253
('scraping', '16253')
http://allrecipes.com/recipe/16251
('scraping', '16251')
http://allrecipes.com/recipe/16257
('scraping', '16257')
http://allrecipes.com/recipe/91134
('scraping', '91134')
http://allrecipes.com/recipe/16707
('scraping', '16707')
http://allrecipes.com/recipe/16258
('scraping', '16258')
http://allrecipes.com/recipe/16702
('scraping', '16702')
http://allrecipes.com/recipe/88022
('scraping', '88022')
http://allrecipes.com/recipe/12019
('scraping', '12019')
http://allrecipes.com/recipe/48022
('scraping', '48022')
http://allrecipes.com/recipe/12010
('scraping', '12010')
http://allrecipes.com/recipe/12012
('scraping', '12012')
http://allrecipes.com/recipe/26393
('scraping', '26393')
http://allrecipes.com/recipe/52460
('scraping', '52460')
http://allrecipes.com/recipe/17253
('scraping', '17253')
http://allrecipes.com/recipe/17254
('scraping', '17254')
http://allrecipes.com/recipe/15481
('scraping', '15481')
http://allrecipes.com/recipe/63026
('scraping', '63026')
http://allrecipes.com/recipe/9528
('scraping', '9528')
http://allrecipes.com/recipe/63022
('scraping', '63022')
http://allrecipes.com/recipe/10703
('scraping', '10703')
http://allrecipes.com/recipe/10702
('scraping', '10702')
http://allrecipes.com/recipe/10700
('scraping', '10700')
http://allrecipes.com/recipe/9253
('scraping', '9253')
http://allrecipes.com/recipe/10705
('scraping', '10705')
http://allrecipes.com/recipe/24883
('scraping', '24883')
http://allrecipes.com/recipe/24880
('scraping', '24880')
http://allrecipes.com/recipe/24887
('scraping', '24887')
http://allrecipes.com/recipe/24889
('scraping', '24889')
http://allrecipes.com/recipe/15484
('scraping', '15484')
http://allrecipes.com/recipe/27030
('scraping', '27030')
http://allrecipes.com/recipe/45118
('scraping', '45118')
http://allrecipes.com/recipe/69172
('scraping', '69172')
http://allrecipes.com/recipe/69173
('scraping', '69173')
http://allrecipes.com/recipe/55298
('scraping', '55298')
http://allrecipes.com/recipe/44249
('scraping', '44249')
http://allrecipes.com/recipe/22876
('scraping', '22876')
http://allrecipes.com/recipe/37799
('scraping', '37799')
http://allrecipes.com/recipe/37796
('scraping', '37796')
http://allrecipes.com/recipe/37794
('scraping', '37794')
http://allrecipes.com/recipe/24084
('scraping', '24084')
http://allrecipes.com/recipe/26192
('scraping', '26192')
http://allrecipes.com/recipe/98869
('scraping', '98869')
http://allrecipes.com/recipe/38507
('scraping', '38507')
http://allrecipes.com/recipe/98861
('scraping', '98861')
http://allrecipes.com/recipe/90311
('scraping', '90311')
http://allrecipes.com/recipe/90644
('scraping', '90644')
http://allrecipes.com/recipe/70667
('scraping', '70667')
http://allrecipes.com/recipe/90648
('scraping', '90648')
http://allrecipes.com/recipe/71283
('scraping', '71283')
http://allrecipes.com/recipe/71539
('scraping', '71539')
http://allrecipes.com/recipe/14622
('scraping', '14622')
http://allrecipes.com/recipe/14628
('scraping', '14628')
http://allrecipes.com/recipe/14629
('scraping', '14629')
http://allrecipes.com/recipe/71821
('scraping', '71821')
http://allrecipes.com/recipe/58219
('scraping', '58219')
http://allrecipes.com/recipe/13052
('scraping', '13052')
http://allrecipes.com/recipe/13053
('scraping', '13053')
http://allrecipes.com/recipe/13057
('scraping', '13057')
http://allrecipes.com/recipe/71750
('scraping', '71750')
http://allrecipes.com/recipe/71755
('scraping', '71755')
http://allrecipes.com/recipe/89612
('scraping', '89612')
http://allrecipes.com/recipe/71756
('scraping', '71756')
http://allrecipes.com/recipe/79391
('scraping', '79391')
http://allrecipes.com/recipe/24360
('scraping', '24360')
http://allrecipes.com/recipe/17827
('scraping', '17827')
http://allrecipes.com/recipe/17826
('scraping', '17826')
http://allrecipes.com/recipe/17825
('scraping', '17825')
http://allrecipes.com/recipe/62083
('scraping', '62083')
http://allrecipes.com/recipe/17820
('scraping', '17820')
http://allrecipes.com/recipe/20252
('scraping', '20252')
http://allrecipes.com/recipe/20257
('scraping', '20257')
http://allrecipes.com/recipe/44423
('scraping', '44423')
http://allrecipes.com/recipe/67101
('scraping', '67101')
http://allrecipes.com/recipe/23058
('scraping', '23058')
http://allrecipes.com/recipe/23055
('scraping', '23055')
http://allrecipes.com/recipe/47214
('scraping', '47214')
http://allrecipes.com/recipe/23057
('scraping', '23057')
Check point Iter: 100
http://allrecipes.com/recipe/23051
('scraping', '23051')
http://allrecipes.com/recipe/76088
('scraping', '76088')
http://allrecipes.com/recipe/83421
('scraping', '83421')
http://allrecipes.com/recipe/7188
('scraping', '7188')
http://allrecipes.com/recipe/7180
('scraping', '7180')
http://allrecipes.com/recipe/7181
('scraping', '7181')
http://allrecipes.com/recipe/7182
('scraping', '7182')
http://allrecipes.com/recipe/77977
('scraping', '77977')
http://allrecipes.com/recipe/7185
('scraping', '7185')
http://allrecipes.com/recipe/7187
('scraping', '7187')
http://allrecipes.com/recipe/72705
('scraping', '72705')
http://allrecipes.com/recipe/22950
('scraping', '22950')
http://allrecipes.com/recipe/72253
('scraping', '72253')
http://allrecipes.com/recipe/79538
('scraping', '79538')
http://allrecipes.com/recipe/15288
('scraping', '15288')
http://allrecipes.com/recipe/12834
('scraping', '12834')
http://allrecipes.com/recipe/15287
('scraping', '15287')
http://allrecipes.com/recipe/15286
('scraping', '15286')
http://allrecipes.com/recipe/8542
('scraping', '8542')
http://allrecipes.com/recipe/26624
('scraping', '26624')
http://allrecipes.com/recipe/26626
('scraping', '26626')
http://allrecipes.com/recipe/7459
('scraping', '7459')
http://allrecipes.com/recipe/89583
('scraping', '89583')
http://allrecipes.com/recipe/50415
('scraping', '50415')
http://allrecipes.com/recipe/13603
('scraping', '13603')
http://allrecipes.com/recipe/55331
('scraping', '55331')
http://allrecipes.com/recipe/66126
('scraping', '66126')
http://allrecipes.com/recipe/10884
('scraping', '10884')
http://allrecipes.com/recipe/22678
('scraping', '22678')
http://allrecipes.com/recipe/22679
('scraping', '22679')
http://allrecipes.com/recipe/88391
('scraping', '88391')
http://allrecipes.com/recipe/22675
('scraping', '22675')
http://allrecipes.com/recipe/22672
('scraping', '22672')
http://allrecipes.com/recipe/50673
('scraping', '50673')
http://allrecipes.com/recipe/15557
('scraping', '15557')
http://allrecipes.com/recipe/69410
('scraping', '69410')
http://allrecipes.com/recipe/77762
('scraping', '77762')
http://allrecipes.com/recipe/24702
('scraping', '24702')
http://allrecipes.com/recipe/77752
('scraping', '77752')
http://allrecipes.com/recipe/86229
('scraping', '86229')
http://allrecipes.com/recipe/13618
('scraping', '13618')
http://allrecipes.com/recipe/13619
('scraping', '13619')
http://allrecipes.com/recipe/13615
('scraping', '13615')
http://allrecipes.com/recipe/81506
('scraping', '81506')
http://allrecipes.com/recipe/13612
('scraping', '13612')
http://allrecipes.com/recipe/11289
('scraping', '11289')
http://allrecipes.com/recipe/19705
('scraping', '19705')
http://allrecipes.com/recipe/93681
('scraping', '93681')
http://allrecipes.com/recipe/93680
('scraping', '93680')
http://allrecipes.com/recipe/93687
('scraping', '93687')
http://allrecipes.com/recipe/19701
('scraping', '19701')
http://allrecipes.com/recipe/16062
('scraping', '16062')
http://allrecipes.com/recipe/93689
('scraping', '93689')
http://allrecipes.com/recipe/11282
('scraping', '11282')
http://allrecipes.com/recipe/19708
('scraping', '19708')
http://allrecipes.com/recipe/11287
('scraping', '11287')
http://allrecipes.com/recipe/17620
('scraping', '17620')
http://allrecipes.com/recipe/17623
('scraping', '17623')
http://allrecipes.com/recipe/17624
('scraping', '17624')
http://allrecipes.com/recipe/75289
('scraping', '75289')
http://allrecipes.com/recipe/13532
('scraping', '13532')
http://allrecipes.com/recipe/13538
('scraping', '13538')
http://allrecipes.com/recipe/11757
('scraping', '11757')
http://allrecipes.com/recipe/11756
('scraping', '11756')
http://allrecipes.com/recipe/90818
('scraping', '90818')
http://allrecipes.com/recipe/11753
('scraping', '11753')
http://allrecipes.com/recipe/11751
('scraping', '11751')
http://allrecipes.com/recipe/90812
('scraping', '90812')
http://allrecipes.com/recipe/90811
('scraping', '90811')
http://allrecipes.com/recipe/90817
('scraping', '90817')
http://allrecipes.com/recipe/51106
('scraping', '51106')
http://allrecipes.com/recipe/16390
('scraping', '16390')
http://allrecipes.com/recipe/16391
('scraping', '16391')
http://allrecipes.com/recipe/16396
('scraping', '16396')
http://allrecipes.com/recipe/16397
('scraping', '16397')
http://allrecipes.com/recipe/51101
('scraping', '51101')
http://allrecipes.com/recipe/19568
('scraping', '19568')
http://allrecipes.com/recipe/63904
('scraping', '63904')
http://allrecipes.com/recipe/63903
('scraping', '63903')
http://allrecipes.com/recipe/63902
('scraping', '63902')
http://allrecipes.com/recipe/93356
('scraping', '93356')
http://allrecipes.com/recipe/20887
('scraping', '20887')
http://allrecipes.com/recipe/20886
('scraping', '20886')
http://allrecipes.com/recipe/20732
('scraping', '20732')
http://allrecipes.com/recipe/20883
('scraping', '20883')
http://allrecipes.com/recipe/20734
('scraping', '20734')
http://allrecipes.com/recipe/20881
('scraping', '20881')
http://allrecipes.com/recipe/20880
('scraping', '20880')
http://allrecipes.com/recipe/20888
('scraping', '20888')
http://allrecipes.com/recipe/25549
('scraping', '25549')
http://allrecipes.com/recipe/13281
('scraping', '13281')
http://allrecipes.com/recipe/13280
('scraping', '13280')
http://allrecipes.com/recipe/85425
('scraping', '85425')
http://allrecipes.com/recipe/74223
('scraping', '74223')
http://allrecipes.com/recipe/72852
('scraping', '72852')
http://allrecipes.com/recipe/42483
('scraping', '42483')
http://allrecipes.com/recipe/49173
('scraping', '49173')
http://allrecipes.com/recipe/21286
('scraping', '21286')
http://allrecipes.com/recipe/42337
('scraping', '42337')
http://allrecipes.com/recipe/14164
('scraping', '14164')
Check point Iter: 200
http://allrecipes.com/recipe/42333
('scraping', '42333')
http://allrecipes.com/recipe/45652
('scraping', '45652')
http://allrecipes.com/recipe/45657
('scraping', '45657')
http://allrecipes.com/recipe/87377
('scraping', '87377')
http://allrecipes.com/recipe/20088
('scraping', '20088')
http://allrecipes.com/recipe/20087
('scraping', '20087')
http://allrecipes.com/recipe/41357
('scraping', '41357')
http://allrecipes.com/recipe/48226
('scraping', '48226')
http://allrecipes.com/recipe/41352
('scraping', '41352')
http://allrecipes.com/recipe/10390
('scraping', '10390')
http://allrecipes.com/recipe/17883
('scraping', '17883')
http://allrecipes.com/recipe/16935
('scraping', '16935')
http://allrecipes.com/recipe/7216
('scraping', '7216')
http://allrecipes.com/recipe/7217
('scraping', '7217')
http://allrecipes.com/recipe/54410
('scraping', '54410')
http://allrecipes.com/recipe/15708
('scraping', '15708')
http://allrecipes.com/recipe/15709
('scraping', '15709')
http://allrecipes.com/recipe/15702
('scraping', '15702')
http://allrecipes.com/recipe/15704
('scraping', '15704')
http://allrecipes.com/recipe/15873
('scraping', '15873')
http://allrecipes.com/recipe/15706
('scraping', '15706')
http://allrecipes.com/recipe/40880
('scraping', '40880')
http://allrecipes.com/recipe/40883
('scraping', '40883')
http://allrecipes.com/recipe/10578
('scraping', '10578')
http://allrecipes.com/recipe/9752
('scraping', '9752')
http://allrecipes.com/recipe/40887
('scraping', '40887')
http://allrecipes.com/recipe/40888
('scraping', '40888')
http://allrecipes.com/recipe/57882
('scraping', '57882')
http://allrecipes.com/recipe/18934
('scraping', '18934')
http://allrecipes.com/recipe/21427
('scraping', '21427')
http://allrecipes.com/recipe/18930
('scraping', '18930')
http://allrecipes.com/recipe/24143
('scraping', '24143')
http://allrecipes.com/recipe/18932
('scraping', '18932')
http://allrecipes.com/recipe/17387
('scraping', '17387')
http://allrecipes.com/recipe/8845
('scraping', '8845')
http://allrecipes.com/recipe/8846
('scraping', '8846')
http://allrecipes.com/recipe/59951
('scraping', '59951')
http://allrecipes.com/recipe/11848
('scraping', '11848')
http://allrecipes.com/recipe/7669
('scraping', '7669')
http://allrecipes.com/recipe/37076
('scraping', '37076')
http://allrecipes.com/recipe/65730
('scraping', '65730')
http://allrecipes.com/recipe/18825
('scraping', '18825')
http://allrecipes.com/recipe/13175
('scraping', '13175')
http://allrecipes.com/recipe/11332
('scraping', '11332')
http://allrecipes.com/recipe/84488
('scraping', '84488')
http://allrecipes.com/recipe/68618
('scraping', '68618')
http://allrecipes.com/recipe/8479
('scraping', '8479')
http://allrecipes.com/recipe/84480
('scraping', '84480')
http://allrecipes.com/recipe/40224
('scraping', '40224')
http://allrecipes.com/recipe/40221
('scraping', '40221')
http://allrecipes.com/recipe/40223
('scraping', '40223')
http://allrecipes.com/recipe/40222
('scraping', '40222')
http://allrecipes.com/recipe/83135
('scraping', '83135')
http://allrecipes.com/recipe/83137
('scraping', '83137')
http://allrecipes.com/recipe/83133
('scraping', '83133')
http://allrecipes.com/recipe/24551
('scraping', '24551')
http://allrecipes.com/recipe/24553
('scraping', '24553')
http://allrecipes.com/recipe/24552
('scraping', '24552')
http://allrecipes.com/recipe/24557
('scraping', '24557')
http://allrecipes.com/recipe/14343
('scraping', '14343')
http://allrecipes.com/recipe/18315
('scraping', '18315')
http://allrecipes.com/recipe/14479
('scraping', '14479')
http://allrecipes.com/recipe/26395
('scraping', '26395')
http://allrecipes.com/recipe/47681
('scraping', '47681')
http://allrecipes.com/recipe/14471
('scraping', '14471')
http://allrecipes.com/recipe/11113
('scraping', '11113')
http://allrecipes.com/recipe/58537
('scraping', '58537')
http://allrecipes.com/recipe/14477
('scraping', '14477')
http://allrecipes.com/recipe/11116
('scraping', '11116')
http://allrecipes.com/recipe/51116
('scraping', '51116')
http://allrecipes.com/recipe/8715
('scraping', '8715')
http://allrecipes.com/recipe/94957
('scraping', '94957')
http://allrecipes.com/recipe/13844
('scraping', '13844')
http://allrecipes.com/recipe/13847
('scraping', '13847')
http://allrecipes.com/recipe/73662
('scraping', '73662')
http://allrecipes.com/recipe/16386
('scraping', '16386')
http://allrecipes.com/recipe/64678
('scraping', '64678')
http://allrecipes.com/recipe/91715
('scraping', '91715')
http://allrecipes.com/recipe/35210
('scraping', '35210')
http://allrecipes.com/recipe/10709
('scraping', '10709')
http://allrecipes.com/recipe/11568
('scraping', '11568')
http://allrecipes.com/recipe/23262
('scraping', '23262')
http://allrecipes.com/recipe/60708
('scraping', '60708')
http://allrecipes.com/recipe/23261
('scraping', '23261')
http://allrecipes.com/recipe/89396
('scraping', '89396')
http://allrecipes.com/recipe/11565
('scraping', '11565')
http://allrecipes.com/recipe/23268
('scraping', '23268')
http://allrecipes.com/recipe/11567
('scraping', '11567')
http://allrecipes.com/recipe/87901
('scraping', '87901')
http://allrecipes.com/recipe/58892
('scraping', '58892')
http://allrecipes.com/recipe/9524
('scraping', '9524')
http://allrecipes.com/recipe/22245
('scraping', '22245')
http://allrecipes.com/recipe/25738
('scraping', '25738')
http://allrecipes.com/recipe/25739
('scraping', '25739')
http://allrecipes.com/recipe/19856
('scraping', '19856')
http://allrecipes.com/recipe/25734
('scraping', '25734')
http://allrecipes.com/recipe/25043
('scraping', '25043')
http://allrecipes.com/recipe/25046
('scraping', '25046')
http://allrecipes.com/recipe/25731
('scraping', '25731')
http://allrecipes.com/recipe/6778
('scraping', '6778')
Check point Iter: 300
http://allrecipes.com/recipe/6772
('scraping', '6772')
http://allrecipes.com/recipe/9964
('scraping', '9964')
http://allrecipes.com/recipe/9966
('scraping', '9966')
http://allrecipes.com/recipe/39012
('scraping', '39012')
http://allrecipes.com/recipe/73910
('scraping', '73910')
http://allrecipes.com/recipe/56109
('scraping', '56109')
http://allrecipes.com/recipe/64058
('scraping', '64058')
http://allrecipes.com/recipe/9968
('scraping', '9968')
http://allrecipes.com/recipe/56100
('scraping', '56100')
http://allrecipes.com/recipe/87047
('scraping', '87047')
http://allrecipes.com/recipe/16233
('scraping', '16233')
http://allrecipes.com/recipe/51825
('scraping', '51825')
http://allrecipes.com/recipe/16237
('scraping', '16237')
http://allrecipes.com/recipe/19916
('scraping', '19916')
http://allrecipes.com/recipe/12039
('scraping', '12039')
http://allrecipes.com/recipe/12038
('scraping', '12038')
http://allrecipes.com/recipe/12031
('scraping', '12031')
http://allrecipes.com/recipe/12036
('scraping', '12036')
http://allrecipes.com/recipe/69995
('scraping', '69995')
http://allrecipes.com/recipe/64616
('scraping', '64616')
http://allrecipes.com/recipe/64614
('scraping', '64614')
http://allrecipes.com/recipe/69999
('scraping', '69999')
http://allrecipes.com/recipe/63042
('scraping', '63042')
http://allrecipes.com/recipe/63040
('scraping', '63040')
http://allrecipes.com/recipe/9509
('scraping', '9509')
http://allrecipes.com/recipe/9503
('scraping', '9503')
http://allrecipes.com/recipe/18054
('scraping', '18054')
http://allrecipes.com/recipe/9505
('scraping', '9505')
http://allrecipes.com/recipe/49099
('scraping', '49099')
http://allrecipes.com/recipe/21639
('scraping', '21639')
http://allrecipes.com/recipe/21638
('scraping', '21638')
http://allrecipes.com/recipe/21631
('scraping', '21631')
http://allrecipes.com/recipe/21637
('scraping', '21637')
http://allrecipes.com/recipe/21635
('scraping', '21635')
http://allrecipes.com/recipe/45461
('scraping', '45461')
http://allrecipes.com/recipe/26049
('scraping', '26049')
http://allrecipes.com/recipe/64929
('scraping', '64929')
http://allrecipes.com/recipe/90488
('scraping', '90488')
http://allrecipes.com/recipe/85679
('scraping', '85679')
http://allrecipes.com/recipe/85678
('scraping', '85678')
http://allrecipes.com/recipe/42814
('scraping', '42814')
http://allrecipes.com/recipe/74686
('scraping', '74686')
http://allrecipes.com/recipe/85671
('scraping', '85671')
http://allrecipes.com/recipe/85670
('scraping', '85670')
http://allrecipes.com/recipe/85673
('scraping', '85673')
http://allrecipes.com/recipe/85677
('scraping', '85677')
http://allrecipes.com/recipe/22810
('scraping', '22810')
http://allrecipes.com/recipe/22815
('scraping', '22815')
http://allrecipes.com/recipe/26023
('scraping', '26023')
http://allrecipes.com/recipe/60469
('scraping', '60469')
http://allrecipes.com/recipe/21293
('scraping', '21293')
http://allrecipes.com/recipe/94172
('scraping', '94172')
http://allrecipes.com/recipe/10761
('scraping', '10761')
http://allrecipes.com/recipe/10765
('scraping', '10765')
http://allrecipes.com/recipe/10767
('scraping', '10767')
http://allrecipes.com/recipe/90664
('scraping', '90664')
http://allrecipes.com/recipe/90665
('scraping', '90665')
http://allrecipes.com/recipe/36829
('scraping', '36829')
http://allrecipes.com/recipe/21147
('scraping', '21147')
http://allrecipes.com/recipe/90662
('scraping', '90662')
http://allrecipes.com/recipe/14866
('scraping', '14866')
http://allrecipes.com/recipe/14641
('scraping', '14641')
http://allrecipes.com/recipe/58233
('scraping', '58233')
http://allrecipes.com/recipe/14860
('scraping', '14860')
http://allrecipes.com/recipe/14648
('scraping', '14648')
http://allrecipes.com/recipe/18898
('scraping', '18898')
http://allrecipes.com/recipe/78396
('scraping', '78396')
http://allrecipes.com/recipe/71516
('scraping', '71516')
http://allrecipes.com/recipe/38624
('scraping', '38624')
http://allrecipes.com/recipe/13072
('scraping', '13072')
http://allrecipes.com/recipe/13077
('scraping', '13077')
http://allrecipes.com/recipe/13078
('scraping', '13078')
http://allrecipes.com/recipe/83459
('scraping', '83459')
http://allrecipes.com/recipe/44228
('scraping', '44228')
http://allrecipes.com/recipe/83456
('scraping', '83456')
http://allrecipes.com/recipe/18091
('scraping', '18091')
http://allrecipes.com/recipe/89940
('scraping', '89940')
http://allrecipes.com/recipe/89946
('scraping', '89946')
http://allrecipes.com/recipe/89944
('scraping', '89944')
http://allrecipes.com/recipe/72896
('scraping', '72896')
http://allrecipes.com/recipe/26451
('scraping', '26451')
http://allrecipes.com/recipe/91043
('scraping', '91043')
http://allrecipes.com/recipe/10187
('scraping', '10187')
http://allrecipes.com/recipe/10182
('scraping', '10182')
http://allrecipes.com/recipe/10189
('scraping', '10189')
http://allrecipes.com/recipe/10188
('scraping', '10188')
http://allrecipes.com/recipe/40941
('scraping', '40941')
http://allrecipes.com/recipe/72095
('scraping', '72095')
http://allrecipes.com/recipe/72093
('scraping', '72093')
http://allrecipes.com/recipe/68804
('scraping', '68804')
http://allrecipes.com/recipe/47237
('scraping', '47237')
http://allrecipes.com/recipe/23075
('scraping', '23075')
http://allrecipes.com/recipe/47234
('scraping', '47234')
http://allrecipes.com/recipe/24268
('scraping', '24268')
http://allrecipes.com/recipe/15119
('scraping', '15119')
http://allrecipes.com/recipe/15118
('scraping', '15118')
http://allrecipes.com/recipe/15115
('scraping', '15115')
http://allrecipes.com/recipe/15114
('scraping', '15114')
http://allrecipes.com/recipe/15116
('scraping', '15116')
http://allrecipes.com/recipe/15111
('scraping', '15111')
Check point Iter: 400
http://allrecipes.com/recipe/15112
('scraping', '15112')
http://allrecipes.com/recipe/77911
('scraping', '77911')
http://allrecipes.com/recipe/25899
('scraping', '25899')
http://allrecipes.com/recipe/25897
('scraping', '25897')
http://allrecipes.com/recipe/78132
('scraping', '78132')
http://allrecipes.com/recipe/78131
('scraping', '78131')
http://allrecipes.com/recipe/31742
('scraping', '31742')
http://allrecipes.com/recipe/78138
('scraping', '78138')
http://allrecipes.com/recipe/8034
('scraping', '8034')
http://allrecipes.com/recipe/8037
('scraping', '8037')
http://allrecipes.com/recipe/24260
('scraping', '24260')
http://allrecipes.com/recipe/72277
('scraping', '72277')
http://allrecipes.com/recipe/8033
('scraping', '8033')
http://allrecipes.com/recipe/63351
('scraping', '63351')
http://allrecipes.com/recipe/8039
('scraping', '8039')
http://allrecipes.com/recipe/67785
('scraping', '67785')
http://allrecipes.com/recipe/12588
('scraping', '12588')
http://allrecipes.com/recipe/12583
('scraping', '12583')
http://allrecipes.com/recipe/12853
('scraping', '12853')
http://allrecipes.com/recipe/8527
('scraping', '8527')
http://allrecipes.com/recipe/12585
('scraping', '12585')
http://allrecipes.com/recipe/12856
('scraping', '12856')
http://allrecipes.com/recipe/35913
('scraping', '35913')
http://allrecipes.com/recipe/26606
('scraping', '26606')
http://allrecipes.com/recipe/26604
('scraping', '26604')
http://allrecipes.com/recipe/44919
('scraping', '44919')
http://allrecipes.com/recipe/26608
('scraping', '26608')
http://allrecipes.com/recipe/37791
('scraping', '37791')
http://allrecipes.com/recipe/43486
('scraping', '43486')
http://allrecipes.com/recipe/22656
('scraping', '22656')
http://allrecipes.com/recipe/22652
('scraping', '22652')
http://allrecipes.com/recipe/88727
('scraping', '88727')
http://allrecipes.com/recipe/65066
('scraping', '65066')
http://allrecipes.com/recipe/26546
('scraping', '26546')
http://allrecipes.com/recipe/22382
('scraping', '22382')
http://allrecipes.com/recipe/22386
('scraping', '22386')
http://allrecipes.com/recipe/13984
('scraping', '13984')
http://allrecipes.com/recipe/13985
('scraping', '13985')
http://allrecipes.com/recipe/13987
('scraping', '13987')
http://allrecipes.com/recipe/13982
('scraping', '13982')
http://allrecipes.com/recipe/13983
('scraping', '13983')
http://allrecipes.com/recipe/23381
('scraping', '23381')
http://allrecipes.com/recipe/23380
('scraping', '23380')
http://allrecipes.com/recipe/23386
('scraping', '23386')
http://allrecipes.com/recipe/24763
('scraping', '24763')
http://allrecipes.com/recipe/24761
('scraping', '24761')
http://allrecipes.com/recipe/24766
('scraping', '24766')
http://allrecipes.com/recipe/24767
('scraping', '24767')
http://allrecipes.com/recipe/24764
('scraping', '24764')
http://allrecipes.com/recipe/19574
('scraping', '19574')
http://allrecipes.com/recipe/81565
('scraping', '81565')
http://allrecipes.com/recipe/7994
('scraping', '7994')
http://allrecipes.com/recipe/88317
('scraping', '88317')
http://allrecipes.com/recipe/13672
('scraping', '13672')
http://allrecipes.com/recipe/13671
('scraping', '13671')
http://allrecipes.com/recipe/19763
('scraping', '19763')
http://allrecipes.com/recipe/32240
('scraping', '32240')
http://allrecipes.com/recipe/19765
('scraping', '19765')
http://allrecipes.com/recipe/98129
('scraping', '98129')
http://allrecipes.com/recipe/94362
('scraping', '94362')
http://allrecipes.com/recipe/17607
('scraping', '17607')
http://allrecipes.com/recipe/98430
('scraping', '98430')
http://allrecipes.com/recipe/17357
('scraping', '17357')
http://allrecipes.com/recipe/17603
('scraping', '17603')
http://allrecipes.com/recipe/17352
('scraping', '17352')
http://allrecipes.com/recipe/74689
('scraping', '74689')
http://allrecipes.com/recipe/90872
('scraping', '90872')
http://allrecipes.com/recipe/13516
('scraping', '13516')
http://allrecipes.com/recipe/23926
('scraping', '23926')
http://allrecipes.com/recipe/23921
('scraping', '23921')
http://allrecipes.com/recipe/12421
('scraping', '12421')
http://allrecipes.com/recipe/8681
('scraping', '8681')
http://allrecipes.com/recipe/51128
('scraping', '51128')
http://allrecipes.com/recipe/19589
('scraping', '19589')
http://allrecipes.com/recipe/19584
('scraping', '19584')
http://allrecipes.com/recipe/19583
('scraping', '19583')
http://allrecipes.com/recipe/19581
('scraping', '19581')
http://allrecipes.com/recipe/69030
('scraping', '69030')
http://allrecipes.com/recipe/20716
('scraping', '20716')
http://allrecipes.com/recipe/20714
('scraping', '20714')
http://allrecipes.com/recipe/20860
('scraping', '20860')
http://allrecipes.com/recipe/48830
('scraping', '48830')
http://allrecipes.com/recipe/25567
('scraping', '25567')
http://allrecipes.com/recipe/25564
('scraping', '25564')
http://allrecipes.com/recipe/60072
('scraping', '60072')
http://allrecipes.com/recipe/14620
('scraping', '14620')
http://allrecipes.com/recipe/60070
('scraping', '60070')
http://allrecipes.com/recipe/8136
('scraping', '8136')
http://allrecipes.com/recipe/8689
('scraping', '8689')
http://allrecipes.com/recipe/85444
('scraping', '85444')
http://allrecipes.com/recipe/74206
('scraping', '74206')
http://allrecipes.com/recipe/74200
('scraping', '74200')
http://allrecipes.com/recipe/46678
('scraping', '46678')
http://allrecipes.com/recipe/42319
('scraping', '42319')
http://allrecipes.com/recipe/6909
('scraping', '6909')
http://allrecipes.com/recipe/42317
('scraping', '42317')
http://allrecipes.com/recipe/42315
('scraping', '42315')
http://allrecipes.com/recipe/10823
('scraping', '10823')
http://allrecipes.com/recipe/15714
('scraping', '15714')
http://allrecipes.com/recipe/99520
('scraping', '99520')
Check point Iter: 500
http://allrecipes.com/recipe/45633
Unable to Scrape: 45633
http://allrecipes.com/recipe/7236
('scraping', '7236')
http://allrecipes.com/recipe/9190
('scraping', '9190')
http://allrecipes.com/recipe/7234
('scraping', '7234')
http://allrecipes.com/recipe/7232
('scraping', '7232')
http://allrecipes.com/recipe/10378
('scraping', '10378')
http://allrecipes.com/recipe/7231
('scraping', '7231')
http://allrecipes.com/recipe/10374
('scraping', '10374')
http://allrecipes.com/recipe/15862
('scraping', '15862')
http://allrecipes.com/recipe/10373
('scraping', '10373')
http://allrecipes.com/recipe/63789
('scraping', '63789')
http://allrecipes.com/recipe/42176
('scraping', '42176')
http://allrecipes.com/recipe/42172
('scraping', '42172')
http://allrecipes.com/recipe/16912
('scraping', '16912')
http://allrecipes.com/recipe/12204
('scraping', '12204')
http://allrecipes.com/recipe/12207
('scraping', '12207')
http://allrecipes.com/recipe/70369
('scraping', '70369')
http://allrecipes.com/recipe/10519
('scraping', '10519')
http://allrecipes.com/recipe/53560
('scraping', '53560')
http://allrecipes.com/recipe/9771
('scraping', '9771')
http://allrecipes.com/recipe/9773
('scraping', '9773')
http://allrecipes.com/recipe/37362
('scraping', '37362')
http://allrecipes.com/recipe/37363
('scraping', '37363')
http://allrecipes.com/recipe/14983
('scraping', '14983')
http://allrecipes.com/recipe/14984
('scraping', '14984')
http://allrecipes.com/recipe/8861
('scraping', '8861')
http://allrecipes.com/recipe/14989
('scraping', '14989')
http://allrecipes.com/recipe/14988
('scraping', '14988')
http://allrecipes.com/recipe/24166
('scraping', '24166')
http://allrecipes.com/recipe/37369
('scraping', '37369')
http://allrecipes.com/recipe/24160
('scraping', '24160')
http://allrecipes.com/recipe/24162
('scraping', '24162')
http://allrecipes.com/recipe/21403
('scraping', '21403')
http://allrecipes.com/recipe/17292
('scraping', '17292')
http://allrecipes.com/recipe/26838
('scraping', '26838')
http://allrecipes.com/recipe/71986
('scraping', '71986')
http://allrecipes.com/recipe/71988
('scraping', '71988')
http://allrecipes.com/recipe/86407
('scraping', '86407')
http://allrecipes.com/recipe/80831
('scraping', '80831')
http://allrecipes.com/recipe/14188
('scraping', '14188')
http://allrecipes.com/recipe/37188
('scraping', '37188')
http://allrecipes.com/recipe/37189
('scraping', '37189')
http://allrecipes.com/recipe/14182
('scraping', '14182')
http://allrecipes.com/recipe/41152
('scraping', '41152')
http://allrecipes.com/recipe/15850
('scraping', '15850')
http://allrecipes.com/recipe/72797
('scraping', '72797')
http://allrecipes.com/recipe/40203
('scraping', '40203')
http://allrecipes.com/recipe/40201
('scraping', '40201')
http://allrecipes.com/recipe/24159
('scraping', '24159')
http://allrecipes.com/recipe/14325
('scraping', '14325')
http://allrecipes.com/recipe/11136
('scraping', '11136')
http://allrecipes.com/recipe/14454
('scraping', '14454')
http://allrecipes.com/recipe/14321
('scraping', '14321')
http://allrecipes.com/recipe/11132
('scraping', '11132')
http://allrecipes.com/recipe/37981
('scraping', '37981')
http://allrecipes.com/recipe/24577
('scraping', '24577')
http://allrecipes.com/recipe/24576
('scraping', '24576')
http://allrecipes.com/recipe/14329
('scraping', '14329')
http://allrecipes.com/recipe/91456
('scraping', '91456')
http://allrecipes.com/recipe/58559
('scraping', '58559')
http://allrecipes.com/recipe/17985
('scraping', '17985')
http://allrecipes.com/recipe/15583
('scraping', '15583')
http://allrecipes.com/recipe/15581
('scraping', '15581')
http://allrecipes.com/recipe/15584
('scraping', '15584')
http://allrecipes.com/recipe/15585
('scraping', '15585')
http://allrecipes.com/recipe/16373
('scraping', '16373')
http://allrecipes.com/recipe/19440
('scraping', '19440')
http://allrecipes.com/recipe/31555
('scraping', '31555')
http://allrecipes.com/recipe/55722
('scraping', '55722')
http://allrecipes.com/recipe/89002
('scraping', '89002')
http://allrecipes.com/recipe/38389
('scraping', '38389')
http://allrecipes.com/recipe/33676
('scraping', '33676')
http://allrecipes.com/recipe/90925
('scraping', '90925')
http://allrecipes.com/recipe/23718
('scraping', '23718')
http://allrecipes.com/recipe/23714
('scraping', '23714')
http://allrecipes.com/recipe/23715
('scraping', '23715')
http://allrecipes.com/recipe/8192
('scraping', '8192')
http://allrecipes.com/recipe/12444
('scraping', '12444')
http://allrecipes.com/recipe/12445
('scraping', '12445')
http://allrecipes.com/recipe/12442
('scraping', '12442')
http://allrecipes.com/recipe/12443
('scraping', '12443')
http://allrecipes.com/recipe/8194
('scraping', '8194')
http://allrecipes.com/recipe/12441
('scraping', '12441')
http://allrecipes.com/recipe/48857
('scraping', '48857')
http://allrecipes.com/recipe/48852
('scraping', '48852')
http://allrecipes.com/recipe/15329
('scraping', '15329')
http://allrecipes.com/recipe/92187
('scraping', '92187')
http://allrecipes.com/recipe/89965
('scraping', '89965')
http://allrecipes.com/recipe/39384
('scraping', '39384')
http://allrecipes.com/recipe/92184
('scraping', '92184')
http://allrecipes.com/recipe/92188
('scraping', '92188')
http://allrecipes.com/recipe/74053
('scraping', '74053')
http://allrecipes.com/recipe/89610
('scraping', '89610')
http://allrecipes.com/recipe/78921
('scraping', '78921')
http://allrecipes.com/recipe/92763
('scraping', '92763')
http://allrecipes.com/recipe/56479
('scraping', '56479')
http://allrecipes.com/recipe/9946
('scraping', '9946')
http://allrecipes.com/recipe/9947
('scraping', '9947')
http://allrecipes.com/recipe/9944
('scraping', '9944')
http://allrecipes.com/recipe/10692
('scraping', '10692')
Check point Iter: 600
http://allrecipes.com/recipe/19244
('scraping', '19244')
http://allrecipes.com/recipe/16215
('scraping', '16215')
http://allrecipes.com/recipe/19243
('scraping', '19243')
http://allrecipes.com/recipe/19242
('scraping', '19242')
http://allrecipes.com/recipe/16749
('scraping', '16749')
http://allrecipes.com/recipe/17828
('scraping', '17828')
http://allrecipes.com/recipe/19939
('scraping', '19939')
http://allrecipes.com/recipe/19938
('scraping', '19938')
http://allrecipes.com/recipe/12056
Unable to Scrape: 12056
http://allrecipes.com/recipe/55877
('scraping', '55877')
http://allrecipes.com/recipe/56787
Unable to Scrape: 56787
http://allrecipes.com/recipe/52785
('scraping', '52785')
http://allrecipes.com/recipe/25716
('scraping', '25716')
http://allrecipes.com/recipe/25710
('scraping', '25710')
http://allrecipes.com/recipe/43781
('scraping', '43781')
http://allrecipes.com/recipe/14687
('scraping', '14687')
http://allrecipes.com/recipe/81172
('scraping', '81172')
http://allrecipes.com/recipe/21650
('scraping', '21650')
http://allrecipes.com/recipe/21653
('scraping', '21653')
http://allrecipes.com/recipe/21654
('scraping', '21654')
http://allrecipes.com/recipe/21656
('scraping', '21656')
http://allrecipes.com/recipe/63060
('scraping', '63060')
http://allrecipes.com/recipe/85385
('scraping', '85385')
http://allrecipes.com/recipe/63065
('scraping', '63065')
http://allrecipes.com/recipe/85387
('scraping', '85387')
http://allrecipes.com/recipe/26061
('scraping', '26061')
http://allrecipes.com/recipe/25214
('scraping', '25214')
http://allrecipes.com/recipe/26069
('scraping', '26069')
http://allrecipes.com/recipe/22838
('scraping', '22838')
http://allrecipes.com/recipe/17164
('scraping', '17164')
http://allrecipes.com/recipe/84389
('scraping', '84389')
http://allrecipes.com/recipe/60449
('scraping', '60449')
http://allrecipes.com/recipe/9561
('scraping', '9561')
http://allrecipes.com/recipe/90608
('scraping', '90608')
http://allrecipes.com/recipe/9564
('scraping', '9564')
http://allrecipes.com/recipe/10748
('scraping', '10748')
http://allrecipes.com/recipe/90602
('scraping', '90602')
http://allrecipes.com/recipe/90604
('scraping', '90604')
http://allrecipes.com/recipe/90605
('scraping', '90605')
http://allrecipes.com/recipe/11839
('scraping', '11839')
http://allrecipes.com/recipe/14660
('scraping', '14660')
http://allrecipes.com/recipe/14663
('scraping', '14663')
http://allrecipes.com/recipe/14664
('scraping', '14664')
http://allrecipes.com/recipe/11833
('scraping', '11833')
http://allrecipes.com/recipe/33093
('scraping', '33093')
http://allrecipes.com/recipe/38602
('scraping', '38602')
http://allrecipes.com/recipe/13098
('scraping', '13098')
http://allrecipes.com/recipe/13093
('scraping', '13093')
http://allrecipes.com/recipe/13090
('scraping', '13090')
http://allrecipes.com/recipe/13091
('scraping', '13091')
http://allrecipes.com/recipe/36110
('scraping', '36110')
http://allrecipes.com/recipe/85129
('scraping', '85129')
http://allrecipes.com/recipe/44752
('scraping', '44752')
http://allrecipes.com/recipe/33540
('scraping', '33540')
http://allrecipes.com/recipe/41521
('scraping', '41521')
http://allrecipes.com/recipe/48075
('scraping', '48075')
http://allrecipes.com/recipe/41523
('scraping', '41523')
http://allrecipes.com/recipe/9385
('scraping', '9385')
http://allrecipes.com/recipe/95646
('scraping', '95646')
http://allrecipes.com/recipe/9381
('scraping', '9381')
http://allrecipes.com/recipe/83387
('scraping', '83387')
http://allrecipes.com/recipe/67146
('scraping', '67146')
http://allrecipes.com/recipe/40929
('scraping', '40929')
http://allrecipes.com/recipe/40921
('scraping', '40921')
http://allrecipes.com/recipe/72079
('scraping', '72079')
http://allrecipes.com/recipe/68860
('scraping', '68860')
http://allrecipes.com/recipe/68866
('scraping', '68866')
http://allrecipes.com/recipe/15139
('scraping', '15139')
http://allrecipes.com/recipe/15133
('scraping', '15133')
http://allrecipes.com/recipe/21402
('scraping', '21402')
http://allrecipes.com/recipe/15136
('scraping', '15136')
http://allrecipes.com/recipe/15135
('scraping', '15135')
http://allrecipes.com/recipe/26993
('scraping', '26993')
http://allrecipes.com/recipe/7148
('scraping', '7148')
http://allrecipes.com/recipe/7149
('scraping', '7149')
http://allrecipes.com/recipe/77939
('scraping', '77939')
http://allrecipes.com/recipe/77937
('scraping', '77937')
http://allrecipes.com/recipe/77935
('scraping', '77935')
http://allrecipes.com/recipe/13774
('scraping', '13774')
http://allrecipes.com/recipe/7142
('scraping', '7142')
http://allrecipes.com/recipe/69260
('scraping', '69260')
http://allrecipes.com/recipe/89692
('scraping', '89692')
http://allrecipes.com/recipe/54940
('scraping', '54940')
http://allrecipes.com/recipe/8053
('scraping', '8053')
http://allrecipes.com/recipe/8051
('scraping', '8051')
http://allrecipes.com/recipe/8050
('scraping', '8050')
http://allrecipes.com/recipe/76228
('scraping', '76228')
http://allrecipes.com/recipe/8055
('scraping', '8055')
http://allrecipes.com/recipe/76225
('scraping', '76225')
http://allrecipes.com/recipe/12878
('scraping', '12878')
http://allrecipes.com/recipe/92510
('scraping', '92510')
http://allrecipes.com/recipe/92513
('scraping', '92513')
http://allrecipes.com/recipe/7499
('scraping', '7499')
http://allrecipes.com/recipe/31497
('scraping', '31497')
http://allrecipes.com/recipe/44975
('scraping', '44975')
http://allrecipes.com/recipe/7494
('scraping', '7494')
http://allrecipes.com/recipe/26666
('scraping', '26666')
http://allrecipes.com/recipe/23011
('scraping', '23011')
http://allrecipes.com/recipe/23013
('scraping', '23013')
http://allrecipes.com/recipe/24299
('scraping', '24299')
Check point Iter: 700
http://allrecipes.com/recipe/47254
('scraping', '47254')
http://allrecipes.com/recipe/24295
('scraping', '24295')
http://allrecipes.com/recipe/22636
('scraping', '22636')
http://allrecipes.com/recipe/22634
('scraping', '22634')
http://allrecipes.com/recipe/22635
('scraping', '22635')
http://allrecipes.com/recipe/22638
('scraping', '22638')
http://allrecipes.com/recipe/61015
('scraping', '61015')
http://allrecipes.com/recipe/14058
('scraping', '14058')
http://allrecipes.com/recipe/74911
('scraping', '74911')
http://allrecipes.com/recipe/77069
('scraping', '77069')
http://allrecipes.com/recipe/35640
('scraping', '35640')
http://allrecipes.com/recipe/35646
('scraping', '35646')
http://allrecipes.com/recipe/13657
('scraping', '13657')
http://allrecipes.com/recipe/26290
('scraping', '26290')
http://allrecipes.com/recipe/81542
('scraping', '81542')
http://allrecipes.com/recipe/8764
('scraping', '8764')
http://allrecipes.com/recipe/24870
('scraping', '24870')
http://allrecipes.com/recipe/11243
('scraping', '11243')
http://allrecipes.com/recipe/19039
('scraping', '19039')
http://allrecipes.com/recipe/16021
('scraping', '16021')
http://allrecipes.com/recipe/16024
('scraping', '16024')
http://allrecipes.com/recipe/56648
('scraping', '56648')
http://allrecipes.com/recipe/52363
('scraping', '52363')
http://allrecipes.com/recipe/17372
('scraping', '17372')
http://allrecipes.com/recipe/76155
('scraping', '76155')
http://allrecipes.com/recipe/17377
('scraping', '17377')
http://allrecipes.com/recipe/17376
('scraping', '17376')
http://allrecipes.com/recipe/17375
('scraping', '17375')
http://allrecipes.com/recipe/25368
('scraping', '25368')
http://allrecipes.com/recipe/90858
('scraping', '90858')
http://allrecipes.com/recipe/90856
('scraping', '90856')
http://allrecipes.com/recipe/90855
('scraping', '90855')
http://allrecipes.com/recipe/90854
('scraping', '90854')
http://allrecipes.com/recipe/90852
('scraping', '90852')
http://allrecipes.com/recipe/23903
('scraping', '23903')
http://allrecipes.com/recipe/23901
('scraping', '23901')
http://allrecipes.com/recipe/7184
('scraping', '7184')
http://allrecipes.com/recipe/23909
('scraping', '23909')
http://allrecipes.com/recipe/11797
('scraping', '11797')
http://allrecipes.com/recipe/11795
('scraping', '11795')
http://allrecipes.com/recipe/53648
('scraping', '53648')
http://allrecipes.com/recipe/27212
('scraping', '27212')
http://allrecipes.com/recipe/27211
('scraping', '27211')
http://allrecipes.com/recipe/74298
('scraping', '74298')
http://allrecipes.com/recipe/79713
('scraping', '79713')
http://allrecipes.com/recipe/51147
('scraping', '51147')
http://allrecipes.com/recipe/82368
('scraping', '82368')
http://allrecipes.com/recipe/20848
('scraping', '20848')
http://allrecipes.com/recipe/20843
('scraping', '20843')
http://allrecipes.com/recipe/20842
('scraping', '20842')
http://allrecipes.com/recipe/25508
('scraping', '25508')
http://allrecipes.com/recipe/36344
('scraping', '36344')
http://allrecipes.com/recipe/36342
('scraping', '36342')
http://allrecipes.com/recipe/42371
('scraping', '42371')
http://allrecipes.com/recipe/42373
('scraping', '42373')
http://allrecipes.com/recipe/42372
('scraping', '42372')
http://allrecipes.com/recipe/16688
('scraping', '16688')
http://allrecipes.com/recipe/72701
('scraping', '72701')
http://allrecipes.com/recipe/42376
('scraping', '42376')
http://allrecipes.com/recipe/16684
('scraping', '16684')
http://allrecipes.com/recipe/74260
('scraping', '74260')
http://allrecipes.com/recipe/75794
('scraping', '75794')
http://allrecipes.com/recipe/75798
('scraping', '75798')
http://allrecipes.com/recipe/10350
('scraping', '10350')
http://allrecipes.com/recipe/70568
('scraping', '70568')
http://allrecipes.com/recipe/7962
('scraping', '7962')
http://allrecipes.com/recipe/33155
('scraping', '33155')
http://allrecipes.com/recipe/10688
('scraping', '10688')
http://allrecipes.com/recipe/10689
('scraping', '10689')
http://allrecipes.com/recipe/7966
('scraping', '7966')
http://allrecipes.com/recipe/7967
('scraping', '7967')
http://allrecipes.com/recipe/7964
('scraping', '7964')
http://allrecipes.com/recipe/9178
('scraping', '9178')
http://allrecipes.com/recipe/9173
('scraping', '9173')
http://allrecipes.com/recipe/10684
('scraping', '10684')
http://allrecipes.com/recipe/16978
('scraping', '16978')
http://allrecipes.com/recipe/16977
('scraping', '16977')
http://allrecipes.com/recipe/16974
('scraping', '16974')
http://allrecipes.com/recipe/16975
('scraping', '16975')
http://allrecipes.com/recipe/17080
('scraping', '17080')
http://allrecipes.com/recipe/17083
('scraping', '17083')
http://allrecipes.com/recipe/17082
('scraping', '17082')
http://allrecipes.com/recipe/17085
('scraping', '17085')
http://allrecipes.com/recipe/33153
('scraping', '33153')
http://allrecipes.com/recipe/15289
('scraping', '15289')
http://allrecipes.com/recipe/12261
('scraping', '12261')
http://allrecipes.com/recipe/12266
('scraping', '12266')
http://allrecipes.com/recipe/52148
('scraping', '52148')
http://allrecipes.com/recipe/10530
('scraping', '10530')
http://allrecipes.com/recipe/10536
('scraping', '10536')
http://allrecipes.com/recipe/83077
('scraping', '83077')
http://allrecipes.com/recipe/9718
('scraping', '9718')
http://allrecipes.com/recipe/15284
('scraping', '15284')
http://allrecipes.com/recipe/9713
('scraping', '9713')
http://allrecipes.com/recipe/58480
('scraping', '58480')
http://allrecipes.com/recipe/18993
('scraping', '18993')
http://allrecipes.com/recipe/22995
('scraping', '22995')
http://allrecipes.com/recipe/22993
('scraping', '22993')
http://allrecipes.com/recipe/8889
('scraping', '8889')
http://allrecipes.com/recipe/22991
('scraping', '22991')
Check point Iter: 800
http://allrecipes.com/recipe/22990
('scraping', '22990')
http://allrecipes.com/recipe/8885
('scraping', '8885')
http://allrecipes.com/recipe/18972
('scraping', '18972')
http://allrecipes.com/recipe/8882
('scraping', '8882')
http://allrecipes.com/recipe/18977
('scraping', '18977')
http://allrecipes.com/recipe/41312
('scraping', '41312')
http://allrecipes.com/recipe/45616
('scraping', '45616')
http://allrecipes.com/recipe/84738
('scraping', '84738')
http://allrecipes.com/recipe/45613
('scraping', '45613')
http://allrecipes.com/recipe/41317
('scraping', '41317')
http://allrecipes.com/recipe/41318
('scraping', '41318')
http://allrecipes.com/recipe/15282
('scraping', '15282')
http://allrecipes.com/recipe/84737
('scraping', '84737')
http://allrecipes.com/recipe/84734
('scraping', '84734')
http://allrecipes.com/recipe/17321
('scraping', '17321')
http://allrecipes.com/recipe/68301
('scraping', '68301')
http://allrecipes.com/recipe/13137
('scraping', '13137')
http://allrecipes.com/recipe/13136
('scraping', '13136')
http://allrecipes.com/recipe/13131
('scraping', '13131')
http://allrecipes.com/recipe/15837
('scraping', '15837')
http://allrecipes.com/recipe/13133
('scraping', '13133')
http://allrecipes.com/recipe/13132
('scraping', '13132')
http://allrecipes.com/recipe/15838
('scraping', '15838')
http://allrecipes.com/recipe/15839
('scraping', '15839')
http://allrecipes.com/recipe/13138
('scraping', '13138')
http://allrecipes.com/recipe/14303
('scraping', '14303')
http://allrecipes.com/recipe/14302
('scraping', '14302')
http://allrecipes.com/recipe/14301
('scraping', '14301')
http://allrecipes.com/recipe/14300
('scraping', '14300')
http://allrecipes.com/recipe/14307
('scraping', '14307')
http://allrecipes.com/recipe/14306
('scraping', '14306')
http://allrecipes.com/recipe/58579
('scraping', '58579')
http://allrecipes.com/recipe/18357
('scraping', '18357')
http://allrecipes.com/recipe/20335
('scraping', '20335')
http://allrecipes.com/recipe/45963
('scraping', '45963')
http://allrecipes.com/recipe/17969
('scraping', '17969')
http://allrecipes.com/recipe/17962
('scraping', '17962')
http://allrecipes.com/recipe/72389
('scraping', '72389')
http://allrecipes.com/recipe/38012
('scraping', '38012')
http://allrecipes.com/recipe/57544
('scraping', '57544')
http://allrecipes.com/recipe/10672
('scraping', '10672')
http://allrecipes.com/recipe/10223
('scraping', '10223')
http://allrecipes.com/recipe/89026
('scraping', '89026')
http://allrecipes.com/recipe/9105
('scraping', '9105')
http://allrecipes.com/recipe/11157
('scraping', '11157')
http://allrecipes.com/recipe/21517
('scraping', '21517')
http://allrecipes.com/recipe/9102
('scraping', '9102')
http://allrecipes.com/recipe/89028
('scraping', '89028')
http://allrecipes.com/recipe/6801
('scraping', '6801')
http://allrecipes.com/recipe/23733
('scraping', '23733')
http://allrecipes.com/recipe/66068
('scraping', '66068')
http://allrecipes.com/recipe/24038
('scraping', '24038')
http://allrecipes.com/recipe/48873
('scraping', '48873')
http://allrecipes.com/recipe/23227
('scraping', '23227')
http://allrecipes.com/recipe/15306
('scraping', '15306')
http://allrecipes.com/recipe/15300
('scraping', '15300')
http://allrecipes.com/recipe/15301
('scraping', '15301')
http://allrecipes.com/recipe/16725
('scraping', '16725')
http://allrecipes.com/recipe/16985
('scraping', '16985')
http://allrecipes.com/recipe/7770
('scraping', '7770')
http://allrecipes.com/recipe/16984
('scraping', '16984')
http://allrecipes.com/recipe/7778
('scraping', '7778')
http://allrecipes.com/recipe/8314
('scraping', '8314')
http://allrecipes.com/recipe/68498
('scraping', '68498')
http://allrecipes.com/recipe/8316
('scraping', '8316')
http://allrecipes.com/recipe/8310
('scraping', '8310')
http://allrecipes.com/recipe/6738
('scraping', '6738')
http://allrecipes.com/recipe/34709
('scraping', '34709')
http://allrecipes.com/recipe/8319
('scraping', '8319')
http://allrecipes.com/recipe/9928
('scraping', '9928')
http://allrecipes.com/recipe/73488
('scraping', '73488')
http://allrecipes.com/recipe/50153
('scraping', '50153')
http://allrecipes.com/recipe/50151
('scraping', '50151')
http://allrecipes.com/recipe/9920
('scraping', '9920')
http://allrecipes.com/recipe/92700
('scraping', '92700')
http://allrecipes.com/recipe/73952
('scraping', '73952')
http://allrecipes.com/recipe/39056
('scraping', '39056')
http://allrecipes.com/recipe/9927
('scraping', '9927')
http://allrecipes.com/recipe/19267
('scraping', '19267')
http://allrecipes.com/recipe/10882
('scraping', '10882')
http://allrecipes.com/recipe/16769
('scraping', '16769')
http://allrecipes.com/recipe/19264
('scraping', '19264')
http://allrecipes.com/recipe/36714
('scraping', '36714')
http://allrecipes.com/recipe/19268
('scraping', '19268')
http://allrecipes.com/recipe/15066
('scraping', '15066')
http://allrecipes.com/recipe/22171
('scraping', '22171')
http://allrecipes.com/recipe/12077
('scraping', '12077')
http://allrecipes.com/recipe/88086
('scraping', '88086')
http://allrecipes.com/recipe/12073
('scraping', '12073')
http://allrecipes.com/recipe/88080
('scraping', '88080')
http://allrecipes.com/recipe/20819
('scraping', '20819')
http://allrecipes.com/recipe/24863
('scraping', '24863')
http://allrecipes.com/recipe/77478
('scraping', '77478')
http://allrecipes.com/recipe/25773
('scraping', '25773')
http://allrecipes.com/recipe/25771
('scraping', '25771')
http://allrecipes.com/recipe/43769
('scraping', '43769')
http://allrecipes.com/recipe/25777
('scraping', '25777')
http://allrecipes.com/recipe/21812
('scraping', '21812')
http://allrecipes.com/recipe/24828
('scraping', '24828')
http://allrecipes.com/recipe/21679
('scraping', '21679')
Check point Iter: 900
http://allrecipes.com/recipe/21677
('scraping', '21677')
http://allrecipes.com/recipe/21675
('scraping', '21675')
http://allrecipes.com/recipe/21670
('scraping', '21670')
http://allrecipes.com/recipe/42098
('scraping', '42098')
http://allrecipes.com/recipe/98087
('scraping', '98087')
http://allrecipes.com/recipe/26088
('scraping', '26088')
http://allrecipes.com/recipe/26080
('scraping', '26080')
http://allrecipes.com/recipe/99970
('scraping', '99970')
http://allrecipes.com/recipe/87979
('scraping', '87979')
http://allrecipes.com/recipe/17418
('scraping', '17418')
http://allrecipes.com/recipe/17419
('scraping', '17419')
http://allrecipes.com/recipe/17144
('scraping', '17144')
http://allrecipes.com/recipe/17414
('scraping', '17414')
http://allrecipes.com/recipe/17140
('scraping', '17140')
http://allrecipes.com/recipe/17413
('scraping', '17413')
http://allrecipes.com/recipe/60429
('scraping', '60429')
http://allrecipes.com/recipe/90621
('scraping', '90621')
http://allrecipes.com/recipe/36756
('scraping', '36756')
http://allrecipes.com/recipe/36751
('scraping', '36751')
http://allrecipes.com/recipe/25191
('scraping', '25191')
http://allrecipes.com/recipe/13305
('scraping', '13305')
http://allrecipes.com/recipe/25199
('scraping', '25199')
http://allrecipes.com/recipe/36289
('scraping', '36289')
http://allrecipes.com/recipe/80283
('scraping', '80283')
http://allrecipes.com/recipe/36283
('scraping', '36283')
http://allrecipes.com/recipe/36281
('scraping', '36281')
http://allrecipes.com/recipe/9543
('scraping', '9543')
http://allrecipes.com/recipe/62352
('scraping', '62352')
http://allrecipes.com/recipe/14821
('scraping', '14821')
http://allrecipes.com/recipe/14825
('scraping', '14825')
http://allrecipes.com/recipe/24358
('scraping', '24358')
http://allrecipes.com/recipe/64210
('scraping', '64210')
http://allrecipes.com/recipe/20105
('scraping', '20105')
http://allrecipes.com/recipe/20103
('scraping', '20103')
http://allrecipes.com/recipe/64219
('scraping', '64219')
http://allrecipes.com/recipe/36133
('scraping', '36133')
http://allrecipes.com/recipe/85107
('scraping', '85107')
http://allrecipes.com/recipe/66336
('scraping', '66336')
http://allrecipes.com/recipe/41055
('scraping', '41055')
http://allrecipes.com/recipe/41054
('scraping', '41054')
http://allrecipes.com/recipe/41053
('scraping', '41053')
http://allrecipes.com/recipe/41052
('scraping', '41052')
http://allrecipes.com/recipe/41058
('scraping', '41058')
http://allrecipes.com/recipe/41509
('scraping', '41509')
http://allrecipes.com/recipe/99021
('scraping', '99021')
http://allrecipes.com/recipe/48016
('scraping', '48016')
http://allrecipes.com/recipe/70798
('scraping', '70798')
http://allrecipes.com/recipe/40906
('scraping', '40906')
http://allrecipes.com/recipe/29704
('scraping', '29704')
http://allrecipes.com/recipe/18501
('scraping', '18501')
http://allrecipes.com/recipe/25725
('scraping', '25725')
http://allrecipes.com/recipe/11810
('scraping', '11810')
http://allrecipes.com/recipe/18504
('scraping', '18504')
http://allrecipes.com/recipe/18507
('scraping', '18507')
http://allrecipes.com/recipe/11813
('scraping', '11813')
http://allrecipes.com/recipe/71224
('scraping', '71224')
http://allrecipes.com/recipe/71554
('scraping', '71554')
http://allrecipes.com/recipe/11818
('scraping', '11818')
http://allrecipes.com/recipe/29100
('scraping', '29100')
http://allrecipes.com/recipe/15155
('scraping', '15155')
http://allrecipes.com/recipe/15154
('scraping', '15154')
http://allrecipes.com/recipe/15157
('scraping', '15157')
http://allrecipes.com/recipe/15159
('scraping', '15159')
http://allrecipes.com/recipe/72052
('scraping', '72052')
http://allrecipes.com/recipe/76020
('scraping', '76020')
http://allrecipes.com/recipe/59507
('scraping', '59507')
http://allrecipes.com/recipe/7169
('scraping', '7169')
http://allrecipes.com/recipe/7162
('scraping', '7162')
http://allrecipes.com/recipe/7166
('scraping', '7166')
http://allrecipes.com/recipe/7165
('scraping', '7165')
http://allrecipes.com/recipe/78171
('scraping', '78171')
http://allrecipes.com/recipe/89901
('scraping', '89901')
http://allrecipes.com/recipe/89900
('scraping', '89900')
http://allrecipes.com/recipe/76248
('scraping', '76248')
http://allrecipes.com/recipe/12898
('scraping', '12898')
http://allrecipes.com/recipe/88500
('scraping', '88500')
http://allrecipes.com/recipe/34066
('scraping', '34066')
http://allrecipes.com/recipe/76241
('scraping', '76241')
http://allrecipes.com/recipe/76246
('scraping', '76246')
http://allrecipes.com/recipe/88507
('scraping', '88507')
http://allrecipes.com/recipe/26641
('scraping', '26641')
http://allrecipes.com/recipe/68511
('scraping', '68511')
http://allrecipes.com/recipe/68510
('scraping', '68510')
http://allrecipes.com/recipe/28078
('scraping', '28078')
http://allrecipes.com/recipe/23034
('scraping', '23034')
http://allrecipes.com/recipe/23032
('scraping', '23032')
http://allrecipes.com/recipe/23030
('scraping', '23030')
http://allrecipes.com/recipe/22618
('scraping', '22618')
http://allrecipes.com/recipe/6780
('scraping', '6780')
http://allrecipes.com/recipe/22344
('scraping', '22344')
http://allrecipes.com/recipe/22343
('scraping', '22343')
http://allrecipes.com/recipe/22341
('scraping', '22341')
http://allrecipes.com/recipe/26500
('scraping', '26500')
http://allrecipes.com/recipe/77267
('scraping', '77267')
http://allrecipes.com/recipe/15011
('scraping', '15011')
http://allrecipes.com/recipe/56737
('scraping', '56737')
http://allrecipes.com/recipe/15012
('scraping', '15012')
http://allrecipes.com/recipe/15013
('scraping', '15013')
http://allrecipes.com/recipe/11054
('scraping', '11054')
http://allrecipes.com/recipe/72231
('scraping', '72231')
Check point Iter: 1000
http://allrecipes.com/recipe/72230
('scraping', '72230')
http://allrecipes.com/recipe/15542
('scraping', '15542')
http://allrecipes.com/recipe/28615
('scraping', '28615')
http://allrecipes.com/recipe/73543
('scraping', '73543')
http://allrecipes.com/recipe/14175
('scraping', '14175')
http://allrecipes.com/recipe/72193
('scraping', '72193')
http://allrecipes.com/recipe/23692
('scraping', '23692')
http://allrecipes.com/recipe/23690
('scraping', '23690')
http://allrecipes.com/recipe/23696
('scraping', '23696')
http://allrecipes.com/recipe/23695
('scraping', '23695')
http://allrecipes.com/recipe/93157
('scraping', '93157')
http://allrecipes.com/recipe/11261
('scraping', '11261')
http://allrecipes.com/recipe/11267
('scraping', '11267')
http://allrecipes.com/recipe/19019
('scraping', '19019')
http://allrecipes.com/recipe/11265
('scraping', '11265')
http://allrecipes.com/recipe/61073
('scraping', '61073')
http://allrecipes.com/recipe/19707
('scraping', '19707')
http://allrecipes.com/recipe/87701
('scraping', '87701')
http://allrecipes.com/recipe/71664
('scraping', '71664')
http://allrecipes.com/recipe/32220
('scraping', '32220')
http://allrecipes.com/recipe/6965
('scraping', '6965')
http://allrecipes.com/recipe/25349
('scraping', '25349')
http://allrecipes.com/recipe/25342
('scraping', '25342')
http://allrecipes.com/recipe/25341
('scraping', '25341')
http://allrecipes.com/recipe/25345
('scraping', '25345')
http://allrecipes.com/recipe/74793
('scraping', '74793')
http://allrecipes.com/recipe/9676
('scraping', '9676')
http://allrecipes.com/recipe/10109
('scraping', '10109')
http://allrecipes.com/recipe/11286
('scraping', '11286')
http://allrecipes.com/recipe/25526
('scraping', '25526')
http://allrecipes.com/recipe/25522
('scraping', '25522')
http://allrecipes.com/recipe/9673
('scraping', '9673')
http://allrecipes.com/recipe/25528
('scraping', '25528')
http://allrecipes.com/recipe/74247
('scraping', '74247')
http://allrecipes.com/recipe/74248
('scraping', '74248')
http://allrecipes.com/recipe/10458
('scraping', '10458')
http://allrecipes.com/recipe/42359
('scraping', '42359')
http://allrecipes.com/recipe/42358
('scraping', '42358')
http://allrecipes.com/recipe/42425
('scraping', '42425')
http://allrecipes.com/recipe/42424
('scraping', '42424')
http://allrecipes.com/recipe/42355
('scraping', '42355')
http://allrecipes.com/recipe/42421
('scraping', '42421')
http://allrecipes.com/recipe/52304
('scraping', '52304')
http://allrecipes.com/recipe/52307
('scraping', '52307')
http://allrecipes.com/recipe/17318
('scraping', '17318')
http://allrecipes.com/recipe/12790
('scraping', '12790')
http://allrecipes.com/recipe/10102
('scraping', '10102')
http://allrecipes.com/recipe/12797
('scraping', '12797')
http://allrecipes.com/recipe/12795
('scraping', '12795')
http://allrecipes.com/recipe/19747
('scraping', '19747')
http://allrecipes.com/recipe/10334
('scraping', '10334')
http://allrecipes.com/recipe/10335
('scraping', '10335')
http://allrecipes.com/recipe/70547
('scraping', '70547')
http://allrecipes.com/recipe/16407
('scraping', '16407')
http://allrecipes.com/recipe/16402
('scraping', '16402')
http://allrecipes.com/recipe/72845
('scraping', '72845')
http://allrecipes.com/recipe/7900
('scraping', '7900')
http://allrecipes.com/recipe/9482
('scraping', '9482')
http://allrecipes.com/recipe/9480
('scraping', '9480')
http://allrecipes.com/recipe/91724
('scraping', '91724')
http://allrecipes.com/recipe/17891
('scraping', '17891')
http://allrecipes.com/recipe/12244
('scraping', '12244')
http://allrecipes.com/recipe/12245
('scraping', '12245')
http://allrecipes.com/recipe/12246
('scraping', '12246')
http://allrecipes.com/recipe/12247
('scraping', '12247')
http://allrecipes.com/recipe/21194
('scraping', '21194')
http://allrecipes.com/recipe/20824
('scraping', '20824')
http://allrecipes.com/recipe/20829
('scraping', '20829')
http://allrecipes.com/recipe/20828
('scraping', '20828')
http://allrecipes.com/recipe/91721
('scraping', '91721')
http://allrecipes.com/recipe/9734
('scraping', '9734')
http://allrecipes.com/recipe/53211
('scraping', '53211')
http://allrecipes.com/recipe/21441
('scraping', '21441')
http://allrecipes.com/recipe/80581
('scraping', '80581')
http://allrecipes.com/recipe/24128
('scraping', '24128')
http://allrecipes.com/recipe/21338
('scraping', '21338')
http://allrecipes.com/recipe/63294
('scraping', '63294')
http://allrecipes.com/recipe/22979
('scraping', '22979')
http://allrecipes.com/recipe/11859
('scraping', '11859')
http://allrecipes.com/recipe/19960
('scraping', '19960')
http://allrecipes.com/recipe/22977
('scraping', '22977')
http://allrecipes.com/recipe/19961
('scraping', '19961')
http://allrecipes.com/recipe/13223
('scraping', '13223')
http://allrecipes.com/recipe/48246
('scraping', '48246')
http://allrecipes.com/recipe/41333
('scraping', '41333')
http://allrecipes.com/recipe/41334
('scraping', '41334')
http://allrecipes.com/recipe/80878
('scraping', '80878')
http://allrecipes.com/recipe/26877
('scraping', '26877')
http://allrecipes.com/recipe/14141
('scraping', '14141')
http://allrecipes.com/recipe/14142
('scraping', '14142')
http://allrecipes.com/recipe/68679
('scraping', '68679')
http://allrecipes.com/recipe/12008
('scraping', '12008')
http://allrecipes.com/recipe/11854
('scraping', '11854')
http://allrecipes.com/recipe/11855
('scraping', '11855')
http://allrecipes.com/recipe/13112
('scraping', '13112')
http://allrecipes.com/recipe/13111
('scraping', '13111')
http://allrecipes.com/recipe/15812
('scraping', '15812')
http://allrecipes.com/recipe/8902
('scraping', '8902')
http://allrecipes.com/recipe/15815
('scraping', '15815')
http://allrecipes.com/recipe/15816
('scraping', '15816')
Check point Iter: 1100
http://allrecipes.com/recipe/14350
('scraping', '14350')
http://allrecipes.com/recipe/14369
('scraping', '14369')
http://allrecipes.com/recipe/14499
('scraping', '14499')
http://allrecipes.com/recipe/18339
('scraping', '18339')
http://allrecipes.com/recipe/17940
('scraping', '17940')
http://allrecipes.com/recipe/17941
('scraping', '17941')
http://allrecipes.com/recipe/33252
('scraping', '33252')
http://allrecipes.com/recipe/14491
('scraping', '14491')
http://allrecipes.com/recipe/14362
('scraping', '14362')
http://allrecipes.com/recipe/14367
('scraping', '14367')
http://allrecipes.com/recipe/14366
('scraping', '14366')
http://allrecipes.com/recipe/20311
('scraping', '20311')
http://allrecipes.com/recipe/20310
('scraping', '20310')
http://allrecipes.com/recipe/87063
('scraping', '87063')
http://allrecipes.com/recipe/38031
('scraping', '38031')
http://allrecipes.com/recipe/94425
('scraping', '94425')
http://allrecipes.com/recipe/67532
('scraping', '67532')
http://allrecipes.com/recipe/19564
('scraping', '19564')
http://allrecipes.com/recipe/47598
('scraping', '47598')
http://allrecipes.com/recipe/83111
('scraping', '83111')
http://allrecipes.com/recipe/85934
('scraping', '85934')
http://allrecipes.com/recipe/85933
('scraping', '85933')
http://allrecipes.com/recipe/63900
('scraping', '63900')
http://allrecipes.com/recipe/83190
('scraping', '83190')
http://allrecipes.com/recipe/23200
('scraping', '23200')
http://allrecipes.com/recipe/23750
('scraping', '23750')
http://allrecipes.com/recipe/23207
('scraping', '23207')
http://allrecipes.com/recipe/23209
('scraping', '23209')
http://allrecipes.com/recipe/87470
('scraping', '87470')
http://allrecipes.com/recipe/87473
('scraping', '87473')
http://allrecipes.com/recipe/87475
('scraping', '87475')
http://allrecipes.com/recipe/48814
('scraping', '48814')
http://allrecipes.com/recipe/41499
('scraping', '41499')
http://allrecipes.com/recipe/12406
('scraping', '12406')
http://allrecipes.com/recipe/12407
('scraping', '12407')
http://allrecipes.com/recipe/15364
('scraping', '15364')
http://allrecipes.com/recipe/92499
('scraping', '92499')
http://allrecipes.com/recipe/9241
('scraping', '9241')
http://allrecipes.com/recipe/7758
('scraping', '7758')
http://allrecipes.com/recipe/92493
('scraping', '92493')
http://allrecipes.com/recipe/92492
('scraping', '92492')
http://allrecipes.com/recipe/7751
('scraping', '7751')
http://allrecipes.com/recipe/92494
('scraping', '92494')
http://allrecipes.com/recipe/96399
('scraping', '96399')
http://allrecipes.com/recipe/19468
('scraping', '19468')
http://allrecipes.com/recipe/32547
('scraping', '32547')
http://allrecipes.com/recipe/96391
('scraping', '96391')
http://allrecipes.com/recipe/32543
('scraping', '32543')
http://allrecipes.com/recipe/6719
('scraping', '6719')
http://allrecipes.com/recipe/6717
('scraping', '6717')
http://allrecipes.com/recipe/9906
('scraping', '9906')
http://allrecipes.com/recipe/9900
('scraping', '9900')
http://allrecipes.com/recipe/11602
('scraping', '11602')
http://allrecipes.com/recipe/24467
('scraping', '24467')
http://allrecipes.com/recipe/24460
('scraping', '24460')
http://allrecipes.com/recipe/24463
('scraping', '24463')
http://allrecipes.com/recipe/20363
('scraping', '20363')
http://allrecipes.com/recipe/50176
('scraping', '50176')
http://allrecipes.com/recipe/24469
('scraping', '24469')
http://allrecipes.com/recipe/24468
('scraping', '24468')
http://allrecipes.com/recipe/19202
('scraping', '19202')
http://allrecipes.com/recipe/19207
('scraping', '19207')
http://allrecipes.com/recipe/55523
('scraping', '55523')
http://allrecipes.com/recipe/22408
('scraping', '22408')
http://allrecipes.com/recipe/22155
('scraping', '22155')
http://allrecipes.com/recipe/18244
('scraping', '18244')
http://allrecipes.com/recipe/22407
('scraping', '22407')
http://allrecipes.com/recipe/22402
('scraping', '22402')
http://allrecipes.com/recipe/13751
('scraping', '13751')
http://allrecipes.com/recipe/26315
('scraping', '26315')
http://allrecipes.com/recipe/26313
('scraping', '26313')
http://allrecipes.com/recipe/25758
('scraping', '25758')
http://allrecipes.com/recipe/25750
('scraping', '25750')
http://allrecipes.com/recipe/25756
('scraping', '25756')
http://allrecipes.com/recipe/46719
('scraping', '46719')
http://allrecipes.com/recipe/75320
('scraping', '75320')
http://allrecipes.com/recipe/24803
('scraping', '24803')
http://allrecipes.com/recipe/49071
('scraping', '49071')
http://allrecipes.com/recipe/21832
('scraping', '21832')
http://allrecipes.com/recipe/24807
('scraping', '24807')
http://allrecipes.com/recipe/24804
('scraping', '24804')
http://allrecipes.com/recipe/59202
('scraping', '59202')
http://allrecipes.com/recipe/23357
('scraping', '23357')
http://allrecipes.com/recipe/99919
('scraping', '99919')
http://allrecipes.com/recipe/23824
('scraping', '23824')
http://allrecipes.com/recipe/11450
('scraping', '11450')
http://allrecipes.com/recipe/17434
('scraping', '17434')
http://allrecipes.com/recipe/17435
('scraping', '17435')
http://allrecipes.com/recipe/17438
('scraping', '17438')
http://allrecipes.com/recipe/17128
('scraping', '17128')
http://allrecipes.com/recipe/13320
('scraping', '13320')
http://allrecipes.com/recipe/13322
('scraping', '13322')
http://allrecipes.com/recipe/17121
('scraping', '17121')
http://allrecipes.com/recipe/13328
('scraping', '13328')
http://allrecipes.com/recipe/17127
('scraping', '17127')
http://allrecipes.com/recipe/17124
('scraping', '17124')
http://allrecipes.com/recipe/17125
('scraping', '17125')
http://allrecipes.com/recipe/36733
('scraping', '36733')
http://allrecipes.com/recipe/36737
('scraping', '36737')
http://allrecipes.com/recipe/36734
('scraping', '36734')
Check point Iter: 1200
http://allrecipes.com/recipe/36739
('scraping', '36739')
http://allrecipes.com/recipe/20124
('scraping', '20124')
http://allrecipes.com/recipe/20126
('scraping', '20126')
http://allrecipes.com/recipe/41292
('scraping', '41292')
http://allrecipes.com/recipe/41291
('scraping', '41291')
http://allrecipes.com/recipe/49613
('scraping', '49613')
http://allrecipes.com/recipe/76811
('scraping', '76811')
http://allrecipes.com/recipe/26468
('scraping', '26468')
http://allrecipes.com/recipe/87272
('scraping', '87272')
http://allrecipes.com/recipe/87270
('scraping', '87270')
http://allrecipes.com/recipe/49383
('scraping', '49383')
http://allrecipes.com/recipe/24277
('scraping', '24277')
http://allrecipes.com/recipe/85162
('scraping', '85162')
http://allrecipes.com/recipe/48030
('scraping', '48030')
http://allrecipes.com/recipe/41072
('scraping', '41072')
http://allrecipes.com/recipe/10471
('scraping', '10471')
http://allrecipes.com/recipe/16945
('scraping', '16945')
http://allrecipes.com/recipe/10472
('scraping', '10472')
http://allrecipes.com/recipe/10479
('scraping', '10479')
http://allrecipes.com/recipe/78375
('scraping', '78375')
http://allrecipes.com/recipe/78372
('scraping', '78372')
http://allrecipes.com/recipe/12925
('scraping', '12925')
http://allrecipes.com/recipe/8925
('scraping', '8925')
http://allrecipes.com/recipe/11871
('scraping', '11871')
http://allrecipes.com/recipe/11876
('scraping', '11876')
http://allrecipes.com/recipe/14806
('scraping', '14806')
http://allrecipes.com/recipe/18834
('scraping', '18834')
http://allrecipes.com/recipe/71201
('scraping', '71201')
http://allrecipes.com/recipe/18523
('scraping', '18523')
http://allrecipes.com/recipe/41355
('scraping', '41355')
http://allrecipes.com/recipe/15179
('scraping', '15179')
http://allrecipes.com/recipe/45301
('scraping', '45301')
http://allrecipes.com/recipe/15175
('scraping', '15175')
http://allrecipes.com/recipe/15174
('scraping', '15174')
http://allrecipes.com/recipe/15171
('scraping', '15171')
http://allrecipes.com/recipe/7104
('scraping', '7104')
http://allrecipes.com/recipe/7107
('scraping', '7107')
http://allrecipes.com/recipe/7109
('scraping', '7109')
http://allrecipes.com/recipe/78150
('scraping', '78150')
http://allrecipes.com/recipe/16942
('scraping', '16942')
http://allrecipes.com/recipe/37608
('scraping', '37608')
http://allrecipes.com/recipe/18788
('scraping', '18788')
http://allrecipes.com/recipe/18780
('scraping', '18780')
http://allrecipes.com/recipe/18787
('scraping', '18787')
http://allrecipes.com/recipe/83033
('scraping', '83033')
http://allrecipes.com/recipe/49312
('scraping', '49312')
http://allrecipes.com/recipe/51619
('scraping', '51619')
http://allrecipes.com/recipe/22808
('scraping', '22808')
http://allrecipes.com/recipe/29980
('scraping', '29980')
http://allrecipes.com/recipe/23573
('scraping', '23573')
http://allrecipes.com/recipe/14775
('scraping', '14775')
http://allrecipes.com/recipe/28053
('scraping', '28053')
http://allrecipes.com/recipe/24256
('scraping', '24256')
http://allrecipes.com/recipe/24254
('scraping', '24254')
http://allrecipes.com/recipe/24255
('scraping', '24255')
http://allrecipes.com/recipe/76004
('scraping', '76004')
http://allrecipes.com/recipe/94894
('scraping', '94894')
http://allrecipes.com/recipe/68534
('scraping', '68534')
http://allrecipes.com/recipe/98858
('scraping', '98858')
http://allrecipes.com/recipe/7219
('scraping', '7219')
http://allrecipes.com/recipe/84984
('scraping', '84984')
http://allrecipes.com/recipe/24784
('scraping', '24784')
http://allrecipes.com/recipe/38949
('scraping', '38949')
http://allrecipes.com/recipe/76263
('scraping', '76263')
http://allrecipes.com/recipe/76264
('scraping', '76264')
http://allrecipes.com/recipe/76265
('scraping', '76265')
http://allrecipes.com/recipe/79205
('scraping', '79205')
http://allrecipes.com/recipe/13695
('scraping', '13695')
http://allrecipes.com/recipe/13696
('scraping', '13696')
http://allrecipes.com/recipe/13697
('scraping', '13697')
http://allrecipes.com/recipe/13690
('scraping', '13690')
http://allrecipes.com/recipe/13691
('scraping', '13691')
http://allrecipes.com/recipe/13692
('scraping', '13692')
http://allrecipes.com/recipe/92806
('scraping', '92806')
http://allrecipes.com/recipe/73565
('scraping', '73565')
http://allrecipes.com/recipe/31988
('scraping', '31988')
http://allrecipes.com/recipe/92803
('scraping', '92803')
http://allrecipes.com/recipe/15955
('scraping', '15955')
http://allrecipes.com/recipe/11205
('scraping', '11205')
http://allrecipes.com/recipe/16564
('scraping', '16564')
http://allrecipes.com/recipe/11209
('scraping', '11209')
http://allrecipes.com/recipe/38941
('scraping', '38941')
http://allrecipes.com/recipe/19073
('scraping', '19073')
http://allrecipes.com/recipe/19075
('scraping', '19075')
http://allrecipes.com/recipe/22364
('scraping', '22364')
http://allrecipes.com/recipe/22366
('scraping', '22366')
http://allrecipes.com/recipe/22367
('scraping', '22367')
http://allrecipes.com/recipe/88786
('scraping', '88786')
http://allrecipes.com/recipe/22363
('scraping', '22363')
http://allrecipes.com/recipe/22368
('scraping', '22368')
http://allrecipes.com/recipe/25320
('scraping', '25320')
http://allrecipes.com/recipe/25323
('scraping', '25323')
http://allrecipes.com/recipe/25322
('scraping', '25322')
http://allrecipes.com/recipe/25324
('scraping', '25324')
http://allrecipes.com/recipe/25326
('scraping', '25326')
http://allrecipes.com/recipe/25329
('scraping', '25329')
http://allrecipes.com/recipe/25328
('scraping', '25328')
http://allrecipes.com/recipe/19841
('scraping', '19841')
http://allrecipes.com/recipe/23942
('scraping', '23942')
http://allrecipes.com/recipe/23418
('scraping', '23418')
Check point Iter: 1300
http://allrecipes.com/recipe/27252
('scraping', '27252')
http://allrecipes.com/recipe/71838
('scraping', '71838')
http://allrecipes.com/recipe/32373
('scraping', '32373')
http://allrecipes.com/recipe/32370
('scraping', '32370')
http://allrecipes.com/recipe/54981
('scraping', '54981')
http://allrecipes.com/recipe/14657
('scraping', '14657')
http://allrecipes.com/recipe/46382
('scraping', '46382')
http://allrecipes.com/recipe/15879
('scraping', '15879')
http://allrecipes.com/recipe/46385
('scraping', '46385')
http://allrecipes.com/recipe/46386
('scraping', '46386')
http://allrecipes.com/recipe/10916
('scraping', '10916')
http://allrecipes.com/recipe/10917
('scraping', '10917')
http://allrecipes.com/recipe/32634
('scraping', '32634')
http://allrecipes.com/recipe/17334
Unable to Scrape: 17334
http://allrecipes.com/recipe/17333
('scraping', '17333')
http://allrecipes.com/recipe/17330
('scraping', '17330')
http://allrecipes.com/recipe/7926
('scraping', '7926')
http://allrecipes.com/recipe/9132
('scraping', '9132')
http://allrecipes.com/recipe/57551
('scraping', '57551')
http://allrecipes.com/recipe/7293
('scraping', '7293')
http://allrecipes.com/recipe/7294
('scraping', '7294')
http://allrecipes.com/recipe/7923
('scraping', '7923')
http://allrecipes.com/recipe/10649
('scraping', '10649')
http://allrecipes.com/recipe/7298
('scraping', '7298')
http://allrecipes.com/recipe/7299
('scraping', '7299')
http://allrecipes.com/recipe/32630
('scraping', '32630')
http://allrecipes.com/recipe/10314
('scraping', '10314')
http://allrecipes.com/recipe/10315
('scraping', '10315')
http://allrecipes.com/recipe/7928
('scraping', '7928')
http://allrecipes.com/recipe/57002
('scraping', '57002')
http://allrecipes.com/recipe/16426
('scraping', '16426')
http://allrecipes.com/recipe/16421
('scraping', '16421')
http://allrecipes.com/recipe/60096
('scraping', '60096')
http://allrecipes.com/recipe/26129
('scraping', '26129')
http://allrecipes.com/recipe/63818
('scraping', '63818')
http://allrecipes.com/recipe/21316
('scraping', '21316')
http://allrecipes.com/recipe/21317
('scraping', '21317')
http://allrecipes.com/recipe/46960
('scraping', '46960')
http://allrecipes.com/recipe/22958
('scraping', '22958')
http://allrecipes.com/recipe/84779
('scraping', '84779')
http://allrecipes.com/recipe/84774
('scraping', '84774')
http://allrecipes.com/recipe/22957
('scraping', '22957')
http://allrecipes.com/recipe/22956
('scraping', '22956')
http://allrecipes.com/recipe/22955
('scraping', '22955')
http://allrecipes.com/recipe/22954
('scraping', '22954')
http://allrecipes.com/recipe/90985
('scraping', '90985')
http://allrecipes.com/recipe/90987
('scraping', '90987')
http://allrecipes.com/recipe/7808
('scraping', '7808')
http://allrecipes.com/recipe/70528
('scraping', '70528')
http://allrecipes.com/recipe/90989
('scraping', '90989')
http://allrecipes.com/recipe/21425
('scraping', '21425')
http://allrecipes.com/recipe/14163
('scraping', '14163')
http://allrecipes.com/recipe/11990
Unable to Scrape: 11990
http://allrecipes.com/recipe/14161
('scraping', '14161')
http://allrecipes.com/recipe/54585
('scraping', '54585')
http://allrecipes.com/recipe/11994
('scraping', '11994')
http://allrecipes.com/recipe/14165
('scraping', '14165')
http://allrecipes.com/recipe/11996
('scraping', '11996')
http://allrecipes.com/recipe/36079
('scraping', '36079')
http://allrecipes.com/recipe/18312
('scraping', '18312')
http://allrecipes.com/recipe/14344
('scraping', '14344')
http://allrecipes.com/recipe/54721
('scraping', '54721')
http://allrecipes.com/recipe/14342
('scraping', '14342')
http://allrecipes.com/recipe/14341
('scraping', '14341')
http://allrecipes.com/recipe/11198
('scraping', '11198')
http://allrecipes.com/recipe/78525
('scraping', '78525')
http://allrecipes.com/recipe/17928
('scraping', '17928')
http://allrecipes.com/recipe/17929
('scraping', '17929')
http://allrecipes.com/recipe/34929
('scraping', '34929')
http://allrecipes.com/recipe/34926
('scraping', '34926')
http://allrecipes.com/recipe/20375
('scraping', '20375')
http://allrecipes.com/recipe/16307
('scraping', '16307')
http://allrecipes.com/recipe/66391
('scraping', '66391')
http://allrecipes.com/recipe/85919
('scraping', '85919')
http://allrecipes.com/recipe/66396
('scraping', '66396')
http://allrecipes.com/recipe/15693
('scraping', '15693')
http://allrecipes.com/recipe/15691
('scraping', '15691')
http://allrecipes.com/recipe/15695
('scraping', '15695')
http://allrecipes.com/recipe/23779
Unable to Scrape: 23779
http://allrecipes.com/recipe/23770
Unable to Scrape: 23770
http://allrecipes.com/recipe/15341
('scraping', '15341')
http://allrecipes.com/recipe/8680
('scraping', '8680')
http://allrecipes.com/recipe/15435
('scraping', '15435')
http://allrecipes.com/recipe/15432
('scraping', '15432')
http://allrecipes.com/recipe/6902
('scraping', '6902')
http://allrecipes.com/recipe/15430
('scraping', '15430')
http://allrecipes.com/recipe/8685
('scraping', '8685')
http://allrecipes.com/recipe/12428
('scraping', '12428')
http://allrecipes.com/recipe/8135
('scraping', '8135')
http://allrecipes.com/recipe/27063
('scraping', '27063')
http://allrecipes.com/recipe/8132
('scraping', '8132')
http://allrecipes.com/recipe/15439
('scraping', '15439')
http://allrecipes.com/recipe/60190
('scraping', '60190')
http://allrecipes.com/recipe/31065
('scraping', '31065')
http://allrecipes.com/recipe/7737
('scraping', '7737')
http://allrecipes.com/recipe/7734
('scraping', '7734')
http://allrecipes.com/recipe/19449
('scraping', '19449')
http://allrecipes.com/recipe/55728
('scraping', '55728')
http://allrecipes.com/recipe/72577
('scraping', '72577')
http://allrecipes.com/recipe/19193
('scraping', '19193')
Check point Iter: 1400
http://allrecipes.com/recipe/19192
('scraping', '19192')
http://allrecipes.com/recipe/55090
('scraping', '55090')
http://allrecipes.com/recipe/8359
('scraping', '8359')
http://allrecipes.com/recipe/11869
('scraping', '11869')
http://allrecipes.com/recipe/8354
('scraping', '8354')
http://allrecipes.com/recipe/94552
('scraping', '94552')
http://allrecipes.com/recipe/39098
('scraping', '39098')
http://allrecipes.com/recipe/39095
('scraping', '39095')
http://allrecipes.com/recipe/73993
('scraping', '73993')
http://allrecipes.com/recipe/39091
('scraping', '39091')
http://allrecipes.com/recipe/24443
('scraping', '24443')
http://allrecipes.com/recipe/24448
('scraping', '24448')
http://allrecipes.com/recipe/50117
('scraping', '50117')
http://allrecipes.com/recipe/22423
('scraping', '22423')
http://allrecipes.com/recipe/22133
('scraping', '22133')
http://allrecipes.com/recipe/22420
('scraping', '22420')
http://allrecipes.com/recipe/22425
('scraping', '22425')
http://allrecipes.com/recipe/43725
('scraping', '43725')
http://allrecipes.com/recipe/13776
('scraping', '13776')
http://allrecipes.com/recipe/26333
('scraping', '26333')
http://allrecipes.com/recipe/26331
('scraping', '26331')
http://allrecipes.com/recipe/26335
('scraping', '26335')
http://allrecipes.com/recipe/93291
('scraping', '93291')
http://allrecipes.com/recipe/93295
('scraping', '93295')
http://allrecipes.com/recipe/17664
('scraping', '17664')
http://allrecipes.com/recipe/52790
('scraping', '52790')
http://allrecipes.com/recipe/57763
('scraping', '57763')
http://allrecipes.com/recipe/19222
('scraping', '19222')
http://allrecipes.com/recipe/19220
('scraping', '19220')
http://allrecipes.com/recipe/11432
('scraping', '11432')
http://allrecipes.com/recipe/11433
('scraping', '11433')
http://allrecipes.com/recipe/11437
('scraping', '11437')
http://allrecipes.com/recipe/19228
('scraping', '19228')
http://allrecipes.com/recipe/38876
('scraping', '38876')
http://allrecipes.com/recipe/38875
('scraping', '38875')
http://allrecipes.com/recipe/17455
('scraping', '17455')
http://allrecipes.com/recipe/17109
('scraping', '17109')
http://allrecipes.com/recipe/38878
('scraping', '38878')
http://allrecipes.com/recipe/13342
('scraping', '13342')
http://allrecipes.com/recipe/13343
('scraping', '13343')
http://allrecipes.com/recipe/13340
('scraping', '13340')
http://allrecipes.com/recipe/13347
('scraping', '13347')
http://allrecipes.com/recipe/57490
('scraping', '57490')
http://allrecipes.com/recipe/74166
('scraping', '74166')
http://allrecipes.com/recipe/36716
('scraping', '36716')
http://allrecipes.com/recipe/42095
('scraping', '42095')
http://allrecipes.com/recipe/21811
('scraping', '21811')
http://allrecipes.com/recipe/24869
('scraping', '24869')
http://allrecipes.com/recipe/24868
('scraping', '24868')
http://allrecipes.com/recipe/87216
('scraping', '87216')
http://allrecipes.com/recipe/41277
('scraping', '41277')
http://allrecipes.com/recipe/41273
('scraping', '41273')
http://allrecipes.com/recipe/41272
('scraping', '41272')
http://allrecipes.com/recipe/99244
('scraping', '99244')
http://allrecipes.com/recipe/85145
('scraping', '85145')
http://allrecipes.com/recipe/16852
('scraping', '16852')
http://allrecipes.com/recipe/16859
('scraping', '16859')
http://allrecipes.com/recipe/16858
('scraping', '16858')
http://allrecipes.com/recipe/85149
('scraping', '85149')
http://allrecipes.com/recipe/85148
('scraping', '85148')
http://allrecipes.com/recipe/12165
('scraping', '12165')
http://allrecipes.com/recipe/12166
('scraping', '12166')
http://allrecipes.com/recipe/42893
('scraping', '42893')
http://allrecipes.com/recipe/12169
('scraping', '12169')
http://allrecipes.com/recipe/42673
('scraping', '42673')
http://allrecipes.com/recipe/10452
('scraping', '10452')
http://allrecipes.com/recipe/10451
('scraping', '10451')
http://allrecipes.com/recipe/10457
('scraping', '10457')
http://allrecipes.com/recipe/53645
('scraping', '53645')
http://allrecipes.com/recipe/10454
('scraping', '10454')
http://allrecipes.com/recipe/99063
('scraping', '99063')
http://allrecipes.com/recipe/10106
('scraping', '10106')
http://allrecipes.com/recipe/95628
Unable to Scrape: 95628
http://allrecipes.com/recipe/78312
Unable to Scrape: 78312
http://allrecipes.com/recipe/21764
('scraping', '21764')
http://allrecipes.com/recipe/71265
('scraping', '71265')
http://allrecipes.com/recipe/21763
('scraping', '21763')
http://allrecipes.com/recipe/63150
('scraping', '63150')
http://allrecipes.com/recipe/37598
('scraping', '37598')
http://allrecipes.com/recipe/37049
('scraping', '37049')
http://allrecipes.com/recipe/18818
('scraping', '18818')
http://allrecipes.com/recipe/18813
('scraping', '18813')
http://allrecipes.com/recipe/18817
('scraping', '18817')
http://allrecipes.com/recipe/8903
('scraping', '8903')
http://allrecipes.com/recipe/37596
('scraping', '37596')
http://allrecipes.com/recipe/10103
('scraping', '10103')
http://allrecipes.com/recipe/7128
('scraping', '7128')
http://allrecipes.com/recipe/7125
('scraping', '7125')
http://allrecipes.com/recipe/86313
('scraping', '86313')
http://allrecipes.com/recipe/68739
('scraping', '68739')
http://allrecipes.com/recipe/68088
('scraping', '68088')
http://allrecipes.com/recipe/55725
('scraping', '55725')
http://allrecipes.com/recipe/71484
('scraping', '71484')
http://allrecipes.com/recipe/26688
('scraping', '26688')
http://allrecipes.com/recipe/24270
('scraping', '24270')
http://allrecipes.com/recipe/68997
('scraping', '68997')
http://allrecipes.com/recipe/35995
('scraping', '35995')
http://allrecipes.com/recipe/26686
('scraping', '26686')
http://allrecipes.com/recipe/26684
('scraping', '26684')
http://allrecipes.com/recipe/14759
('scraping', '14759')
Check point Iter: 1500
http://allrecipes.com/recipe/28035
('scraping', '28035')
http://allrecipes.com/recipe/14754
('scraping', '14754')
http://allrecipes.com/recipe/14750
('scraping', '14750')
http://allrecipes.com/recipe/14751
('scraping', '14751')
http://allrecipes.com/recipe/14753
('scraping', '14753')
http://allrecipes.com/recipe/76061
('scraping', '76061')
http://allrecipes.com/recipe/85740
('scraping', '85740')
http://allrecipes.com/recipe/72014
('scraping', '72014')
http://allrecipes.com/recipe/11119
('scraping', '11119')
http://allrecipes.com/recipe/13906
('scraping', '13906')
http://allrecipes.com/recipe/13900
('scraping', '13900')
http://allrecipes.com/recipe/18107
('scraping', '18107')
http://allrecipes.com/recipe/18108
('scraping', '18108')
http://allrecipes.com/recipe/76289
('scraping', '76289')
http://allrecipes.com/recipe/72901
('scraping', '72901')
http://allrecipes.com/recipe/91620
('scraping', '91620')
http://allrecipes.com/recipe/73508
('scraping', '73508')
http://allrecipes.com/recipe/83968
('scraping', '83968')
http://allrecipes.com/recipe/73507
('scraping', '73507')
http://allrecipes.com/recipe/11117
('scraping', '11117')
http://allrecipes.com/recipe/55395
('scraping', '55395')
http://allrecipes.com/recipe/19055
('scraping', '19055')
http://allrecipes.com/recipe/55390
('scraping', '55390')
http://allrecipes.com/recipe/25904
('scraping', '25904')
http://allrecipes.com/recipe/25906
('scraping', '25906')
http://allrecipes.com/recipe/22306
('scraping', '22306')
http://allrecipes.com/recipe/25900
('scraping', '25900')
http://allrecipes.com/recipe/25902
Unable to Scrape: 25902
http://allrecipes.com/recipe/25909
('scraping', '25909')
http://allrecipes.com/recipe/61704
('scraping', '61704')
http://allrecipes.com/recipe/25655
('scraping', '25655')
http://allrecipes.com/recipe/25654
('scraping', '25654')
http://allrecipes.com/recipe/25651
('scraping', '25651')
http://allrecipes.com/recipe/25650
('scraping', '25650')
http://allrecipes.com/recipe/23437
('scraping', '23437')
http://allrecipes.com/recipe/23436
('scraping', '23436')
http://allrecipes.com/recipe/23434
('scraping', '23434')
http://allrecipes.com/recipe/74755
('scraping', '74755')
http://allrecipes.com/recipe/76937
('scraping', '76937')
http://allrecipes.com/recipe/76930
('scraping', '76930')
http://allrecipes.com/recipe/76933
('scraping', '76933')
http://allrecipes.com/recipe/31200
('scraping', '31200')
http://allrecipes.com/recipe/42460
('scraping', '42460')
http://allrecipes.com/recipe/42467
('scraping', '42467')
http://allrecipes.com/recipe/16629
('scraping', '16629')
http://allrecipes.com/recipe/16626
('scraping', '16626')
http://allrecipes.com/recipe/32355
('scraping', '32355')
http://allrecipes.com/recipe/16625
('scraping', '16625')
http://allrecipes.com/recipe/16621
('scraping', '16621')
http://allrecipes.com/recipe/16197
('scraping', '16197')
http://allrecipes.com/recipe/12757
('scraping', '12757')
http://allrecipes.com/recipe/12754
('scraping', '12754')
http://allrecipes.com/recipe/10938
('scraping', '10938')
http://allrecipes.com/recipe/16193
('scraping', '16193')
http://allrecipes.com/recipe/10930
('scraping', '10930')
http://allrecipes.com/recipe/16994
('scraping', '16994')
http://allrecipes.com/recipe/16992
('scraping', '16992')
http://allrecipes.com/recipe/16993
('scraping', '16993')
http://allrecipes.com/recipe/9445
('scraping', '9445')
http://allrecipes.com/recipe/57532
('scraping', '57532')
http://allrecipes.com/recipe/9115
('scraping', '9115')
http://allrecipes.com/recipe/12285
('scraping', '12285')
http://allrecipes.com/recipe/16449
('scraping', '16449')
http://allrecipes.com/recipe/16441
('scraping', '16441')
http://allrecipes.com/recipe/12288
('scraping', '12288')
http://allrecipes.com/recipe/90716
('scraping', '90716')
http://allrecipes.com/recipe/21150
('scraping', '21150')
http://allrecipes.com/recipe/21151
('scraping', '21151')
http://allrecipes.com/recipe/13231
('scraping', '13231')
http://allrecipes.com/recipe/69704
('scraping', '69704')
http://allrecipes.com/recipe/42285
('scraping', '42285')
http://allrecipes.com/recipe/42283
('scraping', '42283')
http://allrecipes.com/recipe/21483
('scraping', '21483')
http://allrecipes.com/recipe/85554
('scraping', '85554')
http://allrecipes.com/recipe/42289
('scraping', '42289')
http://allrecipes.com/recipe/21378
('scraping', '21378')
http://allrecipes.com/recipe/14955
('scraping', '14955')
http://allrecipes.com/recipe/75621
('scraping', '75621')
http://allrecipes.com/recipe/75150
('scraping', '75150')
http://allrecipes.com/recipe/37453
('scraping', '37453')
http://allrecipes.com/recipe/75628
('scraping', '75628')
http://allrecipes.com/recipe/37456
('scraping', '37456')
http://allrecipes.com/recipe/38468
('scraping', '38468')
http://allrecipes.com/recipe/37394
('scraping', '37394')
http://allrecipes.com/recipe/13488
('scraping', '13488')
http://allrecipes.com/recipe/53077
('scraping', '53077')
http://allrecipes.com/recipe/10663
('scraping', '10663')
http://allrecipes.com/recipe/70507
('scraping', '70507')
http://allrecipes.com/recipe/10668
('scraping', '10668')
http://allrecipes.com/recipe/18480
('scraping', '18480')
http://allrecipes.com/recipe/14100
('scraping', '14100')
http://allrecipes.com/recipe/18482
('scraping', '18482')
http://allrecipes.com/recipe/14102
('scraping', '14102')
http://allrecipes.com/recipe/18484
('scraping', '18484')
http://allrecipes.com/recipe/18486
('scraping', '18486')
http://allrecipes.com/recipe/26637
('scraping', '26637')
http://allrecipes.com/recipe/14109
('scraping', '14109')
http://allrecipes.com/recipe/14108
('scraping', '14108')
http://allrecipes.com/recipe/71672
('scraping', '71672')
http://allrecipes.com/recipe/96903
('scraping', '96903')
Check point Iter: 1600
http://allrecipes.com/recipe/71424
('scraping', '71424')
http://allrecipes.com/recipe/12475
('scraping', '12475')
http://allrecipes.com/recipe/26633
('scraping', '26633')
http://allrecipes.com/recipe/13154
('scraping', '13154')
http://allrecipes.com/recipe/13153
('scraping', '13153')
http://allrecipes.com/recipe/20683
('scraping', '20683')
http://allrecipes.com/recipe/10593
('scraping', '10593')
http://allrecipes.com/recipe/53255
('scraping', '53255')
http://allrecipes.com/recipe/36055
('scraping', '36055')
http://allrecipes.com/recipe/10595
('scraping', '10595')
http://allrecipes.com/recipe/10598
('scraping', '10598')
http://allrecipes.com/recipe/19120
('scraping', '19120')
http://allrecipes.com/recipe/37906
('scraping', '37906')
http://allrecipes.com/recipe/20421
('scraping', '20421')
http://allrecipes.com/recipe/92523
('scraping', '92523')
http://allrecipes.com/recipe/20351
('scraping', '20351')
http://allrecipes.com/recipe/20429
('scraping', '20429')
http://allrecipes.com/recipe/20359
('scraping', '20359')
http://allrecipes.com/recipe/17469
('scraping', '17469')
http://allrecipes.com/recipe/7012
('scraping', '7012')
http://allrecipes.com/recipe/87020
('scraping', '87020')
http://allrecipes.com/recipe/87021
('scraping', '87021')
http://allrecipes.com/recipe/19903
('scraping', '19903')
http://allrecipes.com/recipe/87025
('scraping', '87025')
http://allrecipes.com/recipe/12991
('scraping', '12991')
http://allrecipes.com/recipe/17461
('scraping', '17461')
http://allrecipes.com/recipe/12998
('scraping', '12998')
http://allrecipes.com/recipe/12999
('scraping', '12999')
http://allrecipes.com/recipe/41736
('scraping', '41736')
http://allrecipes.com/recipe/67394
('scraping', '67394')
http://allrecipes.com/recipe/67398
('scraping', '67398')
http://allrecipes.com/recipe/40288
Unable to Scrape: 40288
http://allrecipes.com/recipe/78502
('scraping', '78502')
http://allrecipes.com/recipe/76544
('scraping', '76544')
http://allrecipes.com/recipe/13379
('scraping', '13379')
http://allrecipes.com/recipe/13378
('scraping', '13378')
http://allrecipes.com/recipe/87550
('scraping', '87550')
http://allrecipes.com/recipe/8118
('scraping', '8118')
http://allrecipes.com/recipe/8119
('scraping', '8119')
http://allrecipes.com/recipe/15419
('scraping', '15419')
http://allrecipes.com/recipe/8112
('scraping', '8112')
http://allrecipes.com/recipe/6924
('scraping', '6924')
http://allrecipes.com/recipe/59281
('scraping', '59281')
http://allrecipes.com/recipe/15411
('scraping', '15411')
http://allrecipes.com/recipe/15412
('scraping', '15412')
http://allrecipes.com/recipe/7711
('scraping', '7711')
http://allrecipes.com/recipe/7717
('scraping', '7717')
http://allrecipes.com/recipe/13373
('scraping', '13373')
http://allrecipes.com/recipe/39304
('scraping', '39304')
http://allrecipes.com/recipe/12289
('scraping', '12289')
http://allrecipes.com/recipe/8377
('scraping', '8377')
http://allrecipes.com/recipe/88353
('scraping', '88353')
http://allrecipes.com/recipe/8370
('scraping', '8370')
http://allrecipes.com/recipe/74174
('scraping', '74174')
http://allrecipes.com/recipe/8379
('scraping', '8379')
http://allrecipes.com/recipe/23266
('scraping', '23266')
http://allrecipes.com/recipe/50133
('scraping', '50133')
http://allrecipes.com/recipe/50134
('scraping', '50134')
http://allrecipes.com/recipe/50135
('scraping', '50135')
http://allrecipes.com/recipe/50136
('scraping', '50136')
http://allrecipes.com/recipe/24421
('scraping', '24421')
http://allrecipes.com/recipe/24423
('scraping', '24423')
http://allrecipes.com/recipe/24424
('scraping', '24424')
http://allrecipes.com/recipe/24427
('scraping', '24427')
http://allrecipes.com/recipe/65639
('scraping', '65639')
http://allrecipes.com/recipe/22445
('scraping', '22445')
http://allrecipes.com/recipe/22444
('scraping', '22444')
http://allrecipes.com/recipe/22449
('scraping', '22449')
http://allrecipes.com/recipe/22448
('scraping', '22448')
http://allrecipes.com/recipe/65637
('scraping', '65637')
http://allrecipes.com/recipe/77144
('scraping', '77144')
http://allrecipes.com/recipe/13715
('scraping', '13715')
http://allrecipes.com/recipe/13717
('scraping', '13717')
http://allrecipes.com/recipe/55704
('scraping', '55704')
http://allrecipes.com/recipe/55705
('scraping', '55705')
http://allrecipes.com/recipe/19423
('scraping', '19423')
http://allrecipes.com/recipe/55707
('scraping', '55707')
http://allrecipes.com/recipe/19426
('scraping', '19426')
http://allrecipes.com/recipe/51089
('scraping', '51089')
http://allrecipes.com/recipe/26109
('scraping', '26109')
http://allrecipes.com/recipe/98799
('scraping', '98799')
http://allrecipes.com/recipe/46765
('scraping', '46765')
http://allrecipes.com/recipe/14223
('scraping', '14223')
http://allrecipes.com/recipe/11413
('scraping', '11413')
http://allrecipes.com/recipe/11417
('scraping', '11417')
http://allrecipes.com/recipe/11419
('scraping', '11419')
http://allrecipes.com/recipe/16295
('scraping', '16295')
http://allrecipes.com/recipe/16294
('scraping', '16294')
http://allrecipes.com/recipe/16293
('scraping', '16293')
http://allrecipes.com/recipe/17479
('scraping', '17479')
http://allrecipes.com/recipe/94191
('scraping', '94191')
http://allrecipes.com/recipe/94195
('scraping', '94195')
http://allrecipes.com/recipe/17474
('scraping', '17474')
http://allrecipes.com/recipe/13368
('scraping', '13368')
http://allrecipes.com/recipe/90681
('scraping', '90681')
http://allrecipes.com/recipe/90686
('scraping', '90686')
http://allrecipes.com/recipe/90687
('scraping', '90687')
http://allrecipes.com/recipe/90684
('scraping', '90684')
http://allrecipes.com/recipe/60111
('scraping', '60111')
http://allrecipes.com/recipe/90689
('scraping', '90689')
Check point Iter: 1700
http://allrecipes.com/recipe/13364
('scraping', '13364')
http://allrecipes.com/recipe/25469
('scraping', '25469')
http://allrecipes.com/recipe/46029
('scraping', '46029')
http://allrecipes.com/recipe/46759
('scraping', '46759')
http://allrecipes.com/recipe/20176
('scraping', '20176')
http://allrecipes.com/recipe/24845
('scraping', '24845')
http://allrecipes.com/recipe/15798
('scraping', '15798')
http://allrecipes.com/recipe/24842
('scraping', '24842')
http://allrecipes.com/recipe/24841
('scraping', '24841')
http://allrecipes.com/recipe/20160
('scraping', '20160')
http://allrecipes.com/recipe/20164
('scraping', '20164')
http://allrecipes.com/recipe/45223
('scraping', '45223')
http://allrecipes.com/recipe/36192
('scraping', '36192')
http://allrecipes.com/recipe/36196
('scraping', '36196')
http://allrecipes.com/recipe/20170
('scraping', '20170')
http://allrecipes.com/recipe/16873
('scraping', '16873')
http://allrecipes.com/recipe/16877
('scraping', '16877')
http://allrecipes.com/recipe/16876
('scraping', '16876')
http://allrecipes.com/recipe/16878
('scraping', '16878')
http://allrecipes.com/recipe/12143
('scraping', '12143')
http://allrecipes.com/recipe/12144
('scraping', '12144')
http://allrecipes.com/recipe/75153
('scraping', '75153')
http://allrecipes.com/recipe/99044
('scraping', '99044')
http://allrecipes.com/recipe/59878
('scraping', '59878')
http://allrecipes.com/recipe/9650
('scraping', '9650')
http://allrecipes.com/recipe/9655
('scraping', '9655')
http://allrecipes.com/recipe/9304
('scraping', '9304')
http://allrecipes.com/recipe/53623
Unable to Scrape: 53623
http://allrecipes.com/recipe/10127
Unable to Scrape: 10127
http://allrecipes.com/recipe/10125
Unable to Scrape: 10125
http://allrecipes.com/recipe/9303
Unable to Scrape: 9303
http://allrecipes.com/recipe/37020
('scraping', '37020')
http://allrecipes.com/recipe/18872
('scraping', '18872')
http://allrecipes.com/recipe/21747
('scraping', '21747')
http://allrecipes.com/recipe/21745
('scraping', '21745')
http://allrecipes.com/recipe/18876
Unable to Scrape: 18876
http://allrecipes.com/recipe/18878
Unable to Scrape: 18878
http://allrecipes.com/recipe/21749
('scraping', '21749')
http://allrecipes.com/recipe/71243
('scraping', '71243')
http://allrecipes.com/recipe/71240
Unable to Scrape: 71240
http://allrecipes.com/recipe/78195
('scraping', '78195')
http://allrecipes.com/recipe/26917
('scraping', '26917')
http://allrecipes.com/recipe/86543
Unable to Scrape: 86543
http://allrecipes.com/recipe/41036
Unable to Scrape: 41036
http://allrecipes.com/recipe/41035
Unable to Scrape: 41035
http://allrecipes.com/recipe/41033
Unable to Scrape: 41033
http://allrecipes.com/recipe/41032
Unable to Scrape: 41032
http://allrecipes.com/recipe/41030
Unable to Scrape: 41030
http://allrecipes.com/recipe/68713
Unable to Scrape: 68713
http://allrecipes.com/recipe/86230
Unable to Scrape: 86230
http://allrecipes.com/recipe/41038
Unable to Scrape: 41038
http://allrecipes.com/recipe/29493
Unable to Scrape: 29493
http://allrecipes.com/recipe/40341
Unable to Scrape: 40341
http://allrecipes.com/recipe/83071
Unable to Scrape: 83071
http://allrecipes.com/recipe/18296
Unable to Scrape: 18296
http://allrecipes.com/recipe/24218
Unable to Scrape: 24218
http://allrecipes.com/recipe/24219
Unable to Scrape: 24219
http://allrecipes.com/recipe/18299
Unable to Scrape: 18299
http://allrecipes.com/recipe/14739
Unable to Scrape: 14739
http://allrecipes.com/recipe/47966
Unable to Scrape: 47966
http://allrecipes.com/recipe/14731
Unable to Scrape: 14731
http://allrecipes.com/recipe/28015
Unable to Scrape: 28015
http://allrecipes.com/recipe/68578
Unable to Scrape: 68578
http://allrecipes.com/recipe/76041
Unable to Scrape: 76041
http://allrecipes.com/recipe/13969
Unable to Scrape: 13969
http://allrecipes.com/recipe/18121
Unable to Scrape: 18121
http://allrecipes.com/recipe/89747
Unable to Scrape: 89747
http://allrecipes.com/recipe/79245
Unable to Scrape: 79245
http://allrecipes.com/recipe/91642
Unable to Scrape: 91642
http://allrecipes.com/recipe/91312
Unable to Scrape: 91312
http://allrecipes.com/recipe/53078
Unable to Scrape: 53078
http://allrecipes.com/recipe/30094
Unable to Scrape: 30094
http://allrecipes.com/recipe/8587
Unable to Scrape: 8587
http://allrecipes.com/recipe/8586
Unable to Scrape: 8586
http://allrecipes.com/recipe/14101
Unable to Scrape: 14101
http://allrecipes.com/recipe/92636
Unable to Scrape: 92636
http://allrecipes.com/recipe/23183
Unable to Scrape: 23183
http://allrecipes.com/recipe/23639
Unable to Scrape: 23639
http://allrecipes.com/recipe/23185
Unable to Scrape: 23185
http://allrecipes.com/recipe/93648
Unable to Scrape: 93648
http://allrecipes.com/recipe/23634
Unable to Scrape: 23634
http://allrecipes.com/recipe/23631
Unable to Scrape: 23631
http://allrecipes.com/recipe/15064
Unable to Scrape: 15064
http://allrecipes.com/recipe/87820
Unable to Scrape: 87820
http://allrecipes.com/recipe/87793
Unable to Scrape: 87793
http://allrecipes.com/recipe/15061
Unable to Scrape: 15061
http://allrecipes.com/recipe/14107
Unable to Scrape: 14107
http://allrecipes.com/recipe/48974
Unable to Scrape: 48974
http://allrecipes.com/recipe/71676
Unable to Scrape: 71676
http://allrecipes.com/recipe/9967
Unable to Scrape: 9967
http://allrecipes.com/recipe/25926
Unable to Scrape: 25926
http://allrecipes.com/recipe/22323
Unable to Scrape: 22323
http://allrecipes.com/recipe/73748
Unable to Scrape: 73748
http://allrecipes.com/recipe/26885
Unable to Scrape: 26885
http://allrecipes.com/recipe/26884
Unable to Scrape: 26884
http://allrecipes.com/recipe/25672
Unable to Scrape: 25672
http://allrecipes.com/recipe/25670
Unable to Scrape: 25670
http://allrecipes.com/recipe/25677
Unable to Scrape: 25677
http://allrecipes.com/recipe/51655
Unable to Scrape: 51655
http://allrecipes.com/recipe/16019
Unable to Scrape: 16019
Check point Iter: 1800
http://allrecipes.com/recipe/72431
Unable to Scrape: 72431
http://allrecipes.com/recipe/23980
Unable to Scrape: 23980
http://allrecipes.com/recipe/76958
Unable to Scrape: 76958
http://allrecipes.com/recipe/13363
Unable to Scrape: 13363
http://allrecipes.com/recipe/76957
Unable to Scrape: 76957
http://allrecipes.com/recipe/76955
Unable to Scrape: 76955
http://allrecipes.com/recipe/7505
Unable to Scrape: 7505
http://allrecipes.com/recipe/9884
Unable to Scrape: 9884
http://allrecipes.com/recipe/9881
Unable to Scrape: 9881
http://allrecipes.com/recipe/73528
Unable to Scrape: 73528
http://allrecipes.com/recipe/10448
Unable to Scrape: 10448
http://allrecipes.com/recipe/9889
Unable to Scrape: 9889
http://allrecipes.com/recipe/9888
Unable to Scrape: 9888
http://allrecipes.com/recipe/16607
Unable to Scrape: 16607
http://allrecipes.com/recipe/16609
Unable to Scrape: 16609
http://allrecipes.com/recipe/10445
Unable to Scrape: 10445
http://allrecipes.com/recipe/42446
Unable to Scrape: 42446
http://allrecipes.com/recipe/42444
Unable to Scrape: 42444
http://allrecipes.com/recipe/84857
Unable to Scrape: 84857
http://allrecipes.com/recipe/10115
Unable to Scrape: 10115
http://allrecipes.com/recipe/22589
Unable to Scrape: 22589
http://allrecipes.com/recipe/84851
Unable to Scrape: 84851
http://allrecipes.com/recipe/22587
Unable to Scrape: 22587
http://allrecipes.com/recipe/22580
Unable to Scrape: 22580
http://allrecipes.com/recipe/8671
Unable to Scrape: 8671
http://allrecipes.com/recipe/10959
Unable to Scrape: 10959
http://allrecipes.com/recipe/69549
Unable to Scrape: 69549
http://allrecipes.com/recipe/10442
Unable to Scrape: 10442
http://allrecipes.com/recipe/10951
Unable to Scrape: 10951
http://allrecipes.com/recipe/16467
Unable to Scrape: 16467
http://allrecipes.com/recipe/72831
Unable to Scrape: 72831
http://allrecipes.com/recipe/24980
Unable to Scrape: 24980
http://allrecipes.com/recipe/24981
Unable to Scrape: 24981
http://allrecipes.com/recipe/24986
Unable to Scrape: 24986
http://allrecipes.com/recipe/24984
Unable to Scrape: 24984
http://allrecipes.com/recipe/8678
Unable to Scrape: 8678
http://allrecipes.com/recipe/26168
Unable to Scrape: 26168
http://allrecipes.com/recipe/69098
Unable to Scrape: 69098
http://allrecipes.com/recipe/25584
Unable to Scrape: 25584
http://allrecipes.com/recipe/25586
Unable to Scrape: 25586
http://allrecipes.com/recipe/21350
Unable to Scrape: 21350
http://allrecipes.com/recipe/24183
Unable to Scrape: 24183
http://allrecipes.com/recipe/63589
Unable to Scrape: 63589
http://allrecipes.com/recipe/24186
Unable to Scrape: 24186
http://allrecipes.com/recipe/46250
Unable to Scrape: 46250
http://allrecipes.com/recipe/21357
Unable to Scrape: 21357
http://allrecipes.com/recipe/42917
Unable to Scrape: 42917
http://allrecipes.com/recipe/63580
Unable to Scrape: 63580
http://allrecipes.com/recipe/75602
Unable to Scrape: 75602
http://allrecipes.com/recipe/22917
Unable to Scrape: 22917
http://allrecipes.com/recipe/22916
Unable to Scrape: 22916
http://allrecipes.com/recipe/22915
Unable to Scrape: 22915
http://allrecipes.com/recipe/22912
Unable to Scrape: 22912
http://allrecipes.com/recipe/56938
Unable to Scrape: 56938
http://allrecipes.com/recipe/16232
Unable to Scrape: 16232
http://allrecipes.com/recipe/11605
Unable to Scrape: 11605
http://allrecipes.com/recipe/11604
Unable to Scrape: 11604
http://allrecipes.com/recipe/90239
Unable to Scrape: 90239
http://allrecipes.com/recipe/57042
Unable to Scrape: 57042
http://allrecipes.com/recipe/9461
Unable to Scrape: 9461
http://allrecipes.com/recipe/11600
Unable to Scrape: 11600
http://allrecipes.com/recipe/9462
Unable to Scrape: 9462
http://allrecipes.com/recipe/10609
Unable to Scrape: 10609
http://allrecipes.com/recipe/9468
Unable to Scrape: 9468
http://allrecipes.com/recipe/71389
Unable to Scrape: 71389
http://allrecipes.com/recipe/11958
Unable to Scrape: 11958
http://allrecipes.com/recipe/71382
Unable to Scrape: 71382
http://allrecipes.com/recipe/14124
Unable to Scrape: 14124
http://allrecipes.com/recipe/11951
Unable to Scrape: 11951
http://allrecipes.com/recipe/11950
Unable to Scrape: 11950
http://allrecipes.com/recipe/18460
Unable to Scrape: 18460
http://allrecipes.com/recipe/18461
Unable to Scrape: 18461
http://allrecipes.com/recipe/17733
Unable to Scrape: 17733
http://allrecipes.com/recipe/37582
Unable to Scrape: 37582
http://allrecipes.com/recipe/17739
Unable to Scrape: 17739
http://allrecipes.com/recipe/15415
Unable to Scrape: 15415
http://allrecipes.com/recipe/70387
Unable to Scrape: 70387
http://allrecipes.com/recipe/70388
Unable to Scrape: 70388
http://allrecipes.com/recipe/9793
Unable to Scrape: 9793
http://allrecipes.com/recipe/9792
Unable to Scrape: 9792
http://allrecipes.com/recipe/36528
Unable to Scrape: 36528
http://allrecipes.com/recipe/9795
Unable to Scrape: 9795
http://allrecipes.com/recipe/36523
Unable to Scrape: 36523
http://allrecipes.com/recipe/9799
Unable to Scrape: 9799
http://allrecipes.com/recipe/14389
Unable to Scrape: 14389
http://allrecipes.com/recipe/62188
Unable to Scrape: 62188
http://allrecipes.com/recipe/12545
Unable to Scrape: 12545
http://allrecipes.com/recipe/20402
Unable to Scrape: 20402
http://allrecipes.com/recipe/20407
Unable to Scrape: 20407
http://allrecipes.com/recipe/20406
Unable to Scrape: 20406
http://allrecipes.com/recipe/83242
Unable to Scrape: 83242
http://allrecipes.com/recipe/44073
Unable to Scrape: 44073
http://allrecipes.com/recipe/81196
Unable to Scrape: 81196
http://allrecipes.com/recipe/76380
Unable to Scrape: 76380
http://allrecipes.com/recipe/68967
Unable to Scrape: 68967
http://allrecipes.com/recipe/8206
Unable to Scrape: 8206
http://allrecipes.com/recipe/68961
Unable to Scrape: 68961
http://allrecipes.com/recipe/70925
Unable to Scrape: 70925
http://allrecipes.com/recipe/70521
Unable to Scrape: 70521
http://allrecipes.com/recipe/15659
Unable to Scrape: 15659
Check point Iter: 1900
http://allrecipes.com/recipe/15657
Unable to Scrape: 15657
http://allrecipes.com/recipe/15654
Unable to Scrape: 15654
http://allrecipes.com/recipe/41751
Unable to Scrape: 41751
http://allrecipes.com/recipe/71668
Unable to Scrape: 71668
http://allrecipes.com/recipe/7087
Unable to Scrape: 7087
http://allrecipes.com/recipe/7086
Unable to Scrape: 7086
http://allrecipes.com/recipe/7089
Unable to Scrape: 7089
http://allrecipes.com/recipe/71031
Unable to Scrape: 71031
http://allrecipes.com/recipe/78071
Unable to Scrape: 78071
http://allrecipes.com/recipe/7585
Unable to Scrape: 7585
http://allrecipes.com/recipe/62618
Unable to Scrape: 62618
http://allrecipes.com/recipe/8172
Unable to Scrape: 8172
http://allrecipes.com/recipe/8173
Unable to Scrape: 8173
http://allrecipes.com/recipe/91788
Unable to Scrape: 91788
http://allrecipes.com/recipe/91789
Unable to Scrape: 91789
http://allrecipes.com/recipe/8177
Unable to Scrape: 8177
http://allrecipes.com/recipe/91784
Unable to Scrape: 91784
http://allrecipes.com/recipe/8179
Unable to Scrape: 8179
http://allrecipes.com/recipe/15389
Unable to Scrape: 15389
http://allrecipes.com/recipe/91782
Unable to Scrape: 91782
http://allrecipes.com/recipe/91783
Unable to Scrape: 91783
http://allrecipes.com/recipe/6948
Unable to Scrape: 6948
http://allrecipes.com/recipe/15477
Unable to Scrape: 15477
http://allrecipes.com/recipe/6944
Unable to Scrape: 6944
http://allrecipes.com/recipe/86751
Unable to Scrape: 86751
http://allrecipes.com/recipe/95318
Unable to Scrape: 95318
http://allrecipes.com/recipe/47576
Unable to Scrape: 47576
http://allrecipes.com/recipe/80929
Unable to Scrape: 80929
http://allrecipes.com/recipe/34785
Unable to Scrape: 34785
http://allrecipes.com/recipe/88806
Unable to Scrape: 88806
http://allrecipes.com/recipe/8390
Unable to Scrape: 8390
http://allrecipes.com/recipe/8392
Unable to Scrape: 8392
http://allrecipes.com/recipe/88370
Unable to Scrape: 88370
http://allrecipes.com/recipe/92782
Unable to Scrape: 92782
http://allrecipes.com/recipe/40401
Unable to Scrape: 40401
http://allrecipes.com/recipe/24401
Unable to Scrape: 24401
http://allrecipes.com/recipe/24408
Unable to Scrape: 24408
http://allrecipes.com/recipe/47757
Unable to Scrape: 47757
http://allrecipes.com/recipe/22468
Unable to Scrape: 22468
http://allrecipes.com/recipe/22467
Unable to Scrape: 22467
http://allrecipes.com/recipe/22463
Unable to Scrape: 22463
http://allrecipes.com/recipe/13737
Unable to Scrape: 13737
http://allrecipes.com/recipe/13736
Unable to Scrape: 13736
http://allrecipes.com/recipe/13735
Unable to Scrape: 13735
http://allrecipes.com/recipe/86366
Unable to Scrape: 86366
http://allrecipes.com/recipe/77169
Unable to Scrape: 77169
http://allrecipes.com/recipe/13731
Unable to Scrape: 13731
http://allrecipes.com/recipe/13738
Unable to Scrape: 13738
http://allrecipes.com/recipe/11381
Unable to Scrape: 11381
http://allrecipes.com/recipe/96376
Unable to Scrape: 96376
http://allrecipes.com/recipe/96370
Unable to Scrape: 96370
http://allrecipes.com/recipe/96372
Unable to Scrape: 96372
http://allrecipes.com/recipe/51069
Unable to Scrape: 51069
http://allrecipes.com/recipe/19409
Unable to Scrape: 19409
http://allrecipes.com/recipe/51065
Unable to Scrape: 51065
http://allrecipes.com/recipe/19406
Unable to Scrape: 19406
http://allrecipes.com/recipe/93780
Unable to Scrape: 93780
http://allrecipes.com/recipe/51066
Unable to Scrape: 51066
http://allrecipes.com/recipe/19153
Unable to Scrape: 19153
http://allrecipes.com/recipe/19152
Unable to Scrape: 19152
http://allrecipes.com/recipe/94202
Unable to Scrape: 94202
http://allrecipes.com/recipe/94201
Unable to Scrape: 94201
http://allrecipes.com/recipe/73261
Unable to Scrape: 73261
http://allrecipes.com/recipe/56236
Unable to Scrape: 56236
http://allrecipes.com/recipe/23845
Unable to Scrape: 23845
http://allrecipes.com/recipe/23841
Unable to Scrape: 23841
http://allrecipes.com/recipe/23849
Unable to Scrape: 23849
http://allrecipes.com/recipe/65875
Unable to Scrape: 65875
http://allrecipes.com/recipe/27174
Unable to Scrape: 27174
http://allrecipes.com/recipe/87586
Unable to Scrape: 87586
http://allrecipes.com/recipe/65872
Unable to Scrape: 65872
http://allrecipes.com/recipe/55584
Unable to Scrape: 55584
http://allrecipes.com/recipe/51605
Unable to Scrape: 51605
http://allrecipes.com/recipe/27179
Unable to Scrape: 27179
http://allrecipes.com/recipe/86986
Unable to Scrape: 86986
http://allrecipes.com/recipe/69377
Unable to Scrape: 69377
http://allrecipes.com/recipe/8553
Unable to Scrape: 8553
http://allrecipes.com/recipe/43989
Unable to Scrape: 43989
http://allrecipes.com/recipe/25448
Unable to Scrape: 25448
http://allrecipes.com/recipe/25444
Unable to Scrape: 25444
http://allrecipes.com/recipe/25117
Unable to Scrape: 25117
http://allrecipes.com/recipe/25115
Unable to Scrape: 25115
http://allrecipes.com/recipe/25111
Unable to Scrape: 25111
http://allrecipes.com/recipe/85328
Unable to Scrape: 85328
http://allrecipes.com/recipe/80200
Unable to Scrape: 80200
http://allrecipes.com/recipe/82539
Unable to Scrape: 82539
http://allrecipes.com/recipe/42585
Unable to Scrape: 42585
http://allrecipes.com/recipe/95559
Unable to Scrape: 95559
http://allrecipes.com/recipe/95558
Unable to Scrape: 95558
http://allrecipes.com/recipe/57184
Unable to Scrape: 57184
http://allrecipes.com/recipe/82766
Unable to Scrape: 82766
http://allrecipes.com/recipe/7868
Unable to Scrape: 7868
http://allrecipes.com/recipe/16811
Unable to Scrape: 16811
http://allrecipes.com/recipe/16810
Unable to Scrape: 16810
http://allrecipes.com/recipe/16813
Unable to Scrape: 16813
http://allrecipes.com/recipe/16815
Unable to Scrape: 16815
http://allrecipes.com/recipe/12129
Unable to Scrape: 12129
http://allrecipes.com/recipe/12121
Unable to Scrape: 12121
http://allrecipes.com/recipe/8160
Unable to Scrape: 8160
http://allrecipes.com/recipe/53607
Unable to Scrape: 53607
Check point Iter: 2000
http://allrecipes.com/recipe/10143
Unable to Scrape: 10143
http://allrecipes.com/recipe/53604
Unable to Scrape: 53604
http://allrecipes.com/recipe/10413
Unable to Scrape: 10413
http://allrecipes.com/recipe/10144
Unable to Scrape: 10144
http://allrecipes.com/recipe/10147
Unable to Scrape: 10147
http://allrecipes.com/recipe/49890
Unable to Scrape: 49890
http://allrecipes.com/recipe/10149
Unable to Scrape: 10149
http://allrecipes.com/recipe/10148
Unable to Scrape: 10148
http://allrecipes.com/recipe/9633
Unable to Scrape: 9633
http://allrecipes.com/recipe/9634
Unable to Scrape: 9634
http://allrecipes.com/recipe/9325
Unable to Scrape: 9325
http://allrecipes.com/recipe/21728
Unable to Scrape: 21728
http://allrecipes.com/recipe/8942
Unable to Scrape: 8942
http://allrecipes.com/recipe/37559
Unable to Scrape: 37559
http://allrecipes.com/recipe/21721
Unable to Scrape: 21721
http://allrecipes.com/recipe/58988
Unable to Scrape: 58988
http://allrecipes.com/recipe/37552
Unable to Scrape: 37552
http://allrecipes.com/recipe/41233
Unable to Scrape: 41233
http://allrecipes.com/recipe/40181
Unable to Scrape: 40181
http://allrecipes.com/recipe/83587
Unable to Scrape: 83587
http://allrecipes.com/recipe/49410
Unable to Scrape: 49410
http://allrecipes.com/recipe/80972
Unable to Scrape: 80972
http://allrecipes.com/recipe/84585
Unable to Scrape: 84585
http://allrecipes.com/recipe/84580
Unable to Scrape: 84580
http://allrecipes.com/recipe/48091
Unable to Scrape: 48091
http://allrecipes.com/recipe/45065
Unable to Scrape: 45065
http://allrecipes.com/recipe/84273
Unable to Scrape: 84273
http://allrecipes.com/recipe/86693
Unable to Scrape: 86693
http://allrecipes.com/recipe/28004
Unable to Scrape: 28004
http://allrecipes.com/recipe/86697
Unable to Scrape: 86697
http://allrecipes.com/recipe/54965
Unable to Scrape: 54965
http://allrecipes.com/recipe/14244
Unable to Scrape: 14244
http://allrecipes.com/recipe/58323
Unable to Scrape: 58323
http://allrecipes.com/recipe/14241
Unable to Scrape: 14241
http://allrecipes.com/recipe/22766
Unable to Scrape: 22766
http://allrecipes.com/recipe/68596
Unable to Scrape: 68596
http://allrecipes.com/recipe/54963
Unable to Scrape: 54963
http://allrecipes.com/recipe/13943
Unable to Scrape: 13943
http://allrecipes.com/recipe/13947
Unable to Scrape: 13947
http://allrecipes.com/recipe/18145
Unable to Scrape: 18145
http://allrecipes.com/recipe/18147
Unable to Scrape: 18147
http://allrecipes.com/recipe/18146
('scraping', '18146')
http://allrecipes.com/recipe/16908
Unable to Scrape: 16908
http://allrecipes.com/recipe/89548
('scraping', '89548')
http://allrecipes.com/recipe/23618
('scraping', '23618')
http://allrecipes.com/recipe/42518
('scraping', '42518')
http://allrecipes.com/recipe/23612
Unable to Scrape: 23612
http://allrecipes.com/recipe/23617
Unable to Scrape: 23617
http://allrecipes.com/recipe/23614
('scraping', '23614')
http://allrecipes.com/recipe/15042
('scraping', '15042')
http://allrecipes.com/recipe/15040
('scraping', '15040')
http://allrecipes.com/recipe/87540
('scraping', '87540')
http://allrecipes.com/recipe/15045
Unable to Scrape: 15045
http://allrecipes.com/recipe/48952
('scraping', '48952')
http://allrecipes.com/recipe/7694
('scraping', '7694')
http://allrecipes.com/recipe/73727
Unable to Scrape: 73727
http://allrecipes.com/recipe/25941
('scraping', '25941')
http://allrecipes.com/recipe/90668
Unable to Scrape: 90668
http://allrecipes.com/recipe/70136
('scraping', '70136')
http://allrecipes.com/recipe/72416
('scraping', '72416')
http://allrecipes.com/recipe/10768
Unable to Scrape: 10768
http://allrecipes.com/recipe/76979
('scraping', '76979')
http://allrecipes.com/recipe/88495
('scraping', '88495')
http://allrecipes.com/recipe/39176
Unable to Scrape: 39176
http://allrecipes.com/recipe/32310
Unable to Scrape: 32310
http://allrecipes.com/recipe/55243
Unable to Scrape: 55243
http://allrecipes.com/recipe/32318
('scraping', '32318')
http://allrecipes.com/recipe/18890
Unable to Scrape: 18890
http://allrecipes.com/recipe/12714
Unable to Scrape: 12714
http://allrecipes.com/recipe/12719
Unable to Scrape: 12719
http://allrecipes.com/recipe/10972
Unable to Scrape: 10972
http://allrecipes.com/recipe/10974
('scraping', '10974')
http://allrecipes.com/recipe/8116
Unable to Scrape: 8116
http://allrecipes.com/recipe/77598
('scraping', '77598')
http://allrecipes.com/recipe/26499
Unable to Scrape: 26499
http://allrecipes.com/recipe/25616
Unable to Scrape: 25616
http://allrecipes.com/recipe/15413
('scraping', '15413')
http://allrecipes.com/recipe/46490
Unable to Scrape: 46490
http://allrecipes.com/recipe/21113
Unable to Scrape: 21113
http://allrecipes.com/recipe/14649
('scraping', '14649')
http://allrecipes.com/recipe/21116
Unable to Scrape: 21116
http://allrecipes.com/recipe/21114
Unable to Scrape: 21114
http://allrecipes.com/recipe/46497
Unable to Scrape: 46497
http://allrecipes.com/recipe/16487
('scraping', '16487')
http://allrecipes.com/recipe/21118
Unable to Scrape: 21118
http://allrecipes.com/recipe/21119
Unable to Scrape: 21119
http://allrecipes.com/recipe/22707
Unable to Scrape: 22707
http://allrecipes.com/recipe/22701
Unable to Scrape: 22701
http://allrecipes.com/recipe/75445
('scraping', '75445')
http://allrecipes.com/recipe/69743
('scraping', '69743')
http://allrecipes.com/recipe/77629
Unable to Scrape: 77629
http://allrecipes.com/recipe/77628
Unable to Scrape: 77628
http://allrecipes.com/recipe/11592
('scraping', '11592')
http://allrecipes.com/recipe/11599
Unable to Scrape: 11599
http://allrecipes.com/recipe/17280
('scraping', '17280')
http://allrecipes.com/recipe/17287
Unable to Scrape: 17287
http://allrecipes.com/recipe/17538
Unable to Scrape: 17538
http://allrecipes.com/recipe/17284
Unable to Scrape: 17284
http://allrecipes.com/recipe/17535
('scraping', '17535')
http://allrecipes.com/recipe/17534
Unable to Scrape: 17534
Check point Iter: 2100
http://allrecipes.com/recipe/17288
('scraping', '17288')
http://allrecipes.com/recipe/17531
('scraping', '17531')
http://allrecipes.com/recipe/17533
('scraping', '17533')
http://allrecipes.com/recipe/75194
('scraping', '75194')
http://allrecipes.com/recipe/90250
('scraping', '90250')
http://allrecipes.com/recipe/13446
Unable to Scrape: 13446
http://allrecipes.com/recipe/13441
Unable to Scrape: 13441
http://allrecipes.com/recipe/13440
Unable to Scrape: 13440
http://allrecipes.com/recipe/13443
('scraping', '13443')
http://allrecipes.com/recipe/13442
Unable to Scrape: 13442
http://allrecipes.com/recipe/10628
Unable to Scrape: 10628
http://allrecipes.com/recipe/11622
('scraping', '11622')
http://allrecipes.com/recipe/9401
('scraping', '9401')
http://allrecipes.com/recipe/7983
Unable to Scrape: 7983
http://allrecipes.com/recipe/11625
('scraping', '11625')
http://allrecipes.com/recipe/7988
Unable to Scrape: 7988
http://allrecipes.com/recipe/10622
('scraping', '10622')
http://allrecipes.com/recipe/11628
Unable to Scrape: 11628
http://allrecipes.com/recipe/24173
Unable to Scrape: 24173
http://allrecipes.com/recipe/96945
Unable to Scrape: 96945
http://allrecipes.com/recipe/96944
('scraping', '96944')
http://allrecipes.com/recipe/11977
('scraping', '11977')
http://allrecipes.com/recipe/20530
Unable to Scrape: 20530
http://allrecipes.com/recipe/11974
Unable to Scrape: 11974
http://allrecipes.com/recipe/17759
Unable to Scrape: 17759
http://allrecipes.com/recipe/20648
('scraping', '20648')
http://allrecipes.com/recipe/20644
('scraping', '20644')
http://allrecipes.com/recipe/17756
('scraping', '17756')
http://allrecipes.com/recipe/36016
('scraping', '36016')
http://allrecipes.com/recipe/36549
('scraping', '36549')
http://allrecipes.com/recipe/13191
Unable to Scrape: 13191
http://allrecipes.com/recipe/53298
Unable to Scrape: 53298
http://allrecipes.com/recipe/13195
Unable to Scrape: 13195
http://allrecipes.com/recipe/63876
('scraping', '63876')
http://allrecipes.com/recipe/63875
('scraping', '63875')
http://allrecipes.com/recipe/85042
('scraping', '85042')
http://allrecipes.com/recipe/63871
Unable to Scrape: 63871
http://allrecipes.com/recipe/80561
('scraping', '80561')
http://allrecipes.com/recipe/63879
Unable to Scrape: 63879
http://allrecipes.com/recipe/84643
Unable to Scrape: 84643
http://allrecipes.com/recipe/88350
Unable to Scrape: 88350
http://allrecipes.com/recipe/19873
('scraping', '19873')
http://allrecipes.com/recipe/20463
('scraping', '20463')
http://allrecipes.com/recipe/20465
Unable to Scrape: 20465
http://allrecipes.com/recipe/20464
('scraping', '20464')
http://allrecipes.com/recipe/7325
('scraping', '7325')
http://allrecipes.com/recipe/7326
Unable to Scrape: 7326
http://allrecipes.com/recipe/7327
('scraping', '7327')
http://allrecipes.com/recipe/7322
('scraping', '7322')
http://allrecipes.com/recipe/83919
('scraping', '83919')
http://allrecipes.com/recipe/10080
('scraping', '10080')
http://allrecipes.com/recipe/7329
('scraping', '7329')
http://allrecipes.com/recipe/10083
('scraping', '10083')
http://allrecipes.com/recipe/18446
Unable to Scrape: 18446
http://allrecipes.com/recipe/18447
('scraping', '18447')
http://allrecipes.com/recipe/18440
Unable to Scrape: 18440
http://allrecipes.com/recipe/12955
Unable to Scrape: 12955
http://allrecipes.com/recipe/12956
Unable to Scrape: 12956
http://allrecipes.com/recipe/15670
('scraping', '15670')
http://allrecipes.com/recipe/12951
Unable to Scrape: 12951
http://allrecipes.com/recipe/15672
('scraping', '15672')
http://allrecipes.com/recipe/12953
('scraping', '12953')
http://allrecipes.com/recipe/15678
Unable to Scrape: 15678
http://allrecipes.com/recipe/76360
('scraping', '76360')
http://allrecipes.com/recipe/8225
('scraping', '8225')
http://allrecipes.com/recipe/70908
('scraping', '70908')
http://allrecipes.com/recipe/7067
('scraping', '7067')
http://allrecipes.com/recipe/7065
Unable to Scrape: 7065
http://allrecipes.com/recipe/29575
Unable to Scrape: 29575
http://allrecipes.com/recipe/7061
('scraping', '7061')
http://allrecipes.com/recipe/37764
('scraping', '37764')
http://allrecipes.com/recipe/37765
('scraping', '37765')
http://allrecipes.com/recipe/54740
Unable to Scrape: 54740
http://allrecipes.com/recipe/6960
Unable to Scrape: 6960
http://allrecipes.com/recipe/15901
Unable to Scrape: 15901
http://allrecipes.com/recipe/12489
('scraping', '12489')
http://allrecipes.com/recipe/8153
('scraping', '8153')
http://allrecipes.com/recipe/34413
Unable to Scrape: 34413
http://allrecipes.com/recipe/67681
Unable to Scrape: 67681
http://allrecipes.com/recipe/67682
('scraping', '67682')
http://allrecipes.com/recipe/67683
Unable to Scrape: 67683
http://allrecipes.com/recipe/24397
Unable to Scrape: 24397
http://allrecipes.com/recipe/24396
Unable to Scrape: 24396
http://allrecipes.com/recipe/24390
Unable to Scrape: 24390
http://allrecipes.com/recipe/86733
('scraping', '86733')
http://allrecipes.com/recipe/72859
Unable to Scrape: 72859
http://allrecipes.com/recipe/86734
Unable to Scrape: 86734
http://allrecipes.com/recipe/50240
Unable to Scrape: 50240
http://allrecipes.com/recipe/24398
Unable to Scrape: 24398
http://allrecipes.com/recipe/47519
Unable to Scrape: 47519
http://allrecipes.com/recipe/61688
('scraping', '61688')
http://allrecipes.com/recipe/46435
('scraping', '46435')
http://allrecipes.com/recipe/7220
Unable to Scrape: 7220
http://allrecipes.com/recipe/9989
Unable to Scrape: 9989
http://allrecipes.com/recipe/77366
Unable to Scrape: 77366
http://allrecipes.com/recipe/60188
('scraping', '60188')
http://allrecipes.com/recipe/14505
('scraping', '14505')
http://allrecipes.com/recipe/11027
Unable to Scrape: 11027
http://allrecipes.com/recipe/14506
Unable to Scrape: 14506
http://allrecipes.com/recipe/11021
('scraping', '11021')
Check point Iter: 2200
http://allrecipes.com/recipe/14503
Unable to Scrape: 14503
http://allrecipes.com/recipe/14508
Unable to Scrape: 14508
http://allrecipes.com/recipe/23288
Unable to Scrape: 23288
http://allrecipes.com/recipe/23280
Unable to Scrape: 23280
http://allrecipes.com/recipe/23285
Unable to Scrape: 23285
http://allrecipes.com/recipe/91048
('scraping', '91048')
http://allrecipes.com/recipe/69979
('scraping', '69979')
http://allrecipes.com/recipe/91046
('scraping', '91046')
http://allrecipes.com/recipe/69970
Unable to Scrape: 69970
http://allrecipes.com/recipe/86342
('scraping', '86342')
http://allrecipes.com/recipe/14363
Unable to Scrape: 14363
http://allrecipes.com/recipe/89158
('scraping', '89158')
http://allrecipes.com/recipe/89155
Unable to Scrape: 89155
http://allrecipes.com/recipe/11364
('scraping', '11364')
http://allrecipes.com/recipe/89150
Unable to Scrape: 89150
http://allrecipes.com/recipe/89151
('scraping', '89151')
http://allrecipes.com/recipe/89152
('scraping', '89152')
http://allrecipes.com/recipe/91042
Unable to Scrape: 91042
http://allrecipes.com/recipe/51599
Unable to Scrape: 51599
http://allrecipes.com/recipe/19179
Unable to Scrape: 19179
http://allrecipes.com/recipe/55740
Unable to Scrape: 55740
http://allrecipes.com/recipe/51593
Unable to Scrape: 51593
http://allrecipes.com/recipe/19177
('scraping', '19177')
http://allrecipes.com/recipe/51597
Unable to Scrape: 51597
http://allrecipes.com/recipe/51596
Unable to Scrape: 51596
http://allrecipes.com/recipe/60333
Unable to Scrape: 60333
http://allrecipes.com/recipe/73285
('scraping', '73285')
http://allrecipes.com/recipe/94221
('scraping', '94221')
http://allrecipes.com/recipe/94222
('scraping', '94222')
http://allrecipes.com/recipe/94225
('scraping', '94225')
http://allrecipes.com/recipe/35450
('scraping', '35450')
http://allrecipes.com/recipe/51627
('scraping', '51627')
http://allrecipes.com/recipe/19280
('scraping', '19280')
http://allrecipes.com/recipe/51623
('scraping', '51623')
http://allrecipes.com/recipe/23869
('scraping', '23869')
http://allrecipes.com/recipe/51621
('scraping', '51621')
http://allrecipes.com/recipe/51620
('scraping', '51620')
http://allrecipes.com/recipe/23865
('scraping', '23865')
http://allrecipes.com/recipe/23860
('scraping', '23860')
http://allrecipes.com/recipe/23861
('scraping', '23861')
http://allrecipes.com/recipe/82082
('scraping', '82082')
http://allrecipes.com/recipe/82738
('scraping', '82738')
http://allrecipes.com/recipe/27156
('scraping', '27156')
http://allrecipes.com/recipe/27151
('scraping', '27151')
http://allrecipes.com/recipe/65671
('scraping', '65671')
http://allrecipes.com/recipe/25137
('scraping', '25137')
http://allrecipes.com/recipe/25138
('scraping', '25138')
http://allrecipes.com/recipe/69352
('scraping', '69352')
http://allrecipes.com/recipe/60480
('scraping', '60480')
http://allrecipes.com/recipe/25428
('scraping', '25428')
http://allrecipes.com/recipe/25422
('scraping', '25422')
http://allrecipes.com/recipe/46065
('scraping', '46065')
http://allrecipes.com/recipe/80770
('scraping', '80770')
http://allrecipes.com/recipe/21207
('scraping', '21207')
http://allrecipes.com/recipe/25310
('scraping', '25310')
http://allrecipes.com/recipe/6683
('scraping', '6683')
http://allrecipes.com/recipe/53197
('scraping', '53197')
http://allrecipes.com/recipe/53194
('scraping', '53194')
http://allrecipes.com/recipe/85022
('scraping', '85022')
http://allrecipes.com/recipe/16837
('scraping', '16837')
http://allrecipes.com/recipe/16344
('scraping', '16344')
http://allrecipes.com/recipe/16347
('scraping', '16347')
http://allrecipes.com/recipe/16834
('scraping', '16834')
http://allrecipes.com/recipe/19821
('scraping', '19821')
http://allrecipes.com/recipe/16342
('scraping', '16342')
http://allrecipes.com/recipe/93907
('scraping', '93907')
http://allrecipes.com/recipe/19829
('scraping', '19829')
http://allrecipes.com/recipe/7843
('scraping', '7843')
http://allrecipes.com/recipe/7842
('scraping', '7842')
http://allrecipes.com/recipe/12104
('scraping', '12104')
http://allrecipes.com/recipe/12102
('scraping', '12102')
http://allrecipes.com/recipe/26353
('scraping', '26353')
http://allrecipes.com/recipe/12109
('scraping', '12109')
http://allrecipes.com/recipe/9616
('scraping', '9616')
http://allrecipes.com/recipe/95680
('scraping', '95680')
http://allrecipes.com/recipe/9344
('scraping', '9344')
http://allrecipes.com/recipe/9613
('scraping', '9613')
http://allrecipes.com/recipe/57300
('scraping', '57300')
http://allrecipes.com/recipe/9347
('scraping', '9347')
http://allrecipes.com/recipe/9349
('scraping', '9349')
http://allrecipes.com/recipe/10165
('scraping', '10165')
http://allrecipes.com/recipe/10163
('scraping', '10163')
http://allrecipes.com/recipe/10161
('scraping', '10161')
http://allrecipes.com/recipe/9619
('scraping', '9619')
http://allrecipes.com/recipe/9664
('scraping', '9664')
http://allrecipes.com/recipe/21256
('scraping', '21256')
http://allrecipes.com/recipe/21251
('scraping', '21251')
http://allrecipes.com/recipe/21250
('scraping', '21250')
http://allrecipes.com/recipe/21252
('scraping', '21252')
http://allrecipes.com/recipe/21258
('scraping', '21258')
http://allrecipes.com/recipe/84074
('scraping', '84074')
http://allrecipes.com/recipe/37579
('scraping', '37579')
http://allrecipes.com/recipe/54970
('scraping', '54970')
http://allrecipes.com/recipe/14882
('scraping', '14882')
http://allrecipes.com/recipe/37570
('scraping', '37570')
http://allrecipes.com/recipe/37577
('scraping', '37577')
http://allrecipes.com/recipe/54976
('scraping', '54976')
http://allrecipes.com/recipe/48308
('scraping', '48308')
http://allrecipes.com/recipe/45269
('scraping', '45269')
http://allrecipes.com/recipe/85705
('scraping', '85705')
Check point Iter: 2300
http://allrecipes.com/recipe/85704
('scraping', '85704')
http://allrecipes.com/recipe/85706
('scraping', '85706')
http://allrecipes.com/recipe/86506
('scraping', '86506')
http://allrecipes.com/recipe/14081
('scraping', '14081')
http://allrecipes.com/recipe/14084
('scraping', '14084')
http://allrecipes.com/recipe/49439
('scraping', '49439')
http://allrecipes.com/recipe/68753
('scraping', '68753')
http://allrecipes.com/recipe/68022
('scraping', '68022')
http://allrecipes.com/recipe/13274
('scraping', '13274')
http://allrecipes.com/recipe/13275
('scraping', '13275')
http://allrecipes.com/recipe/13278
('scraping', '13278')
http://allrecipes.com/recipe/14031
('scraping', '14031')
http://allrecipes.com/recipe/78485
('scraping', '78485')
http://allrecipes.com/recipe/44355
('scraping', '44355')
http://allrecipes.com/recipe/14033
('scraping', '14033')
http://allrecipes.com/recipe/14265
('scraping', '14265')
http://allrecipes.com/recipe/14266
('scraping', '14266')
http://allrecipes.com/recipe/14262
('scraping', '14262')
http://allrecipes.com/recipe/14263
('scraping', '14263')
http://allrecipes.com/recipe/45883
('scraping', '45883')
http://allrecipes.com/recipe/76775
('scraping', '76775')
http://allrecipes.com/recipe/62221
('scraping', '62221')
http://allrecipes.com/recipe/38754
('scraping', '38754')
http://allrecipes.com/recipe/39124
('scraping', '39124')
http://allrecipes.com/recipe/20079
('scraping', '20079')
http://allrecipes.com/recipe/37386
('scraping', '37386')
http://allrecipes.com/recipe/30504
('scraping', '30504')
http://allrecipes.com/recipe/18166
('scraping', '18166')
http://allrecipes.com/recipe/18165
('scraping', '18165')
http://allrecipes.com/recipe/18160
('scraping', '18160')
http://allrecipes.com/recipe/55703
('scraping', '55703')
http://allrecipes.com/recipe/38283
('scraping', '38283')
http://allrecipes.com/recipe/54679
('scraping', '54679')
http://allrecipes.com/recipe/16784
('scraping', '16784')
http://allrecipes.com/recipe/83706
('scraping', '83706')
http://allrecipes.com/recipe/37203
('scraping', '37203')
http://allrecipes.com/recipe/62585
('scraping', '62585')
http://allrecipes.com/recipe/47657
('scraping', '47657')
http://allrecipes.com/recipe/11101
('scraping', '11101')
http://allrecipes.com/recipe/23675
('scraping', '23675')
http://allrecipes.com/recipe/23677
('scraping', '23677')
http://allrecipes.com/recipe/48931
('scraping', '48931')
http://allrecipes.com/recipe/48932
('scraping', '48932')
http://allrecipes.com/recipe/37202
('scraping', '37202')
http://allrecipes.com/recipe/15029
('scraping', '15029')
http://allrecipes.com/recipe/25966
('scraping', '25966')
http://allrecipes.com/recipe/25965
('scraping', '25965')
http://allrecipes.com/recipe/25964
('scraping', '25964')
http://allrecipes.com/recipe/76179
('scraping', '76179')
http://allrecipes.com/recipe/15020
('scraping', '15020')
http://allrecipes.com/recipe/15023
('scraping', '15023')
http://allrecipes.com/recipe/83975
('scraping', '83975')
http://allrecipes.com/recipe/10792
('scraping', '10792')
http://allrecipes.com/recipe/73875
('scraping', '73875')
http://allrecipes.com/recipe/39486
('scraping', '39486')
http://allrecipes.com/recipe/32482
('scraping', '32482')
http://allrecipes.com/recipe/32485
('scraping', '32485')
http://allrecipes.com/recipe/78868
('scraping', '78868')
http://allrecipes.com/recipe/8453
('scraping', '8453')
http://allrecipes.com/recipe/8452
('scraping', '8452')
http://allrecipes.com/recipe/34620
('scraping', '34620')
http://allrecipes.com/recipe/76999
('scraping', '76999')
http://allrecipes.com/recipe/76995
('scraping', '76995')
http://allrecipes.com/recipe/76992
('scraping', '76992')
http://allrecipes.com/recipe/76990
('scraping', '76990')
http://allrecipes.com/recipe/8458
('scraping', '8458')
http://allrecipes.com/recipe/39154
('scraping', '39154')
http://allrecipes.com/recipe/50050
('scraping', '50050')
http://allrecipes.com/recipe/7542
('scraping', '7542')
http://allrecipes.com/recipe/50501
('scraping', '50501')
http://allrecipes.com/recipe/92624
('scraping', '92624')
http://allrecipes.com/recipe/16138
('scraping', '16138')
http://allrecipes.com/recipe/19615
('scraping', '19615')
http://allrecipes.com/recipe/19610
('scraping', '19610')
http://allrecipes.com/recipe/8031
('scraping', '8031')
http://allrecipes.com/recipe/12732
('scraping', '12732')
http://allrecipes.com/recipe/64820
('scraping', '64820')
http://allrecipes.com/recipe/10994
('scraping', '10994')
http://allrecipes.com/recipe/24614
('scraping', '24614')
http://allrecipes.com/recipe/24613
('scraping', '24613')
http://allrecipes.com/recipe/25638
('scraping', '25638')
http://allrecipes.com/recipe/25636
('scraping', '25636')
http://allrecipes.com/recipe/25635
('scraping', '25635')
http://allrecipes.com/recipe/24618
('scraping', '24618')
http://allrecipes.com/recipe/65337
('scraping', '65337')
http://allrecipes.com/recipe/65442
('scraping', '65442')
http://allrecipes.com/recipe/24949
('scraping', '24949')
http://allrecipes.com/recipe/24946
('scraping', '24946')
http://allrecipes.com/recipe/88548
('scraping', '88548')
http://allrecipes.com/recipe/24944
('scraping', '24944')
http://allrecipes.com/recipe/21134
('scraping', '21134')
http://allrecipes.com/recipe/21137
('scraping', '21137')
http://allrecipes.com/recipe/67049
('scraping', '67049')
http://allrecipes.com/recipe/22726
('scraping', '22726')
http://allrecipes.com/recipe/22727
('scraping', '22727')
http://allrecipes.com/recipe/77649
('scraping', '77649')
http://allrecipes.com/recipe/77648
('scraping', '77648')
http://allrecipes.com/recipe/31813
('scraping', '31813')
http://allrecipes.com/recipe/31810
('scraping', '31810')
http://allrecipes.com/recipe/31811
('scraping', '31811')
Check point Iter: 2400
http://allrecipes.com/recipe/86883
('scraping', '86883')
http://allrecipes.com/recipe/77646
('scraping', '77646')
http://allrecipes.com/recipe/8528
('scraping', '8528')
http://allrecipes.com/recipe/96501
('scraping', '96501')
http://allrecipes.com/recipe/54814
('scraping', '54814')
http://allrecipes.com/recipe/17518
('scraping', '17518')
http://allrecipes.com/recipe/17513
('scraping', '17513')
http://allrecipes.com/recipe/17512
('scraping', '17512')
http://allrecipes.com/recipe/17510
('scraping', '17510')
http://allrecipes.com/recipe/17517
('scraping', '17517')
http://allrecipes.com/recipe/12581
('scraping', '12581')
http://allrecipes.com/recipe/17514
('scraping', '17514')
http://allrecipes.com/recipe/13468
('scraping', '13468')
http://allrecipes.com/recipe/90908
('scraping', '90908')
http://allrecipes.com/recipe/25095
('scraping', '25095')
http://allrecipes.com/recipe/25094
('scraping', '25094')
http://allrecipes.com/recipe/13463
('scraping', '13463')
http://allrecipes.com/recipe/90906
('scraping', '90906')
http://allrecipes.com/recipe/90901
('scraping', '90901')
http://allrecipes.com/recipe/70032
('scraping', '70032')
http://allrecipes.com/recipe/13465
('scraping', '13465')
http://allrecipes.com/recipe/90902
('scraping', '90902')
http://allrecipes.com/recipe/11649
('scraping', '11649')
http://allrecipes.com/recipe/9428
('scraping', '9428')
http://allrecipes.com/recipe/11641
('scraping', '11641')
http://allrecipes.com/recipe/11647
('scraping', '11647')
http://allrecipes.com/recipe/17776
('scraping', '17776')
http://allrecipes.com/recipe/17773
('scraping', '17773')
http://allrecipes.com/recipe/58820
('scraping', '58820')
http://allrecipes.com/recipe/14782
('scraping', '14782')
http://allrecipes.com/recipe/20668
('scraping', '20668')
http://allrecipes.com/recipe/18200
('scraping', '18200')
http://allrecipes.com/recipe/20663
('scraping', '20663')
http://allrecipes.com/recipe/21397
('scraping', '21397')
http://allrecipes.com/recipe/63898
('scraping', '63898')
http://allrecipes.com/recipe/80019
('scraping', '80019')
http://allrecipes.com/recipe/20003
('scraping', '20003')
http://allrecipes.com/recipe/63897
('scraping', '63897')
http://allrecipes.com/recipe/63896
('scraping', '63896')
http://allrecipes.com/recipe/80542
('scraping', '80542')
http://allrecipes.com/recipe/63892
('scraping', '63892')
http://allrecipes.com/recipe/20915
('scraping', '20915')
http://allrecipes.com/recipe/20445
('scraping', '20445')
http://allrecipes.com/recipe/20441
('scraping', '20441')
http://allrecipes.com/recipe/20919
('scraping', '20919')
http://allrecipes.com/recipe/20449
('scraping', '20449')
http://allrecipes.com/recipe/20448
('scraping', '20448')
http://allrecipes.com/recipe/70697
('scraping', '70697')
http://allrecipes.com/recipe/10243
('scraping', '10243')
http://allrecipes.com/recipe/7003
('scraping', '7003')
http://allrecipes.com/recipe/9289
('scraping', '9289')
http://allrecipes.com/recipe/7304
('scraping', '7304')
http://allrecipes.com/recipe/9285
('scraping', '9285')
http://allrecipes.com/recipe/7308
('scraping', '7308')
http://allrecipes.com/recipe/9286
('scraping', '9286')
http://allrecipes.com/recipe/11913
('scraping', '11913')
http://allrecipes.com/recipe/54507
('scraping', '54507')
http://allrecipes.com/recipe/18425
('scraping', '18425')
http://allrecipes.com/recipe/15612
('scraping', '15612')
http://allrecipes.com/recipe/12931
('scraping', '12931')
http://allrecipes.com/recipe/15616
('scraping', '15616')
http://allrecipes.com/recipe/12937
('scraping', '12937')
http://allrecipes.com/recipe/76343
('scraping', '76343')
http://allrecipes.com/recipe/12938
('scraping', '12938')
http://allrecipes.com/recipe/53416
('scraping', '53416')
http://allrecipes.com/recipe/53417
('scraping', '53417')
http://allrecipes.com/recipe/53415
('scraping', '53415')
http://allrecipes.com/recipe/10202
('scraping', '10202')
http://allrecipes.com/recipe/10203
('scraping', '10203')
http://allrecipes.com/recipe/10200
('scraping', '10200')
http://allrecipes.com/recipe/10201
('scraping', '10201')
http://allrecipes.com/recipe/7048
('scraping', '7048')
http://allrecipes.com/recipe/37705
('scraping', '37705')
http://allrecipes.com/recipe/63328
('scraping', '63328')
http://allrecipes.com/recipe/36267
('scraping', '36267')
http://allrecipes.com/recipe/37749
('scraping', '37749')
http://allrecipes.com/recipe/37218
('scraping', '37218')
http://allrecipes.com/recipe/37745
('scraping', '37745')
http://allrecipes.com/recipe/37214
('scraping', '37214')
http://allrecipes.com/recipe/18393
('scraping', '18393')
http://allrecipes.com/recipe/37740
('scraping', '37740')
http://allrecipes.com/recipe/21536
('scraping', '21536')
http://allrecipes.com/recipe/37211
('scraping', '37211')
http://allrecipes.com/recipe/8608
('scraping', '8608')
http://allrecipes.com/recipe/15929
('scraping', '15929')
http://allrecipes.com/recipe/6989
('scraping', '6989')
http://allrecipes.com/recipe/49860
('scraping', '49860')
http://allrecipes.com/recipe/15926
('scraping', '15926')
http://allrecipes.com/recipe/6982
('scraping', '6982')
http://allrecipes.com/recipe/15922
('scraping', '15922')
http://allrecipes.com/recipe/14695
('scraping', '14695')
http://allrecipes.com/recipe/14694
('scraping', '14694')
http://allrecipes.com/recipe/14696
('scraping', '14696')
http://allrecipes.com/recipe/66314
('scraping', '66314')
http://allrecipes.com/recipe/14693
('scraping', '14693')
http://allrecipes.com/recipe/24376
('scraping', '24376')
http://allrecipes.com/recipe/9106
('scraping', '9106')
http://allrecipes.com/recipe/68925
('scraping', '68925')
http://allrecipes.com/recipe/13707
('scraping', '13707')
http://allrecipes.com/recipe/47821
('scraping', '47821')
Check point Iter: 2500
http://allrecipes.com/recipe/77344
('scraping', '77344')
http://allrecipes.com/recipe/77340
('scraping', '77340')
http://allrecipes.com/recipe/77349
('scraping', '77349')
http://allrecipes.com/recipe/50193
('scraping', '50193')
http://allrecipes.com/recipe/11001
('scraping', '11001')
http://allrecipes.com/recipe/14520
('scraping', '14520')
http://allrecipes.com/recipe/11006
('scraping', '53178')
http://allrecipes.com/recipe/90591
('scraping', '90591')
http://allrecipes.com/recipe/53172
('scraping', '53172')
http://allrecipes.com/recipe/24762
('scraping', '24762')
http://allrecipes.com/recipe/7829
('scraping', '7829')
http://allrecipes.com/recipe/21093
('scraping', '21093')
http://allrecipes.com/recipe/42298
('scraping', '42298')
http://allrecipes.com/recipe/32124
('scraping', '32124')
http://allrecipes.com/recipe/19809
('scraping', '19809')
http://allrecipes.com/recipe/16368
('scraping', '16368')
http://allrecipes.com/recipe/7825
('scraping', '7825')
http://allrecipes.com/recipe/21098
('scraping', '21098')
http://allrecipes.com/recipe/97247
('scraping', '97247')
http://allrecipes.com/recipe/97244
('scraping', '97244')
http://allrecipes.com/recipe/52598
('scraping', '52598')
http://allrecipes.com/recipe/26267
('scraping', '26267')
http://allrecipes.com/recipe/26260
('scraping', '26260')
http://allrecipes.com/recipe/17182
('scraping', '17182')
http://allrecipes.com/recipe/85496
('scraping', '85496')
http://allrecipes.com/recipe/85493
('scraping', '85493')
http://allrecipes.com/recipe/9369
('scraping', '9369')
http://allrecipes.com/recipe/9364
('scraping', '9364')
http://allrecipes.com/recipe/9362
('scraping', '9362')
http://allrecipes.com/recipe/9363
('scraping', '9363')
http://allrecipes.com/recipe/9361
('scraping', '9361')
http://allrecipes.com/recipe/8981
('scraping', '8981')
http://allrecipes.com/recipe/8988
('scraping', '8988')
http://allrecipes.com/recipe/75256
('scraping', '75256')
http://allrecipes.com/recipe/45245
('scraping', '45245')
http://allrecipes.com/recipe/85720
('scraping', '85720')
http://allrecipes.com/recipe/44115
('scraping', '44115')
http://allrecipes.com/recipe/14063
('scraping', '14063')
http://allrecipes.com/recipe/41096
('scraping', '41096')
http://allrecipes.com/recipe/68002
('scraping', '68002')
http://allrecipes.com/recipe/76809
('scraping', '76809')
http://allrecipes.com/recipe/90736
('scraping', '90736')
http://allrecipes.com/recipe/90041
('scraping', '90041')
http://allrecipes.com/recipe/90730
('scraping', '90730')
http://allrecipes.com/recipe/90731
('scraping', '90731')
http://allrecipes.com/recipe/13256
('scraping', '13256')
http://allrecipes.com/recipe/70759
('scraping', '70759')
http://allrecipes.com/recipe/90738
('scraping', '90738')
Check point Iter: 2600
http://allrecipes.com/recipe/90739
('scraping', '90739')
http://allrecipes.com/recipe/18980
('scraping', '18980')
http://allrecipes.com/recipe/14208
('scraping', '14208')
http://allrecipes.com/recipe/14202
('scraping', '14202')
http://allrecipes.com/recipe/87387
('scraping', '87387')
http://allrecipes.com/recipe/20059
('scraping', '20059')
http://allrecipes.com/recipe/20054
('scraping', '20054')
http://allrecipes.com/recipe/83548
('scraping', '83548')
http://allrecipes.com/recipe/18189
('scraping', '18189')
http://allrecipes.com/recipe/78753
('scraping', '78753')
http://allrecipes.com/recipe/18187
('scraping', '18187')
http://allrecipes.com/recipe/89721
('scraping', '89721')
http://allrecipes.com/recipe/14567
('scraping', '14567')
http://allrecipes.com/recipe/40857
('scraping', '40857')
http://allrecipes.com/recipe/89683
('scraping', '89683')
http://allrecipes.com/recipe/14563
('scraping', '14563')
http://allrecipes.com/recipe/83095
('scraping', '83095')
http://allrecipes.com/recipe/66129
('scraping', '66129')
http://allrecipes.com/recipe/23129
('scraping', '23129')
http://allrecipes.com/recipe/23659
('scraping', '23659')
http://allrecipes.com/recipe/23655
('scraping', '23655')
http://allrecipes.com/recipe/18021
('scraping', '18021')
http://allrecipes.com/recipe/66124
('scraping', '66124')
http://allrecipes.com/recipe/8290
('scraping', '8290')
http://allrecipes.com/recipe/15005
('scraping', '15005')
http://allrecipes.com/recipe/15556
('scraping', '15556')
http://allrecipes.com/recipe/8296
('scraping', '8296')
http://allrecipes.com/recipe/8298
('scraping', '8298')
http://allrecipes.com/recipe/18904
('scraping', '18904')
http://allrecipes.com/recipe/73855
('scraping', '73855')
http://allrecipes.com/recipe/15560
('scraping', '15560')
http://allrecipes.com/recipe/25986
('scraping', '25986')
http://allrecipes.com/recipe/92754
('scraping', '92754')
http://allrecipes.com/recipe/18028
('scraping', '18028')
http://allrecipes.com/recipe/72326
('scraping', '72326')
http://allrecipes.com/recipe/72451
('scraping', '72451')
http://allrecipes.com/recipe/32469
('scraping', '32469')
http://allrecipes.com/recipe/82389
('scraping', '82389')
http://allrecipes.com/recipe/8478
('scraping', '8478')
http://allrecipes.com/recipe/7567
('scraping', '7567')
http://allrecipes.com/recipe/92602
('scraping', '92602')
http://allrecipes.com/recipe/7561
('scraping', '7561')
http://allrecipes.com/recipe/7568
('scraping', '7568')
http://allrecipes.com/recipe/24581
('scraping', '24581')
http://allrecipes.com/recipe/50030
('scraping', '50030')
http://allrecipes.com/recipe/35806
('scraping', '35806')
http://allrecipes.com/recipe/19326
('scraping', '19326')
http://allrecipes.com/recipe/19324
('scraping', '19324')
http://allrecipes.com/recipe/32605
('scraping', '32605')
http://allrecipes.com/recipe/84832
('scraping', '84832')
http://allrecipes.com/recipe/22529
('scraping', '22529')
http://allrecipes.com/recipe/8244
('scraping', '8244')
http://allrecipes.com/recipe/22290
('scraping', '22290')
http://allrecipes.com/recipe/22292
('scraping', '22292')
http://allrecipes.com/recipe/13897
('scraping', '13897')
http://allrecipes.com/recipe/13895
('scraping', '13895')
http://allrecipes.com/recipe/13892
('scraping', '13892')
http://allrecipes.com/recipe/26459
('scraping', '26459')
http://allrecipes.com/recipe/69832
('scraping', '69832')
http://allrecipes.com/recipe/24639
('scraping', '24639')
http://allrecipes.com/recipe/24632
('scraping', '24632')
http://allrecipes.com/recipe/20614
('scraping', '20614')
http://allrecipes.com/recipe/75409
('scraping', '75409')
http://allrecipes.com/recipe/22748
('scraping', '22748')
http://allrecipes.com/recipe/37022
('scraping', '37022')
http://allrecipes.com/recipe/38979
('scraping', '38979')
http://allrecipes.com/recipe/22740
('scraping', '22740')
http://allrecipes.com/recipe/22747
('scraping', '22747')
http://allrecipes.com/recipe/8129
('scraping', '8129')
http://allrecipes.com/recipe/18882
('scraping', '18882')
http://allrecipes.com/recipe/69780
('scraping', '69780')
http://allrecipes.com/recipe/16116
('scraping', '16116')
http://allrecipes.com/recipe/32069
('scraping', '32069')
http://allrecipes.com/recipe/16110
('scraping', '16110')
http://allrecipes.com/recipe/16119
('scraping', '16119')
http://allrecipes.com/recipe/17572
('scraping', '17572')
http://allrecipes.com/recipe/17575
('scraping', '17575')
http://allrecipes.com/recipe/17578
('scraping', '17578')
http://allrecipes.com/recipe/90879
('scraping', '90879')
http://allrecipes.com/recipe/13403
('scraping', '13403')
http://allrecipes.com/recipe/13404
('scraping', '13404')
http://allrecipes.com/recipe/11667
('scraping', '11667')
http://allrecipes.com/recipe/11664
('scraping', '11664')
http://allrecipes.com/recipe/11662
('scraping', '11662')
http://allrecipes.com/recipe/24964
('scraping', '24964')
http://allrecipes.com/recipe/24961
('scraping', '24961')
http://allrecipes.com/recipe/20603
('scraping', '20603')
http://allrecipes.com/recipe/20602
('scraping', '20602')
http://allrecipes.com/recipe/20604
('scraping', '20604')
http://allrecipes.com/recipe/20609
('scraping', '20609')
http://allrecipes.com/recipe/52780
('scraping', '52780')
http://allrecipes.com/recipe/25215
('scraping', '25215')
http://allrecipes.com/recipe/99381
('scraping', '99381')
http://allrecipes.com/recipe/25212
('scraping', '25212')
http://allrecipes.com/recipe/64376
('scraping', '64376')
http://allrecipes.com/recipe/74317
('scraping', '74317')
http://allrecipes.com/recipe/51062
('scraping', '51062')
http://allrecipes.com/recipe/74318
('scraping', '74318')
http://allrecipes.com/recipe/42756
('scraping', '42756')
http://allrecipes.com/recipe/42977
('scraping', '42977')
Check point Iter: 2700
http://allrecipes.com/recipe/85005
('scraping', '85005')
http://allrecipes.com/recipe/20932
('scraping', '20932')
http://allrecipes.com/recipe/45761
('scraping', '45761')
http://allrecipes.com/recipe/20939
('scraping', '20939')
http://allrecipes.com/recipe/41402
('scraping', '41402')
http://allrecipes.com/recipe/83950
('scraping', '83950')
http://allrecipes.com/recipe/83957
('scraping', '83957')
http://allrecipes.com/recipe/83959
('scraping', '83959')
http://allrecipes.com/recipe/71363
('scraping', '71363')
http://allrecipes.com/recipe/27194
('scraping', '27194')
http://allrecipes.com/recipe/12314
('scraping', '12314')
http://allrecipes.com/recipe/54839
('scraping', '54839')
http://allrecipes.com/recipe/12310
('scraping', '12310')
http://allrecipes.com/recipe/12311
('scraping', '12311')
http://allrecipes.com/recipe/18402
('scraping', '18402')
http://allrecipes.com/recipe/18403
('scraping', '18403')
http://allrecipes.com/recipe/11931
('scraping', '11931')
http://allrecipes.com/recipe/33152
('scraping', '33152')
http://allrecipes.com/recipe/12910
('scraping', '12910')
http://allrecipes.com/recipe/12914
('scraping', '12914')
http://allrecipes.com/recipe/12916
('scraping', '12916')
http://allrecipes.com/recipe/12917
('scraping', '12917')
http://allrecipes.com/recipe/7023
('scraping', '7023')
http://allrecipes.com/recipe/9006
('scraping', '9006')
http://allrecipes.com/recipe/10224
('scraping', '10224')
http://allrecipes.com/recipe/10226
('scraping', '10226')
http://allrecipes.com/recipe/53437
('scraping', '53437')
http://allrecipes.com/recipe/10221
('scraping', '10221')
http://allrecipes.com/recipe/24036
('scraping', '24036')
http://allrecipes.com/recipe/24037
('scraping', '24037')
http://allrecipes.com/recipe/24034
('scraping', '24034')
http://allrecipes.com/recipe/24035
('scraping', '24035')
http://allrecipes.com/recipe/54923
('scraping', '54923')
http://allrecipes.com/recipe/21519
('scraping', '21519')
http://allrecipes.com/recipe/9832
('scraping', '9832')
http://allrecipes.com/recipe/68494
('scraping', '68494')
http://allrecipes.com/recipe/68495
('scraping', '68495')
http://allrecipes.com/recipe/68497
('scraping', '68497')
http://allrecipes.com/recipe/54783
('scraping', '54783')
http://allrecipes.com/recipe/51123
('scraping', '51123')
http://allrecipes.com/recipe/54786
('scraping', '54786')
http://allrecipes.com/recipe/15948
('scraping', '15948')
http://allrecipes.com/recipe/15943
('scraping', '15943')
http://allrecipes.com/recipe/48161
('scraping', '48161')
http://allrecipes.com/recipe/15944
('scraping', '15944')
http://allrecipes.com/recipe/7591
('scraping', '7591')
http://allrecipes.com/recipe/7790
('scraping', '7790')
http://allrecipes.com/recipe/7797
('scraping', '7797')
http://allrecipes.com/recipe/86860
('scraping', '86860')
http://allrecipes.com/recipe/24359
('scraping', '24359')
http://allrecipes.com/recipe/71899
('scraping', '71899')
http://allrecipes.com/recipe/80011
('scraping', '80011')
http://allrecipes.com/recipe/66333
('scraping', '66333')
http://allrecipes.com/recipe/24356
('scraping', '24356')
http://allrecipes.com/recipe/24355
('scraping', '24355')
http://allrecipes.com/recipe/77323
('scraping', '77323')
http://allrecipes.com/recipe/77324
('scraping', '77324')
http://allrecipes.com/recipe/77325
('scraping', '77325')
http://allrecipes.com/recipe/14549
('scraping', '14549')
http://allrecipes.com/recipe/11063
('scraping', '11063')
http://allrecipes.com/recipe/11062
('scraping', '11062')
http://allrecipes.com/recipe/11064
('scraping', '11064')
http://allrecipes.com/recipe/72668
('scraping', '72668')
http://allrecipes.com/recipe/34450
('scraping', '34450')
http://allrecipes.com/recipe/15490
('scraping', '15490')
http://allrecipes.com/recipe/91728
('scraping', '91728')
http://allrecipes.com/recipe/91726
('scraping', '91726')
http://allrecipes.com/recipe/91727
('scraping', '91727')
http://allrecipes.com/recipe/17890
('scraping', '17890')
http://allrecipes.com/recipe/91725
('scraping', '91725')
http://allrecipes.com/recipe/91722
('scraping', '91722')
http://allrecipes.com/recipe/38126
('scraping', '38126')
http://allrecipes.com/recipe/13791
('scraping', '13791')
http://allrecipes.com/recipe/73139
('scraping', '73139')
http://allrecipes.com/recipe/13795
('scraping', '13795')
http://allrecipes.com/recipe/13796
('scraping', '13796')
http://allrecipes.com/recipe/13798
('scraping', '13798')
http://allrecipes.com/recipe/77493
('scraping', '77493')
http://allrecipes.com/recipe/11321
('scraping', '11321')
http://allrecipes.com/recipe/11326
('scraping', '11326')
http://allrecipes.com/recipe/11324
('scraping', '11324')
http://allrecipes.com/recipe/89441
('scraping', '89441')
http://allrecipes.com/recipe/11328
('scraping', '11328')
http://allrecipes.com/recipe/91890
('scraping', '91890')
http://allrecipes.com/recipe/19134
('scraping', '19134')
http://allrecipes.com/recipe/19132
('scraping', '19132')
http://allrecipes.com/recipe/91549
('scraping', '91549')
http://allrecipes.com/recipe/88869
('scraping', '88869')
http://allrecipes.com/recipe/16356
('scraping', '16356')
http://allrecipes.com/recipe/23356
('scraping', '23356')
http://allrecipes.com/recipe/23822
('scraping', '23822')
http://allrecipes.com/recipe/23355
('scraping', '23355')
http://allrecipes.com/recipe/23352
('scraping', '23352')
http://allrecipes.com/recipe/23353
('scraping', '23353')
http://allrecipes.com/recipe/11490
('scraping', '11490')
http://allrecipes.com/recipe/11492
('scraping', '11492')
http://allrecipes.com/recipe/11494
('scraping', '11494')
http://allrecipes.com/recipe/8086
('scraping', '8086')
http://allrecipes.com/recipe/27114
('scraping', '27114')
http://allrecipes.com/recipe/27116
('scraping', '27116')
Check point Iter: 2800
http://allrecipes.com/recipe/8083
('scraping', '8083')
http://allrecipes.com/recipe/22198
('scraping', '22198')
http://allrecipes.com/recipe/22197
('scraping', '22197')
http://allrecipes.com/recipe/22191
('scraping', '22191')
http://allrecipes.com/recipe/25178
('scraping', '25178')
http://allrecipes.com/recipe/25179
('scraping', '25179')
http://allrecipes.com/recipe/74097
('scraping', '74097')
http://allrecipes.com/recipe/25170
('scraping', '25170')
http://allrecipes.com/recipe/25173
('scraping', '25173')
http://allrecipes.com/recipe/25175
('scraping', '25175')
http://allrecipes.com/recipe/42564
('scraping', '42564')
http://allrecipes.com/recipe/42566
('scraping', '42566')
http://allrecipes.com/recipe/74411
('scraping', '74411')
http://allrecipes.com/recipe/74410
('scraping', '74410')
http://allrecipes.com/recipe/16566
('scraping', '16566')
http://allrecipes.com/recipe/42568
('scraping', '42568')
http://allrecipes.com/recipe/16560
('scraping', '16560')
http://allrecipes.com/recipe/12677
('scraping', '12677')
http://allrecipes.com/recipe/10812
('scraping', '10812')
http://allrecipes.com/recipe/19881
('scraping', '19881')
http://allrecipes.com/recipe/7803
('scraping', '7803')
http://allrecipes.com/recipe/7804
('scraping', '7804')
http://allrecipes.com/recipe/95533
('scraping', '95533')
http://allrecipes.com/recipe/95531
('scraping', '95531')
http://allrecipes.com/recipe/16308
('scraping', '16308')
http://allrecipes.com/recipe/65766
('scraping', '65766')
http://allrecipes.com/recipe/21078
('scraping', '21078')
http://allrecipes.com/recipe/16301
('scraping', '16301')
http://allrecipes.com/recipe/16300
('scraping', '16300')
http://allrecipes.com/recipe/16302
('scraping', '16302')
http://allrecipes.com/recipe/16304
('scraping', '16304')
http://allrecipes.com/recipe/21073
('scraping', '21073')
http://allrecipes.com/recipe/86297
('scraping', '86297')
http://allrecipes.com/recipe/26247
('scraping', '26247')
http://allrecipes.com/recipe/26246
('scraping', '26246')
http://allrecipes.com/recipe/26244
('scraping', '26244')
http://allrecipes.com/recipe/55683
('scraping', '55683')
http://allrecipes.com/recipe/60198
('scraping', '60198')
http://allrecipes.com/recipe/90295
('scraping', '90295')
http://allrecipes.com/recipe/45329
('scraping', '45329')
http://allrecipes.com/recipe/21218
('scraping', '21218')
http://allrecipes.com/recipe/12964
('scraping', '12964')
http://allrecipes.com/recipe/21211
('scraping', '21211')
http://allrecipes.com/recipe/21210
('scraping', '21210')
http://allrecipes.com/recipe/21215
('scraping', '21215')
http://allrecipes.com/recipe/37531
('scraping', '37531')
http://allrecipes.com/recipe/21216
('scraping', '21216')
http://allrecipes.com/recipe/84038
('scraping', '84038')
http://allrecipes.com/recipe/75238
('scraping', '75238')
http://allrecipes.com/recipe/45513
('scraping', '45513')
http://allrecipes.com/recipe/75234
('scraping', '75234')
http://allrecipes.com/recipe/81026
('scraping', '81026')
http://allrecipes.com/recipe/14044
('scraping', '14044')
http://allrecipes.com/recipe/14047
('scraping', '14047')
http://allrecipes.com/recipe/14040
('scraping', '14040')
http://allrecipes.com/recipe/85741
('scraping', '85741')
http://allrecipes.com/recipe/80992
('scraping', '80992')
http://allrecipes.com/recipe/85742
('scraping', '85742')
http://allrecipes.com/recipe/49478
('scraping', '49478')
http://allrecipes.com/recipe/62595
('scraping', '62595')
http://allrecipes.com/recipe/90718
('scraping', '90718')
http://allrecipes.com/recipe/13233
('scraping', '13233')
http://allrecipes.com/recipe/13230
('scraping', '13230')
http://allrecipes.com/recipe/90717
('scraping', '90717')
http://allrecipes.com/recipe/90710
('scraping', '90710')
http://allrecipes.com/recipe/90712
('scraping', '90712')
http://allrecipes.com/recipe/14220
('scraping', '14220')
http://allrecipes.com/recipe/14222
('scraping', '14222')
http://allrecipes.com/recipe/14952
('scraping', '54694')
http://allrecipes.com/recipe/85024
('scraping', '85024')
http://allrecipes.com/recipe/85025
('scraping', '85025')
http://allrecipes.com/recipe/24164
('scraping', '24164')
http://allrecipes.com/recipe/12085
('scraping', '12085')
http://allrecipes.com/recipe/12083
('scraping', '12083')
http://allrecipes.com/recipe/49280
('scraping', '49280')
http://allrecipes.com/recipe/49285
('scraping', '49285')
http://allrecipes.com/recipe/12088
('scraping', '12088')
http://allrecipes.com/recipe/49287
('scraping', '49287')
http://allrecipes.com/recipe/90365
('scraping', '90365')
http://allrecipes.com/recipe/20953
('scraping', '20953')
http://allrecipes.com/recipe/20480
('scraping', '20480')
http://allrecipes.com/recipe/20954
('scraping', '20954')
http://allrecipes.com/recipe/7344
('scraping', '7344')
http://allrecipes.com/recipe/7342
('scraping', '7342')
http://allrecipes.com/recipe/10799
('scraping', '10799')
http://allrecipes.com/recipe/7341
('scraping', '7341')
http://allrecipes.com/recipe/10795
('scraping', '10795')
http://allrecipes.com/recipe/10025
('scraping', '10025')
http://allrecipes.com/recipe/10023
('scraping', '10023')
http://allrecipes.com/recipe/7348
('scraping', '7348')
http://allrecipes.com/recipe/10021
('scraping', '10021')
http://allrecipes.com/recipe/21681
('scraping', '21681')
http://allrecipes.com/recipe/21688
('scraping', '21688')
http://allrecipes.com/recipe/12334
('scraping', '12334')
http://allrecipes.com/recipe/12332
('scraping', '12332')
http://allrecipes.com/recipe/30480
('scraping', '30480')
http://allrecipes.com/recipe/30485
('scraping', '30485')
http://allrecipes.com/recipe/7008
('scraping', '7008')
http://allrecipes.com/recipe/9029
('scraping', '9029')
http://allrecipes.com/recipe/10242
('scraping', '10242')
http://allrecipes.com/recipe/37703
('scraping', '37703')
http://allrecipes.com/recipe/21539
('scraping', '21539')
http://allrecipes.com/recipe/37707
('scraping', '37707')
http://allrecipes.com/recipe/24014
('scraping', '24014')
http://allrecipes.com/recipe/24015
('scraping', '24015')
http://allrecipes.com/recipe/21533
('scraping', '21533')
http://allrecipes.com/recipe/29884
('scraping', '29884')
http://allrecipes.com/recipe/67628
('scraping', '67628')
http://allrecipes.com/recipe/24333
('scraping', '24333')
http://allrecipes.com/recipe/24334
('scraping', '24334')
http://allrecipes.com/recipe/24337
('scraping', '24337')
Check point Iter: 3000
http://allrecipes.com/recipe/24336
('scraping', '24336')
http://allrecipes.com/recipe/24481
('scraping', '24481')
http://allrecipes.com/recipe/24338
('scraping', '24338')
http://allrecipes.com/recipe/68216
('scraping', '68216')
http://allrecipes.com/recipe/79161
('scraping', '79161')
http://allrecipes.com/recipe/77300
('scraping', '77300')
http://allrecipes.com/recipe/33555
('scraping', '33555')
http://allrecipes.com/recipe/77303
('scraping', '77303')
http://allrecipes.com/recipe/87792
('scraping', '87792')
http://allrecipes.com/recipe/18025
('scraping', '18025')
http://allrecipes.com/recipe/18023
('scraping', '18023')
http://allrecipes.com/recipe/11041
('scraping', '11041')
http://allrecipes.com/recipe/24487
('scraping', '24487')
http://allrecipes.com/recipe/30891
('scraping', '30891')
http://allrecipes.com/recipe/24484
('scraping', '24484')
http://allrecipes.com/recipe/24483
('scraping', '24483')
http://allrecipes.com/recipe/14569
('scraping', '14569')
http://allrecipes.com/recipe/91704
('scraping', '91704')
http://allrecipes.com/recipe/91705
('scraping', '91705')
http://allrecipes.com/recipe/24934
('scraping', '24934')
http://allrecipes.com/recipe/26225
('scraping', '26225')
http://allrecipes.com/recipe/15960
('scraping', '15960')
http://allrecipes.com/recipe/15961
('scraping', '15961')
http://allrecipes.com/recipe/15962
('scraping', '15962')
http://allrecipes.com/recipe/79300
('scraping', '79300')
http://allrecipes.com/recipe/8641
('scraping', '8641')
http://allrecipes.com/recipe/31469
('scraping', '31469')
http://allrecipes.com/recipe/35705
('scraping', '35705')
http://allrecipes.com/recipe/50953
('scraping', '50953')
http://allrecipes.com/recipe/12730
('scraping', '12730')
http://allrecipes.com/recipe/11308
('scraping', '11308')
http://allrecipes.com/recipe/91050
('scraping', '91050')
http://allrecipes.com/recipe/93700
('scraping', '93700')
http://allrecipes.com/recipe/93701
('scraping', '93701')
http://allrecipes.com/recipe/93706
('scraping', '93706')
http://allrecipes.com/recipe/93707
('scraping', '93707')
http://allrecipes.com/recipe/93704
('scraping', '93704')
http://allrecipes.com/recipe/47281
('scraping', '47281')
http://allrecipes.com/recipe/89465
('scraping', '89465')
http://allrecipes.com/recipe/93708
('scraping', '93708')
http://allrecipes.com/recipe/11303
('scraping', '11303')
http://allrecipes.com/recipe/11305
('scraping', '11305')
http://allrecipes.com/recipe/11306
('scraping', '11306')
http://allrecipes.com/recipe/91564
('scraping', '91564')
http://allrecipes.com/recipe/51573
('scraping', '51573')
http://allrecipes.com/recipe/51572
('scraping', '51572')
http://allrecipes.com/recipe/55053
('scraping', '55053')
http://allrecipes.com/recipe/25825
('scraping', '25825')
http://allrecipes.com/recipe/25823
('scraping', '25823')
http://allrecipes.com/recipe/25821
('scraping', '25821')
http://allrecipes.com/recipe/10194
('scraping', '10194')
http://allrecipes.com/recipe/74658
('scraping', '74658')
http://allrecipes.com/recipe/23379
('scraping', '23379')
http://allrecipes.com/recipe/54887
Unable to Scrape: 54887
http://allrecipes.com/recipe/67176
('scraping', '67176')
http://allrecipes.com/recipe/74650
('scraping', '74650')
http://allrecipes.com/recipe/23373
('scraping', '23373')
http://allrecipes.com/recipe/15216
('scraping', '15216')
http://allrecipes.com/recipe/25928
('scraping', '25928')
http://allrecipes.com/recipe/15212
('scraping', '15212')
http://allrecipes.com/recipe/74435
('scraping', '74435')
http://allrecipes.com/recipe/74433
('scraping', '74433')
http://allrecipes.com/recipe/74439
('scraping', '74439')
http://allrecipes.com/recipe/16549
('scraping', '16549')
http://allrecipes.com/recipe/16547
('scraping', '16547')
http://allrecipes.com/recipe/16094
('scraping', '16094')
http://allrecipes.com/recipe/16545
('scraping', '16545')
http://allrecipes.com/recipe/16096
('scraping', '16096')
http://allrecipes.com/recipe/6669
('scraping', '6669')
http://allrecipes.com/recipe/6663
('scraping', '6663')
http://allrecipes.com/recipe/12650
('scraping', '12650')
http://allrecipes.com/recipe/6664
('scraping', '6664')
http://allrecipes.com/recipe/6665
('scraping', '6665')
http://allrecipes.com/recipe/69486
('scraping', '69486')
http://allrecipes.com/recipe/52887
('scraping', '52887')
http://allrecipes.com/recipe/19847
('scraping', '19847')
http://allrecipes.com/recipe/16325
('scraping', '16325')
http://allrecipes.com/recipe/19516
('scraping', '19516')
http://allrecipes.com/recipe/19511
('scraping', '19511')
http://allrecipes.com/recipe/16894
('scraping', '16894')
http://allrecipes.com/recipe/16897
('scraping', '16897')
http://allrecipes.com/recipe/19840
('scraping', '19840')
http://allrecipes.com/recipe/19519
('scraping', '19519')
http://allrecipes.com/recipe/65743
('scraping', '65743')
http://allrecipes.com/recipe/65741
('scraping', '65741')
http://allrecipes.com/recipe/86909
('scraping', '86909')
http://allrecipes.com/recipe/86902
('scraping', '86902')
http://allrecipes.com/recipe/63191
('scraping', '63191')
http://allrecipes.com/recipe/75742
('scraping', '75742')
http://allrecipes.com/recipe/45574
('scraping', '45574')
http://allrecipes.com/recipe/57103
('scraping', '57103')
http://allrecipes.com/recipe/90885
('scraping', '90885')
http://allrecipes.com/recipe/90887
('scraping', '90887')
http://allrecipes.com/recipe/90880
('scraping', '90880')
http://allrecipes.com/recipe/90881
('scraping', '90881')
http://allrecipes.com/recipe/54484
('scraping', '54484')
http://allrecipes.com/recipe/49497
('scraping', '49497')
http://allrecipes.com/recipe/14029
('scraping', '14029')
http://allrecipes.com/recipe/11395
('scraping', '11395')
http://allrecipes.com/recipe/17056
('scraping', '17056')
Check point Iter: 3100
http://allrecipes.com/recipe/76959
('scraping', '76959')
http://allrecipes.com/recipe/17052
('scraping', '17052')
http://allrecipes.com/recipe/17050
('scraping', '17050')
http://allrecipes.com/recipe/17051
('scraping', '17051')
http://allrecipes.com/recipe/68046
('scraping', '68046')
http://allrecipes.com/recipe/60713
('scraping', '60713')
http://allrecipes.com/recipe/13211
('scraping', '13211')
http://allrecipes.com/recipe/81041
('scraping', '81041')
http://allrecipes.com/recipe/18377
('scraping', '18377')
http://allrecipes.com/recipe/25886
('scraping', '25886')
http://allrecipes.com/recipe/57360
('scraping', '57360')
http://allrecipes.com/recipe/53861
('scraping', '53861')
http://allrecipes.com/recipe/10499
('scraping', '10499')
http://allrecipes.com/recipe/90770
('scraping', '90770')
http://allrecipes.com/recipe/10494
('scraping', '10494')
http://allrecipes.com/recipe/10491
('scraping', '10491')
http://allrecipes.com/recipe/18239
('scraping', '18239')
http://allrecipes.com/recipe/14323
('scraping', '14323')
http://allrecipes.com/recipe/14790
('scraping', '14790')
http://allrecipes.com/recipe/18232
('scraping', '18232')
http://allrecipes.com/recipe/8926
('scraping', '8926')
http://allrecipes.com/recipe/14793
('scraping', '14793')
http://allrecipes.com/recipe/14794
('scraping', '14794')
http://allrecipes.com/recipe/18235
('scraping', '18235')
http://allrecipes.com/recipe/20010
('scraping', '20010')
http://allrecipes.com/recipe/20544
('scraping', '20544')
http://allrecipes.com/recipe/20542
('scraping', '20542')
http://allrecipes.com/recipe/20543
('scraping', '20543')
http://allrecipes.com/recipe/20541
('scraping', '20541')
http://allrecipes.com/recipe/20019
('scraping', '20019')
http://allrecipes.com/recipe/83503
('scraping', '83503')
http://allrecipes.com/recipe/83507
('scraping', '83507')
http://allrecipes.com/recipe/51091
('scraping', '51091')
http://allrecipes.com/recipe/80316
('scraping', '80316')
http://allrecipes.com/recipe/85760
('scraping', '85760')
http://allrecipes.com/recipe/44150
('scraping', '44150')
http://allrecipes.com/recipe/47459
('scraping', '47459')
http://allrecipes.com/recipe/7502
('scraping', '7502')
http://allrecipes.com/recipe/84411
('scraping', '84411')
http://allrecipes.com/recipe/92845
('scraping', '92845')
http://allrecipes.com/recipe/58558
('scraping', '58558')
http://allrecipes.com/recipe/17983
('scraping', '17983')
http://allrecipes.com/recipe/15774
('scraping', '15774')
http://allrecipes.com/recipe/6866
('scraping', '6866')
http://allrecipes.com/recipe/6867
('scraping', '6867')
http://allrecipes.com/recipe/15770
('scraping', '15770')
http://allrecipes.com/recipe/6863
('scraping', '6863')
http://allrecipes.com/recipe/95110
('scraping', '95110')
http://allrecipes.com/recipe/18230
('scraping', '18230')
http://allrecipes.com/recipe/10019
('scraping', '10019')
http://allrecipes.com/recipe/36699
('scraping', '36699')
http://allrecipes.com/recipe/10018
('scraping', '10018')
http://allrecipes.com/recipe/8250
('scraping', '8250')
http://allrecipes.com/recipe/8252
('scraping', '8252')
http://allrecipes.com/recipe/30831
('scraping', '30831')
http://allrecipes.com/recipe/8787
('scraping', '8787')
http://allrecipes.com/recipe/8786
('scraping', '8786')
http://allrecipes.com/recipe/7618
('scraping', '7618')
http://allrecipes.com/recipe/39462
('scraping', '39462')
http://allrecipes.com/recipe/7616
('scraping', '7616')
http://allrecipes.com/recipe/7612
('scraping', '7612')
http://allrecipes.com/recipe/9231
('scraping', '9231')
http://allrecipes.com/recipe/10015
('scraping', '10015')
http://allrecipes.com/recipe/18831
('scraping', '18831')
http://allrecipes.com/recipe/8431
('scraping', '8431')
http://allrecipes.com/recipe/8430
('scraping', '8430')
http://allrecipes.com/recipe/34642
('scraping', '34642')
http://allrecipes.com/recipe/88417
('scraping', '88417')
http://allrecipes.com/recipe/34648
('scraping', '34648')
http://allrecipes.com/recipe/9824
('scraping', '9824')
http://allrecipes.com/recipe/90087
('scraping', '90087')
http://allrecipes.com/recipe/9821
('scraping', '9821')
http://allrecipes.com/recipe/9820
('scraping', '9820')
http://allrecipes.com/recipe/9829
('scraping', '9829')
http://allrecipes.com/recipe/44841
('scraping', '44841')
http://allrecipes.com/recipe/23161
('scraping', '23161')
http://allrecipes.com/recipe/89899
('scraping', '89899')
http://allrecipes.com/recipe/23167
('scraping', '23167')
http://allrecipes.com/recipe/22565
('scraping', '22565')
http://allrecipes.com/recipe/22569
('scraping', '22569')
http://allrecipes.com/recipe/26412
('scraping', '26412')
http://allrecipes.com/recipe/77518
('scraping', '77518')
http://allrecipes.com/recipe/32333
('scraping', '32333')
http://allrecipes.com/recipe/77515
('scraping', '77515')
http://allrecipes.com/recipe/12590
('scraping', '12590')
http://allrecipes.com/recipe/26418
('scraping', '26418')
http://allrecipes.com/recipe/77512
('scraping', '24314')
http://allrecipes.com/recipe/54299
('scraping', '54299')
http://allrecipes.com/recipe/24312
('scraping', '24312')
http://allrecipes.com/recipe/10898
('scraping', '10898')
http://allrecipes.com/recipe/13005
('scraping', '13005')
http://allrecipes.com/recipe/76678
('scraping', '76678')
http://allrecipes.com/recipe/76671
('scraping', '76671')
http://allrecipes.com/recipe/13008
('scraping', '13008')
http://allrecipes.com/recipe/76674
('scraping', '76674')
http://allrecipes.com/recipe/77981
('scraping', '77981')
http://allrecipes.com/recipe/37858
('scraping', '37858')
http://allrecipes.com/recipe/18009
('scraping', '18009')
http://allrecipes.com/recipe/14587
('scraping', '14587')
http://allrecipes.com/recipe/18007
('scraping', '18007')
http://allrecipes.com/recipe/37851
('scraping', '37851')
http://allrecipes.com/recipe/18003
('scraping', '18003')
http://allrecipes.com/recipe/76581
('scraping', '76581')
http://allrecipes.com/recipe/20200
('scraping', '20200')
http://allrecipes.com/recipe/17857
('scraping', '17857')
http://allrecipes.com/recipe/17854
('scraping', '17854')
http://allrecipes.com/recipe/17855
('scraping', '17855')
http://allrecipes.com/recipe/20209
('scraping', '20209')
http://allrecipes.com/recipe/20208
('scraping', '20208')
http://allrecipes.com/recipe/17851
('scraping', '17851')
Check point Iter: 3300
http://allrecipes.com/recipe/15983
('scraping', '15983')
http://allrecipes.com/recipe/15980
('scraping', '15980')
http://allrecipes.com/recipe/93729
('scraping', '93729')
http://allrecipes.com/recipe/18456
('scraping', '18456')
http://allrecipes.com/recipe/23579
('scraping', '23579')
http://allrecipes.com/recipe/23576
('scraping', '23576')
http://allrecipes.com/recipe/23574
('scraping', '23574')
http://allrecipes.com/recipe/23575
('scraping', '23575')
http://allrecipes.com/recipe/89406
('scraping', '89406')
http://allrecipes.com/recipe/93726
('scraping', '93726')
http://allrecipes.com/recipe/15186
('scraping', '15186')
http://allrecipes.com/recipe/15182
('scraping', '15182')
http://allrecipes.com/recipe/15180
('scraping', '15180')
http://allrecipes.com/recipe/25806
('scraping', '25806')
http://allrecipes.com/recipe/25803
('scraping', '25803')
http://allrecipes.com/recipe/24850
('scraping', '24850')
http://allrecipes.com/recipe/30975
('scraping', '30975')
http://allrecipes.com/recipe/36698
('scraping', '36698')
http://allrecipes.com/recipe/76858
('scraping', '76858')
http://allrecipes.com/recipe/12519
('scraping', '12519')
http://allrecipes.com/recipe/12514
('scraping', '12514')
http://allrecipes.com/recipe/15235
('scraping', '15235')
http://allrecipes.com/recipe/8195
('scraping', '8195')
http://allrecipes.com/recipe/12512
('scraping', '12512')
http://allrecipes.com/recipe/35724
('scraping', '35724')
http://allrecipes.com/recipe/87434
('scraping', '87434')
http://allrecipes.com/recipe/16523
('scraping', '16523')
http://allrecipes.com/recipe/16522
('scraping', '16522')
http://allrecipes.com/recipe/16525
('scraping', '16525')
http://allrecipes.com/recipe/16382
('scraping', '16382')
http://allrecipes.com/recipe/16527
('scraping', '16527')
http://allrecipes.com/recipe/16529
('scraping', '16529')
http://allrecipes.com/recipe/16528
('scraping', '16528')
http://allrecipes.com/recipe/93186
('scraping', '93186')
http://allrecipes.com/recipe/93187
('scraping', '93187')
http://allrecipes.com/recipe/49750
('scraping', '49750')
http://allrecipes.com/recipe/93182
('scraping', '93182')
http://allrecipes.com/recipe/12631
('scraping', '12631')
http://allrecipes.com/recipe/12635
('scraping', '12635')
http://allrecipes.com/recipe/12634
('scraping', '12634')
http://allrecipes.com/recipe/12637
('scraping', '12637')
http://allrecipes.com/recipe/41670
('scraping', '41670')
http://allrecipes.com/recipe/42520
('scraping', '42520')
http://allrecipes.com/recipe/42521
('scraping', '42521')
http://allrecipes.com/recipe/42522
('scraping', '42522')
http://allrecipes.com/recipe/42523
('scraping', '42523')
http://allrecipes.com/recipe/42525
('scraping', '42525')
http://allrecipes.com/recipe/42527
('scraping', '42527')
http://allrecipes.com/recipe/10853
('scraping', '10853')
http://allrecipes.com/recipe/84955
('scraping', '84955')
http://allrecipes.com/recipe/10859
('scraping', '10859')
http://allrecipes.com/recipe/50601
('scraping', '50601')
http://allrecipes.com/recipe/69466
('scraping', '69466')
http://allrecipes.com/recipe/49758
('scraping', '49758')
http://allrecipes.com/recipe/60952
('scraping', '60952')
http://allrecipes.com/recipe/21030
('scraping', '21030')
http://allrecipes.com/recipe/19536
('scraping', '19536')
http://allrecipes.com/recipe/96753
('scraping', '96753')
http://allrecipes.com/recipe/63974
('scraping', '63974')
http://allrecipes.com/recipe/63971
('scraping', '63971')
http://allrecipes.com/recipe/12184
('scraping', '12184')
http://allrecipes.com/recipe/65724
('scraping', '65724')
http://allrecipes.com/recipe/65727
('scraping', '65727')
http://allrecipes.com/recipe/65726
('scraping', '65726')
http://allrecipes.com/recipe/26206
('scraping', '26206')
http://allrecipes.com/recipe/26203
('scraping', '26203')
http://allrecipes.com/recipe/26202
('scraping', '26202')
http://allrecipes.com/recipe/26201
('scraping', '26201')
http://allrecipes.com/recipe/86929
('scraping', '86929')
http://allrecipes.com/recipe/51912
('scraping', '51912')
http://allrecipes.com/recipe/69609
('scraping', '69609')
http://allrecipes.com/recipe/46609
('scraping', '46609')
http://allrecipes.com/recipe/42389
('scraping', '42389')
http://allrecipes.com/recipe/21788
('scraping', '21788')
http://allrecipes.com/recipe/42384
('scraping', '42384')
http://allrecipes.com/recipe/49124
('scraping', '49124')
http://allrecipes.com/recipe/42387
('scraping', '42387')
http://allrecipes.com/recipe/21783
('scraping', '21783')
http://allrecipes.com/recipe/49123
('scraping', '49123')
http://allrecipes.com/recipe/21780
('scraping', '21780')
http://allrecipes.com/recipe/17693
('scraping', '17693')
http://allrecipes.com/recipe/17699
('scraping', '17699')
http://allrecipes.com/recipe/81062
('scraping', '81062')
http://allrecipes.com/recipe/41878
('scraping', '41878')
http://allrecipes.com/recipe/13585
('scraping', '13585')
http://allrecipes.com/recipe/13587
('scraping', '13587')
http://allrecipes.com/recipe/79927
('scraping', '79927')
http://allrecipes.com/recipe/99809
('scraping', '99809')
http://allrecipes.com/recipe/11720
('scraping', '11720')
http://allrecipes.com/recipe/53118
('scraping', '53118')
http://allrecipes.com/recipe/53110
('scraping', '53110')
http://allrecipes.com/recipe/58129
('scraping', '58129')
http://allrecipes.com/recipe/14000
('scraping', '14000')
http://allrecipes.com/recipe/14001
('scraping', '14001')
http://allrecipes.com/recipe/14002
('scraping', '14002')
http://allrecipes.com/recipe/54465
('scraping', '54465')
http://allrecipes.com/recipe/58123
('scraping', '58123')
http://allrecipes.com/recipe/14005
('scraping', '14005')
http://allrecipes.com/recipe/58121
('scraping', '58121')
http://allrecipes.com/recipe/20780
('scraping', '20780')
Check point Iter: 3400
http://allrecipes.com/recipe/20784
('scraping', '20784')
http://allrecipes.com/recipe/20785
('scraping', '20785')
http://allrecipes.com/recipe/20788
('scraping', '20788')
http://allrecipes.com/recipe/90750
('scraping', '90750')
http://allrecipes.com/recipe/90752
('scraping', '90752')
http://allrecipes.com/recipe/90754
('scraping', '90754')
http://allrecipes.com/recipe/90755
('scraping', '90755')
http://allrecipes.com/recipe/53809
('scraping', '53809')
http://allrecipes.com/recipe/9698
('scraping', '9698')
http://allrecipes.com/recipe/9699
('scraping', '9699')
http://allrecipes.com/recipe/9691
('scraping', '9691')
http://allrecipes.com/recipe/14918
('scraping', '14918')
http://allrecipes.com/recipe/84783
('scraping', '84783')
http://allrecipes.com/recipe/14916
('scraping', '14916')
http://allrecipes.com/recipe/14917
('scraping', '14917')
http://allrecipes.com/recipe/14915
('scraping', '14915')
http://allrecipes.com/recipe/26286
('scraping', '26286')
http://allrecipes.com/recipe/45807
('scraping', '45807')
http://allrecipes.com/recipe/20566
('scraping', '20566')
http://allrecipes.com/recipe/73022
('scraping', '73022')
http://allrecipes.com/recipe/36669
('scraping', '36669')
http://allrecipes.com/recipe/9467
('scraping', '9467')
http://allrecipes.com/recipe/39899
('scraping', '39899')
http://allrecipes.com/recipe/23337
('scraping', '23337')
http://allrecipes.com/recipe/13649
('scraping', '13649')
http://allrecipes.com/recipe/85786
('scraping', '85786')
http://allrecipes.com/recipe/85783
('scraping', '85783')
http://allrecipes.com/recipe/41651
('scraping', '41651')
http://allrecipes.com/recipe/84434
('scraping', '17268')
http://allrecipes.com/recipe/10066
('scraping', '10066')
http://allrecipes.com/recipe/10065
('scraping', '10065')
http://allrecipes.com/recipe/17220
('scraping', '17220')
http://allrecipes.com/recipe/7389
('scraping', '7389')
http://allrecipes.com/recipe/7383
('scraping', '7383')
http://allrecipes.com/recipe/63017
('scraping', '63017')
http://allrecipes.com/recipe/7387
('scraping', '7387')
http://allrecipes.com/recipe/7384
('scraping', '7384')
http://allrecipes.com/recipe/63012
('scraping', '63012')
http://allrecipes.com/recipe/12373
('scraping', '12373')
http://allrecipes.com/recipe/33131
('scraping', '33131')
http://allrecipes.com/recipe/9062
('scraping', '9062')
http://allrecipes.com/recipe/9065
('scraping', '9065')
http://allrecipes.com/recipe/25712
('scraping', '25712')
http://allrecipes.com/recipe/9067
('scraping', '9067')
http://allrecipes.com/recipe/10289
('scraping', '10289')
http://allrecipes.com/recipe/9069
('scraping', '9069')
http://allrecipes.com/recipe/10283
('scraping', '10283')
http://allrecipes.com/recipe/49355
('scraping', '49355')
http://allrecipes.com/recipe/24055
('scraping', '24055')
http://allrecipes.com/recipe/75021
('scraping', '75021')
http://allrecipes.com/recipe/17486
('scraping', '17486')
http://allrecipes.com/recipe/22849
('scraping', '22849')
http://allrecipes.com/recipe/17480
('scraping', '17480')
http://allrecipes.com/recipe/17483
('scraping', '17483')
http://allrecipes.com/recipe/13396
('scraping', '13396')
http://allrecipes.com/recipe/20998
('scraping', '20998')
http://allrecipes.com/recipe/20994
('scraping', '20994')
http://allrecipes.com/recipe/13398
('scraping', '13398')
http://allrecipes.com/recipe/18052
('scraping', '18052')
http://allrecipes.com/recipe/86794
('scraping', '86794')
http://allrecipes.com/recipe/44470
('scraping', '44470')
http://allrecipes.com/recipe/58246
('scraping', '58246')
http://allrecipes.com/recipe/11881
('scraping', '11881')
http://allrecipes.com/recipe/11887
('scraping', '11887')
http://allrecipes.com/recipe/14610
('scraping', '14610')
http://allrecipes.com/recipe/14612
('scraping', '14612')
http://allrecipes.com/recipe/20196
('scraping', '20196')
http://allrecipes.com/recipe/20199
('scraping', '20199')
http://allrecipes.com/recipe/20198
('scraping', '20198')
http://allrecipes.com/recipe/13027
('scraping', '13027')
http://allrecipes.com/recipe/13026
('scraping', '13026')
http://allrecipes.com/recipe/13025
('scraping', '13025')
http://allrecipes.com/recipe/13028
('scraping', '13028')
http://allrecipes.com/recipe/78611
('scraping', '78611')
http://allrecipes.com/recipe/71708
('scraping', '71708')
http://allrecipes.com/recipe/17874
('scraping', '17874')
http://allrecipes.com/recipe/17875
('scraping', '17875')
http://allrecipes.com/recipe/11088
('scraping', '11088')
http://allrecipes.com/recipe/17870
('scraping', '17870')
http://allrecipes.com/recipe/11081
('scraping', '11081')
http://allrecipes.com/recipe/28793
('scraping', '28793')
http://allrecipes.com/recipe/11086
('scraping', '11086')
http://allrecipes.com/recipe/37834
('scraping', '37834')
http://allrecipes.com/recipe/37835
('scraping', '37835')
http://allrecipes.com/recipe/20222
('scraping', '20222')
http://allrecipes.com/recipe/20220
('scraping', '20220')
http://allrecipes.com/recipe/91038
('scraping', '91038')
http://allrecipes.com/recipe/20224
('scraping', '20224')
http://allrecipes.com/recipe/91740
('scraping', '91740')
http://allrecipes.com/recipe/83311
('scraping', '83311')
http://allrecipes.com/recipe/83643
('scraping', '83643')
http://allrecipes.com/recipe/83648
('scraping', '83648')
http://allrecipes.com/recipe/23554
('scraping', '23554')
http://allrecipes.com/recipe/23089
('scraping', '23089')
http://allrecipes.com/recipe/51538
('scraping', '51538')
http://allrecipes.com/recipe/23086
('scraping', '23086')
http://allrecipes.com/recipe/23084
('scraping', '23084')
http://allrecipes.com/recipe/18476
('scraping', '18476')
http://allrecipes.com/recipe/41024
('scraping', '41024')
http://allrecipes.com/recipe/23882
('scraping', '23882')
http://allrecipes.com/recipe/47171
('scraping', '47171')
http://allrecipes.com/recipe/23332
('scraping', '23332')
http://allrecipes.com/recipe/23886
('scraping', '23886')
http://allrecipes.com/recipe/74968
('scraping', '74968')
http://allrecipes.com/recipe/23885
('scraping', '23885')
http://allrecipes.com/recipe/82063
('scraping', '82063')
http://allrecipes.com/recipe/8577
('scraping', '8577')
http://allrecipes.com/recipe/8573
('scraping', '8573')
Check point Iter: 3600
http://allrecipes.com/recipe/8579
('scraping', '8579')
http://allrecipes.com/recipe/88599
('scraping', '88599')
http://allrecipes.com/recipe/12578
('scraping', '12578')
http://allrecipes.com/recipe/15259
('scraping', '15259')
http://allrecipes.com/recipe/15255
('scraping', '15255')
http://allrecipes.com/recipe/50912
('scraping', '50912')
http://allrecipes.com/recipe/7409
('scraping', '7409')
http://allrecipes.com/recipe/7407
('scraping', '7407')
http://allrecipes.com/recipe/7406
('scraping', '7406')
http://allrecipes.com/recipe/19082
('scraping', '19082')
http://allrecipes.com/recipe/16059
('scraping', '16059')
http://allrecipes.com/recipe/19086
('scraping', '19086')
http://allrecipes.com/recipe/16509
('scraping', '16509')
http://allrecipes.com/recipe/16505
('scraping', '16505')
http://allrecipes.com/recipe/16056
('scraping', '16056')
http://allrecipes.com/recipe/19731
('scraping', '19731')
http://allrecipes.com/recipe/19730
('scraping', '19730')
http://allrecipes.com/recipe/16501
('scraping', '16501')
http://allrecipes.com/recipe/16052
('scraping', '16052')
http://allrecipes.com/recipe/22684
('scraping', '22684')
http://allrecipes.com/recipe/12618
('scraping', '12618')
http://allrecipes.com/recipe/22689
('scraping', '22689')
http://allrecipes.com/recipe/12610
('scraping', '12610')
http://allrecipes.com/recipe/84938
('scraping', '84938')
http://allrecipes.com/recipe/69446
('scraping', '69446')
http://allrecipes.com/recipe/14977
('scraping', '14977')
http://allrecipes.com/recipe/84932
('scraping', '84932')
http://allrecipes.com/recipe/84935
('scraping', '84935')
http://allrecipes.com/recipe/84934
('scraping', '84934')
http://allrecipes.com/recipe/84937
('scraping', '84937')
http://allrecipes.com/recipe/24735
('scraping', '24735')
http://allrecipes.com/recipe/24734
('scraping', '24734')
http://allrecipes.com/recipe/82685
('scraping', '82685')
http://allrecipes.com/recipe/65706
('scraping', '9562')
http://allrecipes.com/recipe/15777
('scraping', '15777')
http://allrecipes.com/recipe/16060
('scraping', '16060')
http://allrecipes.com/recipe/79655
('scraping', '79655')
http://allrecipes.com/recipe/47410
('scraping', '47410')
http://allrecipes.com/recipe/9568
('scraping', '9568')
http://allrecipes.com/recipe/90603
('scraping', '90603')
http://allrecipes.com/recipe/9863
('scraping', '9863')
http://allrecipes.com/recipe/40507
('scraping', '40507')
http://allrecipes.com/recipe/40500
('scraping', '40500')
http://allrecipes.com/recipe/14426
('scraping', '14426')
http://allrecipes.com/recipe/14427
('scraping', '14427')
http://allrecipes.com/recipe/24502
('scraping', '24502')
http://allrecipes.com/recipe/11149
('scraping', '11149')
http://allrecipes.com/recipe/10740
('scraping', '10740')
http://allrecipes.com/recipe/6962
('scraping', '6962')
http://allrecipes.com/recipe/77555
('scraping', '77555')
http://allrecipes.com/recipe/16159
('scraping', '16159')
http://allrecipes.com/recipe/11836
('scraping', '11836')
http://allrecipes.com/recipe/72616
('scraping', '72616')
http://allrecipes.com/recipe/11832
('scraping', '11832')
http://allrecipes.com/recipe/11550
('scraping', '11550')
http://allrecipes.com/recipe/11553
('scraping', '11553')
http://allrecipes.com/recipe/16152
('scraping', '16152')
http://allrecipes.com/recipe/89369
('scraping', '89369')
http://allrecipes.com/recipe/51252
('scraping', '51252')
http://allrecipes.com/recipe/32680
('scraping', '32680')
http://allrecipes.com/recipe/22214
('scraping', '22214')
http://allrecipes.com/recipe/87484
('scraping', '87484')
http://allrecipes.com/recipe/22219
('scraping', '22219')
http://allrecipes.com/recipe/43881
('scraping', '43881')
http://allrecipes.com/recipe/25072
('scraping', '25072')
http://allrecipes.com/recipe/16331
('scraping', '16331')
http://allrecipes.com/recipe/25079
('scraping', '25079')
http://allrecipes.com/recipe/16880
('scraping', '16880')
http://allrecipes.com/recipe/6969
('scraping', '6969')
http://allrecipes.com/recipe/16336
('scraping', '16336')
http://allrecipes.com/recipe/63967
('scraping', '63967')
http://allrecipes.com/recipe/14993
('scraping', '14993')
http://allrecipes.com/recipe/25296
('scraping', '25296')
http://allrecipes.com/recipe/85080
('scraping', '85080')
http://allrecipes.com/recipe/74398
('scraping', '74398')
http://allrecipes.com/recipe/74397
('scraping', '74397')
http://allrecipes.com/recipe/85089
('scraping', '85089')
http://allrecipes.com/recipe/74392
('scraping', '74392')
http://allrecipes.com/recipe/37428
('scraping', '37428')
http://allrecipes.com/recipe/37425
('scraping', '37425')
http://allrecipes.com/recipe/17248
('scraping', '17248')
http://allrecipes.com/recipe/10049
('scraping', '10049')
http://allrecipes.com/recipe/9267
('scraping', '9267')
http://allrecipes.com/recipe/9265
('scraping', '9265')
http://allrecipes.com/recipe/36853
('scraping', '36853')
http://allrecipes.com/recipe/10734
('scraping', '10734')
http://allrecipes.com/recipe/10043
('scraping', '10043')
http://allrecipes.com/recipe/10045
('scraping', '10045')
http://allrecipes.com/recipe/10730
('scraping', '10730')
http://allrecipes.com/recipe/86729
('scraping', '86729')
http://allrecipes.com/recipe/84134
('scraping', '84134')
http://allrecipes.com/recipe/84136
('scraping', '84136')
http://allrecipes.com/recipe/12396
('scraping', '12396')
http://allrecipes.com/recipe/12393
('scraping', '12393')
http://allrecipes.com/recipe/26017
('scraping', '26017')
http://allrecipes.com/recipe/26010
('scraping', '26010')
http://allrecipes.com/recipe/26011
('scraping', '26011')
http://allrecipes.com/recipe/25032
('scraping', '25032')
http://allrecipes.com/recipe/69169
('scraping', '69169')
http://allrecipes.com/recipe/9089
('scraping', '9089')
http://allrecipes.com/recipe/9086
('scraping', '9086')
http://allrecipes.com/recipe/9085
('scraping', '9085')
http://allrecipes.com/recipe/9083
('scraping', '9083')
http://allrecipes.com/recipe/9081
('scraping', '9081')
http://allrecipes.com/recipe/46818
('scraping', '46818')
http://allrecipes.com/recipe/21598
('scraping', '21598')
http://allrecipes.com/recipe/21599
('scraping', '21599')
http://allrecipes.com/recipe/49374
('scraping', '49374')
http://allrecipes.com/recipe/21594
('scraping', '21594')
http://allrecipes.com/recipe/8393
('scraping', '8393')
http://allrecipes.com/recipe/21590
('scraping', '21590')
Check point Iter: 3800
http://allrecipes.com/recipe/22868
('scraping', '22868')
http://allrecipes.com/recipe/38530
('scraping', '38530')
http://allrecipes.com/recipe/36116
('scraping', '36116')
http://allrecipes.com/recipe/84685
('scraping', '84685')
http://allrecipes.com/recipe/22866
('scraping', '22866')
http://allrecipes.com/recipe/90657
('scraping', '90657')
http://allrecipes.com/recipe/90656
('scraping', '90656')
http://allrecipes.com/recipe/90652
('scraping', '90652')
http://allrecipes.com/recipe/16743
('scraping', '16743')
http://allrecipes.com/recipe/71818
('scraping', '71818')
http://allrecipes.com/recipe/14639
('scraping', '14639')
http://allrecipes.com/recipe/14631
('scraping', '14631')
http://allrecipes.com/recipe/90769
('scraping', '90769')
http://allrecipes.com/recipe/83480
('scraping', '83480')
http://allrecipes.com/recipe/83482
('scraping', '83482')
http://allrecipes.com/recipe/83487
('scraping', '83487')
http://allrecipes.com/recipe/83488
('scraping', '83488')
http://allrecipes.com/recipe/83489
('scraping', '83489')
http://allrecipes.com/recipe/70491
('scraping', '70491')
http://allrecipes.com/recipe/13047
('scraping', '13047')
http://allrecipes.com/recipe/37816
('scraping', '37816')
http://allrecipes.com/recipe/37818
('scraping', '37818')
http://allrecipes.com/recipe/54168
('scraping', '54168')
http://allrecipes.com/recipe/17811
('scraping', '17811')
http://allrecipes.com/recipe/17816
('scraping', '17816')
http://allrecipes.com/recipe/17819
('scraping', '17819')
http://allrecipes.com/recipe/20241
('scraping', '20241')
http://allrecipes.com/recipe/20244
('scraping', '20244')
http://allrecipes.com/recipe/20246
('scraping', '20246')
http://allrecipes.com/recipe/67138
('scraping', '67138')
http://allrecipes.com/recipe/67137
('scraping', '67137')
http://allrecipes.com/recipe/83660
('scraping', '83660')
http://allrecipes.com/recipe/47996
('scraping', '47996')
http://allrecipes.com/recipe/23533
('scraping', '23533')
http://allrecipes.com/recipe/23530
('scraping', '23530')
http://allrecipes.com/recipe/23531
('scraping', '23531')
http://allrecipes.com/recipe/23535
('scraping', '23535')
http://allrecipes.com/recipe/89191
('scraping', '89191')
http://allrecipes.com/recipe/89194
('scraping', '89194')
http://allrecipes.com/recipe/48074
('scraping', '48074')
http://allrecipes.com/recipe/76097
('scraping', '21291')
http://allrecipes.com/recipe/85439
('scraping', '85439')
http://allrecipes.com/recipe/21295
('scraping', '21295')
http://allrecipes.com/recipe/18337
('scraping', '18337')
http://allrecipes.com/recipe/49168
('scraping', '49168')
http://allrecipes.com/recipe/46318
('scraping', '46318')
http://allrecipes.com/recipe/20521
('scraping', '20521')
http://allrecipes.com/recipe/20524
('scraping', '20524')
http://allrecipes.com/recipe/45844
('scraping', '45844')
http://allrecipes.com/recipe/11127
('scraping', '11127')
http://allrecipes.com/recipe/41341
('scraping', '41341')
http://allrecipes.com/recipe/41340
('scraping', '41340')
http://allrecipes.com/recipe/10386
('scraping', '10386')
http://allrecipes.com/recipe/22983
('scraping', '22983')
http://allrecipes.com/recipe/10388
('scraping', '10388')
http://allrecipes.com/recipe/16925
('scraping', '16925')
http://allrecipes.com/recipe/16924
('scraping', '16924')
http://allrecipes.com/recipe/16926
('scraping', '16926')
http://allrecipes.com/recipe/16920
('scraping', '16920')
http://allrecipes.com/recipe/16929
('scraping', '16929')
http://allrecipes.com/recipe/7263
('scraping', '7263')
http://allrecipes.com/recipe/7262
('scraping', '7262')
http://allrecipes.com/recipe/12237
('scraping', '12237')
http://allrecipes.com/recipe/58118
('scraping', '58118')
http://allrecipes.com/recipe/15869
('scraping', '15869')
http://allrecipes.com/recipe/48788
('scraping', '48788')
http://allrecipes.com/recipe/6807
('scraping', '6807')
http://allrecipes.com/recipe/6805
('scraping', '6805')
http://allrecipes.com/recipe/15712
('scraping', '15712')
http://allrecipes.com/recipe/15710
('scraping', '15710')
http://allrecipes.com/recipe/9744
('scraping', '9744')
http://allrecipes.com/recipe/10560
('scraping', '10560')
http://allrecipes.com/recipe/53517
('scraping', '53517')
http://allrecipes.com/recipe/19154
('scraping', '19154')
http://allrecipes.com/recipe/21437
('scraping', '21437')
http://allrecipes.com/recipe/19404
('scraping', '19404')
http://allrecipes.com/recipe/21431
('scraping', '21431')
http://allrecipes.com/recipe/21433
('scraping', '21433')
http://allrecipes.com/recipe/63204
('scraping', '63204')
http://allrecipes.com/recipe/63207
('scraping', '63207')
http://allrecipes.com/recipe/21439
('scraping', '21439')
http://allrecipes.com/recipe/63202
('scraping', '63202')
http://allrecipes.com/recipe/63203
('scraping', '63203')
http://allrecipes.com/recipe/17974
('scraping', '17974')
http://allrecipes.com/recipe/18923
('scraping', '18923')
http://allrecipes.com/recipe/8837
('scraping', '8837')
http://allrecipes.com/recipe/18920
('scraping', '18920')
http://allrecipes.com/recipe/8831
('scraping', '8831')
http://allrecipes.com/recipe/8830
('scraping', '8830')
http://allrecipes.com/recipe/8833
('scraping', '8833')
http://allrecipes.com/recipe/8832
('scraping', '8832')
http://allrecipes.com/recipe/30638
('scraping', '30638')
http://allrecipes.com/recipe/83296
('scraping', '83296')
http://allrecipes.com/recipe/19374
('scraping', '19374')
http://allrecipes.com/recipe/51287
('scraping', '51287')
http://allrecipes.com/recipe/73264
('scraping', '73264')
http://allrecipes.com/recipe/77931
('scraping', '77931')
http://allrecipes.com/recipe/80803
('scraping', '80803')
http://allrecipes.com/recipe/26805
('scraping', '26805')
http://allrecipes.com/recipe/16674
('scraping', '16674')
http://allrecipes.com/recipe/58693
('scraping', '58693')
http://allrecipes.com/recipe/95568
('scraping', '95568')
http://allrecipes.com/recipe/84475
('scraping', '84475')
http://allrecipes.com/recipe/9592
('scraping', '9592')
http://allrecipes.com/recipe/68600
('scraping', '68600')
http://allrecipes.com/recipe/67363
('scraping', '67363')
http://allrecipes.com/recipe/83121
('scraping', '83121')
http://allrecipes.com/recipe/83120
('scraping', '83120')
http://allrecipes.com/recipe/83127
('scraping', '83127')
http://allrecipes.com/recipe/83128
('scraping', '83128')
http://allrecipes.com/recipe/51288
('scraping', '51288')
http://allrecipes.com/recipe/24528
('scraping', '24528')
http://allrecipes.com/recipe/11168
('scraping', '11168')
http://allrecipes.com/recipe/14401
('scraping', '14401')
http://allrecipes.com/recipe/66186
('scraping', '66186')
http://allrecipes.com/recipe/14403
('scraping', '14403')
http://allrecipes.com/recipe/34375
('scraping', '34375')
http://allrecipes.com/recipe/94949
('scraping', '94949')
http://allrecipes.com/recipe/8760
('scraping', '8760')
http://allrecipes.com/recipe/8763
('scraping', '8763')
http://allrecipes.com/recipe/91463
('scraping', '91463')
http://allrecipes.com/recipe/13837
('scraping', '13837')
http://allrecipes.com/recipe/13830
('scraping', '13830')
Check point Iter: 4000
http://allrecipes.com/recipe/13831
('scraping', '13831')
http://allrecipes.com/recipe/77575
('scraping', '77575')
http://allrecipes.com/recipe/76229
('scraping', '76229')
http://allrecipes.com/recipe/85982
('scraping', '85982')
http://allrecipes.com/recipe/8491
('scraping', '8491')
http://allrecipes.com/recipe/8496
('scraping', '8496')
http://allrecipes.com/recipe/38352
('scraping', '38352')
http://allrecipes.com/recipe/38353
('scraping', '38353')
http://allrecipes.com/recipe/8498
('scraping', '8498')
http://allrecipes.com/recipe/32112
('scraping', '32112')
http://allrecipes.com/recipe/35200
('scraping', '35200')
http://allrecipes.com/recipe/35205
('scraping', '35205')
http://allrecipes.com/recipe/73470
('scraping', '73470')
http://allrecipes.com/recipe/73474
('scraping', '73474')
http://allrecipes.com/recipe/11578
('scraping', '11578')
http://allrecipes.com/recipe/11577
('scraping', '11577')
http://allrecipes.com/recipe/11575
('scraping', '11575')
http://allrecipes.com/recipe/89380
('scraping', '89380')
http://allrecipes.com/recipe/19388
('scraping', '19388')
http://allrecipes.com/recipe/22272
('scraping', '22272')
http://allrecipes.com/recipe/22270
('scraping', '22270')
http://allrecipes.com/recipe/22277
('scraping', '22277')
http://allrecipes.com/recipe/25057
('scraping', '25057')
http://allrecipes.com/recipe/25721
('scraping', '25721')
http://allrecipes.com/recipe/25723
('scraping', '25723')
http://allrecipes.com/recipe/82983
('scraping', '82983')
http://allrecipes.com/recipe/6783
('scraping', '6783')
http://allrecipes.com/recipe/6784
('scraping', '6784')
http://allrecipes.com/recipe/46124
('scraping', '46124')
http://allrecipes.com/recipe/46126
('scraping', '46126')
http://allrecipes.com/recipe/73380
('scraping', '73380')
http://allrecipes.com/recipe/14900
('scraping', '14900')
http://allrecipes.com/recipe/14904
('scraping', '14904')
http://allrecipes.com/recipe/16718
('scraping', '16718')
http://allrecipes.com/recipe/19964
('scraping', '19964')
http://allrecipes.com/recipe/16245
('scraping', '16245')
http://allrecipes.com/recipe/19967
('scraping', '19967')
http://allrecipes.com/recipe/32001
('scraping', '32001')
http://allrecipes.com/recipe/16710
('scraping', '16710')
http://allrecipes.com/recipe/26482
('scraping', '26482')
http://allrecipes.com/recipe/22490
('scraping', '22490')
http://allrecipes.com/recipe/12006
('scraping', '12006')
http://allrecipes.com/recipe/12007
('scraping', '12007')
http://allrecipes.com/recipe/12005
('scraping', '12005')
http://allrecipes.com/recipe/12003
('scraping', '12003')
http://allrecipes.com/recipe/22498
('scraping', '22498')
http://allrecipes.com/recipe/12001
('scraping', '12001')
http://allrecipes.com/recipe/42413
('scraping', '42413')
http://allrecipes.com/recipe/64604
('scraping', '64604')
http://allrecipes.com/recipe/64609
('scraping', '64609')
http://allrecipes.com/recipe/17002
('scraping', '17002')
http://allrecipes.com/recipe/63054
('scraping', '63054')
http://allrecipes.com/recipe/9539
('scraping', '9539')
http://allrecipes.com/recipe/63056
('scraping', '63056')
http://allrecipes.com/recipe/9537
('scraping', '9537')
http://allrecipes.com/recipe/7496
('scraping', '7496')
http://allrecipes.com/recipe/9533
('scraping', '9533')
http://allrecipes.com/recipe/9532
('scraping', '9532')
http://allrecipes.com/recipe/24894
('scraping', '24894')
http://allrecipes.com/recipe/21603
('scraping', '21603')
http://allrecipes.com/recipe/84113
('scraping', '84113')
http://allrecipes.com/recipe/84111
('scraping', '84111')
http://allrecipes.com/recipe/90497
('scraping', '7449')
http://allrecipes.com/recipe/7448
('scraping', '7448')
http://allrecipes.com/recipe/50409
('scraping', '50409')
http://allrecipes.com/recipe/92251
('scraping', '92251')
http://allrecipes.com/recipe/35920
('scraping', '35920')
http://allrecipes.com/recipe/8187
('scraping', '8187')
http://allrecipes.com/recipe/88735
('scraping', '88735')
http://allrecipes.com/recipe/12478
('scraping', '12478')
http://allrecipes.com/recipe/65071
('scraping', '65071')
http://allrecipes.com/recipe/22399
('scraping', '22399')
http://allrecipes.com/recipe/52804
('scraping', '52804')
http://allrecipes.com/recipe/22391
('scraping', '22391')
http://allrecipes.com/recipe/22397
('scraping', '22397')
http://allrecipes.com/recipe/13993
('scraping', '13993')
http://allrecipes.com/recipe/13991
('scraping', '13991')
http://allrecipes.com/recipe/6874
('scraping', '6874')
http://allrecipes.com/recipe/42909
('scraping', '42909')
http://allrecipes.com/recipe/24770
('scraping', '24770')
http://allrecipes.com/recipe/24773
('scraping', '24773')
http://allrecipes.com/recipe/24772
('scraping', '24772')
http://allrecipes.com/recipe/24775
('scraping', '24775')
http://allrecipes.com/recipe/24774
('scraping', '24774')
http://allrecipes.com/recipe/57822
('scraping', '57822')
http://allrecipes.com/recipe/65217
('scraping', '65217')
http://allrecipes.com/recipe/86231
('scraping', '86231')
http://allrecipes.com/recipe/81512
('scraping', '81512')
http://allrecipes.com/recipe/77031
('scraping', '77031')
http://allrecipes.com/recipe/13668
('scraping', '13668')
http://allrecipes.com/recipe/43321
('scraping', '43321')
http://allrecipes.com/recipe/13666
('scraping', '13666')
http://allrecipes.com/recipe/16012
('scraping', '16012')
http://allrecipes.com/recipe/19777
('scraping', '19777')
http://allrecipes.com/recipe/96406
('scraping', '96406')
http://allrecipes.com/recipe/32258
('scraping', '32258')
http://allrecipes.com/recipe/11290
('scraping', '11290')
http://allrecipes.com/recipe/96405
('scraping', '96405')
http://allrecipes.com/recipe/11297
('scraping', '11297')
http://allrecipes.com/recipe/11294
('scraping', '11294')
http://allrecipes.com/recipe/19343
('scraping', '19343')
http://allrecipes.com/recipe/17630
('scraping', '17630')
http://allrecipes.com/recipe/17631
('scraping', '17631')
http://allrecipes.com/recipe/17637
('scraping', '17637')
http://allrecipes.com/recipe/90804
('scraping', '90804')
http://allrecipes.com/recipe/13521
('scraping', '13521')
http://allrecipes.com/recipe/90801
('scraping', '90801')
http://allrecipes.com/recipe/13528
('scraping', '13528')
http://allrecipes.com/recipe/60241
('scraping', '60241')
http://allrecipes.com/recipe/90809
('scraping', '90809')
http://allrecipes.com/recipe/11744
('scraping', '11744')
http://allrecipes.com/recipe/11748
('scraping', '11748')
http://allrecipes.com/recipe/11749
('scraping', '11749')
http://allrecipes.com/recipe/63912
('scraping', '63912')
http://allrecipes.com/recipe/20892
('scraping', '20892')
http://allrecipes.com/recipe/20894
('scraping', '20894')
http://allrecipes.com/recipe/20897
('scraping', '20897')
http://allrecipes.com/recipe/20899
('scraping', '20899')
http://allrecipes.com/recipe/25556
('scraping', '25556')
http://allrecipes.com/recipe/25557
('scraping', '25557')
http://allrecipes.com/recipe/25553
('scraping', '25553')
http://allrecipes.com/recipe/13650
('scraping', '13650')
http://allrecipes.com/recipe/76676
('scraping', '76676')
http://allrecipes.com/recipe/32599
('scraping', '32599')
http://allrecipes.com/recipe/42499
('scraping', '42499')
http://allrecipes.com/recipe/42322
('scraping', '42322')
http://allrecipes.com/recipe/46662
('scraping', '46662')
http://allrecipes.com/recipe/42492
('scraping', '42492')
http://allrecipes.com/recipe/13655
('scraping', '13655')
http://allrecipes.com/recipe/17892
('scraping', '17892')
http://allrecipes.com/recipe/41369
('scraping', '41369')
Check point Iter: 4200
http://allrecipes.com/recipe/78938
('scraping', '78938')
http://allrecipes.com/recipe/20091
('scraping', '20091')
http://allrecipes.com/recipe/41364
('scraping', '41364')
http://allrecipes.com/recipe/10368
('scraping', '10368')
http://allrecipes.com/recipe/9180
('scraping', '9180')
http://allrecipes.com/recipe/10366
('scraping', '10366')
http://allrecipes.com/recipe/10360
('scraping', '10360')
http://allrecipes.com/recipe/10363
('scraping', '10363')
http://allrecipes.com/recipe/9189
('scraping', '9189')
http://allrecipes.com/recipe/16901
('scraping', '16901')
http://allrecipes.com/recipe/16900
('scraping', '16900')
http://allrecipes.com/recipe/8226
('scraping', '8226')
http://allrecipes.com/recipe/7200
('scraping', '7200')
http://allrecipes.com/recipe/7206
('scraping', '7206')
http://allrecipes.com/recipe/26295
('scraping', '26295')
http://allrecipes.com/recipe/42148
('scraping', '42148')
http://allrecipes.com/recipe/12210
('scraping', '12210')
http://allrecipes.com/recipe/15842
('scraping', '15842')
http://allrecipes.com/recipe/15841
('scraping', '15841')
http://allrecipes.com/recipe/19507
('scraping', '19507')
http://allrecipes.com/recipe/10509
('scraping', '10509')
http://allrecipes.com/recipe/9763
('scraping', '9763')
http://allrecipes.com/recipe/9761
('scraping', '9761')
http://allrecipes.com/recipe/40896
('scraping', '40896')
http://allrecipes.com/recipe/40895
('scraping', '40895')
http://allrecipes.com/recipe/40899
('scraping', '40899')
http://allrecipes.com/recipe/95191
('scraping', '95191')
http://allrecipes.com/recipe/10507
('scraping', '10507')
http://allrecipes.com/recipe/37371
('scraping', '37371')
http://allrecipes.com/recipe/37373
('scraping', '37373')
http://allrecipes.com/recipe/8858
('scraping', '8858')
http://allrecipes.com/recipe/8850
('scraping', '8850')
http://allrecipes.com/recipe/14139
('scraping', '14139')
http://allrecipes.com/recipe/18004
('scraping', '18004')
http://allrecipes.com/recipe/40092
('scraping', '40092')
http://allrecipes.com/recipe/18006
('scraping', '18006')
http://allrecipes.com/recipe/53602
('scraping', '53602')
http://allrecipes.com/recipe/37199
('scraping', '37199')
http://allrecipes.com/recipe/37198
('scraping', '37198')
http://allrecipes.com/recipe/37195
('scraping', '37195')
http://allrecipes.com/recipe/37196
('scraping', '37196')
http://allrecipes.com/recipe/37190
('scraping', '37190')
http://allrecipes.com/recipe/68330
('scraping', '68330')
http://allrecipes.com/recipe/37853
('scraping', '37853')
http://allrecipes.com/recipe/40234
('scraping', '40234')
http://allrecipes.com/recipe/40235
('scraping', '40235')
http://allrecipes.com/recipe/40230
('scraping', '40230')
http://allrecipes.com/recipe/14135
('scraping', '14135')
http://allrecipes.com/recipe/92990
('scraping', '92990')
http://allrecipes.com/recipe/24540
('scraping', '24540')
http://allrecipes.com/recipe/24541
('scraping', '24541')
http://allrecipes.com/recipe/18363
('scraping', '18363')
http://allrecipes.com/recipe/20201
('scraping', '20201')
http://allrecipes.com/recipe/25252
('scraping', '25252')
http://allrecipes.com/recipe/15522
('scraping', '15522')
http://allrecipes.com/recipe/17997
('scraping', '17997')
http://allrecipes.com/recipe/17996
('scraping', '17996')
http://allrecipes.com/recipe/11109
('scraping', '11109')
http://allrecipes.com/recipe/11102
('scraping', '11102')
http://allrecipes.com/recipe/11103
('scraping', '11103')
http://allrecipes.com/recipe/14466
('scraping', '14466')
http://allrecipes.com/recipe/11107
('scraping', '11107')
http://allrecipes.com/recipe/50148
('scraping', '50148')
('scraping', '18380')
http://allrecipes.com/recipe/42375
('scraping', '42375')
http://allrecipes.com/recipe/16689
('scraping', '16689')
http://allrecipes.com/recipe/31483
('scraping', '31483')
http://allrecipes.com/recipe/21426
('scraping', '21426')
http://allrecipes.com/recipe/26618
('scraping', '26618')
http://allrecipes.com/recipe/26614
('scraping', '26614')
http://allrecipes.com/recipe/26615
('scraping', '26615')
http://allrecipes.com/recipe/92501
('scraping', '92501')
http://allrecipes.com/recipe/15318
('scraping', '15318')
http://allrecipes.com/recipe/26611
('scraping', '26611')
http://allrecipes.com/recipe/92505
('scraping', '92505')
http://allrecipes.com/recipe/74262
('scraping', '74262')
http://allrecipes.com/recipe/23066
('scraping', '23066')
http://allrecipes.com/recipe/23067
('scraping', '23067')
http://allrecipes.com/recipe/23060
('scraping', '23060')
http://allrecipes.com/recipe/23062
('scraping', '23062')
http://allrecipes.com/recipe/23063
('scraping', '23063')
http://allrecipes.com/recipe/66224
('scraping', '66224')
http://allrecipes.com/recipe/10151
('scraping', '10151')
http://allrecipes.com/recipe/32357
('scraping', '32357')
http://allrecipes.com/recipe/23069
('scraping', '23069')
http://allrecipes.com/recipe/22626
('scraping', '22626')
http://allrecipes.com/recipe/61024
('scraping', '61024')
http://allrecipes.com/recipe/88280
('scraping', '88280')
http://allrecipes.com/recipe/26530
('scraping', '26530')
http://allrecipes.com/recipe/26534
('scraping', '26534')
http://allrecipes.com/recipe/24756
('scraping', '24756')
http://allrecipes.com/recipe/24754
('scraping', '24754')
http://allrecipes.com/recipe/24759
('scraping', '24759')
http://allrecipes.com/recipe/24758
('scraping', '24758')
http://allrecipes.com/recipe/23391
('scraping', '23391')
http://allrecipes.com/recipe/74909
('scraping', '74909')
http://allrecipes.com/recipe/74900
('scraping', '74900')
http://allrecipes.com/recipe/13647
('scraping', '13647')
http://allrecipes.com/recipe/13645
('scraping', '13645')
http://allrecipes.com/recipe/13643
('scraping', '13643')
http://allrecipes.com/recipe/73020
('scraping', '73020')
http://allrecipes.com/recipe/69688
('scraping', '69688')
http://allrecipes.com/recipe/26281
('scraping', '26281')
http://allrecipes.com/recipe/96420
('scraping', '96420')
http://allrecipes.com/recipe/14247
('scraping', '14247')
http://allrecipes.com/recipe/89229
('scraping', '89229')
http://allrecipes.com/recipe/14245
('scraping', '14245')
http://allrecipes.com/recipe/55656
('scraping', '55656')
http://allrecipes.com/recipe/19028
('scraping', '19028')
http://allrecipes.com/recipe/55307
('scraping', '55307')
http://allrecipes.com/recipe/16036
('scraping', '16036')
http://allrecipes.com/recipe/16035
('scraping', '16035')
http://allrecipes.com/recipe/16034
('scraping', '16034')
http://allrecipes.com/recipe/16033
('scraping', '16033')
http://allrecipes.com/recipe/19023
('scraping', '19023')
http://allrecipes.com/recipe/17619
('scraping', '17619')
http://allrecipes.com/recipe/98429
('scraping', '98429')
http://allrecipes.com/recipe/14240
('scraping', '14240')
http://allrecipes.com/recipe/94374
('scraping', '94374')
http://allrecipes.com/recipe/17347
('scraping', '17347')
http://allrecipes.com/recipe/17612
('scraping', '17612')
http://allrecipes.com/recipe/17614
('scraping', '17614')
http://allrecipes.com/recipe/17343
('scraping', '17343')
http://allrecipes.com/recipe/17617
('scraping', '17617')
http://allrecipes.com/recipe/13508
('scraping', '13508')
http://allrecipes.com/recipe/90861
('scraping', '90861')
http://allrecipes.com/recipe/90864
('scraping', '90864')
http://allrecipes.com/recipe/60262
('scraping', '60262')
http://allrecipes.com/recipe/90869
('scraping', '90869')
http://allrecipes.com/recipe/13505
('scraping', '13505')
http://allrecipes.com/recipe/60264
('scraping', '60264')
http://allrecipes.com/recipe/23936
('scraping', '23936')
http://allrecipes.com/recipe/23931
('scraping', '23931')
http://allrecipes.com/recipe/23938
('scraping', '23938')
http://allrecipes.com/recipe/23939
('scraping', '23939')
http://allrecipes.com/recipe/27225
('scraping', '27225')
http://allrecipes.com/recipe/27222
('scraping', '27222')
http://allrecipes.com/recipe/69027
('scraping', '69027')
http://allrecipes.com/recipe/64014
('scraping', '64014')
http://allrecipes.com/recipe/20878
('scraping', '20878')
http://allrecipes.com/recipe/20870
('scraping', '20870')
http://allrecipes.com/recipe/36371
('scraping', '36371')
http://allrecipes.com/recipe/25579
('scraping', '25579')
http://allrecipes.com/recipe/53887
('scraping', '53887')
http://allrecipes.com/recipe/25575
('scraping', '25575')
http://allrecipes.com/recipe/25573
('scraping', '25573')
http://allrecipes.com/recipe/42304
('scraping', '42304')
http://allrecipes.com/recipe/42302
('scraping', '42302')
http://allrecipes.com/recipe/42303
('scraping', '42303')
http://allrecipes.com/recipe/80627
('scraping', '80627')
http://allrecipes.com/recipe/17408
('scraping', '17408')
http://allrecipes.com/recipe/7956
('scraping', '7956')
http://allrecipes.com/recipe/7953
('scraping', '7953')
http://allrecipes.com/recipe/39819
('scraping', '39819')
Check point Iter: 4500
http://allrecipes.com/recipe/9165
('scraping', '9165')
http://allrecipes.com/recipe/10341
('scraping', '10341')
http://allrecipes.com/recipe/10340
('scraping', '10340')
http://allrecipes.com/recipe/10695
('scraping', '10695')
http://allrecipes.com/recipe/17159
('scraping', '17159')
http://allrecipes.com/recipe/7959
('scraping', '7959')
http://allrecipes.com/recipe/63792
('scraping', '63792')
http://allrecipes.com/recipe/16960
('scraping', '16960')
http://allrecipes.com/recipe/12279
('scraping', '12279')
http://allrecipes.com/recipe/37952
('scraping', '37952')
http://allrecipes.com/recipe/12272
('scraping', '12272')
http://allrecipes.com/recipe/10526
('scraping', '10526')
http://allrecipes.com/recipe/10525
('scraping', '10525')
http://allrecipes.com/recipe/53222
('scraping', '53222')
http://allrecipes.com/recipe/70370
('scraping', '70370')
http://allrecipes.com/recipe/10529
('scraping', '10529')
http://allrecipes.com/recipe/8872
('scraping', '8872')
http://allrecipes.com/recipe/14996
('scraping', '14996')
http://allrecipes.com/recipe/8874
('scraping', '8874')
http://allrecipes.com/recipe/8876
('scraping', '8876')
http://allrecipes.com/recipe/18967
('scraping', '18967')
http://allrecipes.com/recipe/37420
('scraping', '37420')
http://allrecipes.com/recipe/24116
('scraping', '24116')
http://allrecipes.com/recipe/48215
('scraping', '48215')
http://allrecipes.com/recipe/41304
('scraping', '41304')
http://allrecipes.com/recipe/86410
('scraping', '86410')
http://allrecipes.com/recipe/86411
('scraping', '56793')
http://allrecipes.com/recipe/25763
('scraping', '25763')
http://allrecipes.com/recipe/81148
('scraping', '81148')
http://allrecipes.com/recipe/24103
('scraping', '24103')
http://allrecipes.com/recipe/81141
('scraping', '81141')
http://allrecipes.com/recipe/49531
('scraping', '49531')
http://allrecipes.com/recipe/49534
('scraping', '49534')
http://allrecipes.com/recipe/21645
('scraping', '21645')
http://allrecipes.com/recipe/8880
('scraping', '8880')
http://allrecipes.com/recipe/21648
('scraping', '21648')
http://allrecipes.com/recipe/90970
('scraping', '90970')
http://allrecipes.com/recipe/75314
('scraping', '75314')
http://allrecipes.com/recipe/75311
('scraping', '75311')
http://allrecipes.com/recipe/45436
('scraping', '45436')
http://allrecipes.com/recipe/11460
('scraping', '11460')
http://allrecipes.com/recipe/24180
('scraping', '24180')
http://allrecipes.com/recipe/11462
('scraping', '11462')
http://allrecipes.com/recipe/90627
('scraping', '90627')
http://allrecipes.com/recipe/46525
('scraping', '46525')
http://allrecipes.com/recipe/94127
('scraping', '94127')
http://allrecipes.com/recipe/17151
('scraping', '17151')
http://allrecipes.com/recipe/17150
('scraping', '17150')
http://allrecipes.com/recipe/17156
('scraping', '17156')
http://allrecipes.com/recipe/17154
('scraping', '17154')
http://allrecipes.com/recipe/17405
('scraping', '17405')
http://allrecipes.com/recipe/17407
('scraping', '17407')
http://allrecipes.com/recipe/88811
('scraping', '88811')
http://allrecipes.com/recipe/17402
('scraping', '17402')
http://allrecipes.com/recipe/90633
('scraping', '90633')
http://allrecipes.com/recipe/90631
('scraping', '90631')
http://allrecipes.com/recipe/90630
('scraping', '90630')
http://allrecipes.com/recipe/60457
('scraping', '60457')
http://allrecipes.com/recipe/13310
('scraping', '13310')
http://allrecipes.com/recipe/90638
('scraping', '90638')
http://allrecipes.com/recipe/9573
('scraping', '9573')
http://allrecipes.com/recipe/9571
('scraping', '9571')
http://allrecipes.com/recipe/36748
('scraping', '36748')
http://allrecipes.com/recipe/9576
('scraping', '9576')
http://allrecipes.com/recipe/9574
('scraping', '9574')
http://allrecipes.com/recipe/36743
('scraping', '36743')
http://allrecipes.com/recipe/36290
('scraping', '36290')
http://allrecipes.com/recipe/9579
('scraping', '9579')
http://allrecipes.com/recipe/36295
('scraping', '36295')
http://allrecipes.com/recipe/36746
('scraping', '36746')
http://allrecipes.com/recipe/36745
('scraping', '36745')
http://allrecipes.com/recipe/58799
('scraping', '58799')
http://allrecipes.com/recipe/11803
('scraping', '11803')
http://allrecipes.com/recipe/58791
('scraping', '58791')
http://allrecipes.com/recipe/58793
('scraping', '58793')
http://allrecipes.com/recipe/11807
('scraping', '11807')
http://allrecipes.com/recipe/11805
('scraping', '11805')
http://allrecipes.com/recipe/14836
('scraping', '14836')
http://allrecipes.com/recipe/64207
('scraping', '64207')
http://allrecipes.com/recipe/20119
('scraping', '20119')
http://allrecipes.com/recipe/20118
('scraping', '20118')
http://allrecipes.com/recipe/20114
('scraping', '20114')
http://allrecipes.com/recipe/64208
('scraping', '64208')
http://allrecipes.com/recipe/20112
('scraping', '20112')
http://allrecipes.com/recipe/83428
('scraping', '83428')
http://allrecipes.com/recipe/11191
('scraping', '11191')
http://allrecipes.com/recipe/44746
('scraping', '44746')
http://allrecipes.com/recipe/85138
('scraping', '85138')
http://allrecipes.com/recipe/85139
('scraping', '85139')
http://allrecipes.com/recipe/6901
('scraping', '6901')
http://allrecipes.com/recipe/51547
('scraping', '51547')
http://allrecipes.com/recipe/70789
('scraping', '70789')
http://allrecipes.com/recipe/9395
('scraping', '9395')
http://allrecipes.com/recipe/9394
('scraping', '9394')
http://allrecipes.com/recipe/40911
('scraping', '40911')
http://allrecipes.com/recipe/9390
('scraping', '9390')
http://allrecipes.com/recipe/15125
('scraping', '15125')
http://allrecipes.com/recipe/15126
('scraping', '15126')
http://allrecipes.com/recipe/15127
('scraping', '15127')
http://allrecipes.com/recipe/15121
('scraping', '15121')
http://allrecipes.com/recipe/76785
('scraping', '76785')
http://allrecipes.com/recipe/15123
('scraping', '15123')
http://allrecipes.com/recipe/39545
('scraping', '39545')
http://allrecipes.com/recipe/42388
('scraping', '42388')
http://allrecipes.com/recipe/7158
('scraping', '7158')
http://allrecipes.com/recipe/7157
('scraping', '7157')
http://allrecipes.com/recipe/7156
('scraping', '7156')
http://allrecipes.com/recipe/7153
('scraping', '7153')
http://allrecipes.com/recipe/77925
('scraping', '77925')
http://allrecipes.com/recipe/37652
('scraping', '37652')
http://allrecipes.com/recipe/42385
('scraping', '42385')
http://allrecipes.com/recipe/78165
('scraping', '78165')
http://allrecipes.com/recipe/76258
('scraping', '76258')
http://allrecipes.com/recipe/49654
('scraping', '49654')
http://allrecipes.com/recipe/8069
('scraping', '8069')
Check point Iter: 4700
http://allrecipes.com/recipe/8062
('scraping', '8062')
http://allrecipes.com/recipe/76254
('scraping', '76254')
http://allrecipes.com/recipe/88511
('scraping', '88511')
http://allrecipes.com/recipe/7485
('scraping', '7485')
http://allrecipes.com/recipe/7487
('scraping', '7487')
http://allrecipes.com/recipe/39600
('scraping', '39600')
http://allrecipes.com/recipe/7483
('scraping', '7483')
http://allrecipes.com/recipe/15925
('scraping', '15925')
http://allrecipes.com/recipe/50441
('scraping', '50441')
http://allrecipes.com/recipe/26670
('scraping', '26670')
http://allrecipes.com/recipe/44965
('scraping', '44965')
http://allrecipes.com/recipe/23009
('scraping', '23009')
http://allrecipes.com/recipe/30580
('scraping', '30580')
http://allrecipes.com/recipe/22358
('scraping', '22358')
http://allrecipes.com/recipe/22607
('scraping', '22607')
http://allrecipes.com/recipe/22605
('scraping', '22605')
http://allrecipes.com/recipe/22604
('scraping', '22604')
http://allrecipes.com/recipe/22600
('scraping', '22600')
http://allrecipes.com/recipe/48910
('scraping', '48910')
http://allrecipes.com/recipe/15927
('scraping', '15927')
http://allrecipes.com/recipe/73555
('scraping', '73555')
http://allrecipes.com/recipe/95860
('scraping', '95860')
http://allrecipes.com/recipe/73000
('scraping', '73000')
http://allrecipes.com/recipe/13582
('scraping', '13582')
http://allrecipes.com/recipe/13583
('scraping', '13583')
http://allrecipes.com/recipe/14964
('scraping', '14964')
http://allrecipes.com/recipe/81066
('scraping', '81066')
http://allrecipes.com/recipe/11259
('scraping', '11259')
http://allrecipes.com/recipe/90573
('scraping', '90573')
http://allrecipes.com/recipe/55678
('scraping', '55678')
http://allrecipes.com/recipe/19008
('scraping', '19008')
http://allrecipes.com/recipe/61001
('scraping', '61001')
http://allrecipes.com/recipe/55671
('scraping', '55671')
http://allrecipes.com/recipe/19005
('scraping', '19005')
http://allrecipes.com/recipe/78849
('scraping', '16775')
http://allrecipes.com/recipe/19272
('scraping', '19272')
http://allrecipes.com/recipe/19273
('scraping', '19273')
http://allrecipes.com/recipe/22166
('scraping', '22166')
http://allrecipes.com/recipe/22161
('scraping', '22161')
http://allrecipes.com/recipe/12060
('scraping', '12060')
http://allrecipes.com/recipe/88094
('scraping', '88094')
http://allrecipes.com/recipe/12065
('scraping', '12065')
http://allrecipes.com/recipe/81129
('scraping', '81129')
http://allrecipes.com/recipe/60833
('scraping', '60833')
http://allrecipes.com/recipe/25749
('scraping', '25749')
http://allrecipes.com/recipe/86603
('scraping', '86603')
http://allrecipes.com/recipe/21848
('scraping', '21848')
http://allrecipes.com/recipe/21849
('scraping', '21849')
http://allrecipes.com/recipe/24838
('scraping', '24838')
http://allrecipes.com/recipe/24834
('scraping', '24834')
http://allrecipes.com/recipe/21663
('scraping', '21663')
http://allrecipes.com/recipe/21666
('scraping', '21666')
http://allrecipes.com/recipe/75331
('scraping', '75331')
http://allrecipes.com/recipe/26094
('scraping', '26094')
http://allrecipes.com/recipe/11444
('scraping', '11444')
http://allrecipes.com/recipe/11449
('scraping', '11449')
http://allrecipes.com/recipe/46547
('scraping', '46547')
http://allrecipes.com/recipe/17139
('scraping', '17139')
http://allrecipes.com/recipe/17429
('scraping', '17429')
http://allrecipes.com/recipe/17428
('scraping', '17428')
Check point Iter: 4900
http://allrecipes.com/recipe/17427
('scraping', '17427')
http://allrecipes.com/recipe/17424
('scraping', '17424')
http://allrecipes.com/recipe/8644
('scraping', '8644')
http://allrecipes.com/recipe/13339
('scraping', '13339')
http://allrecipes.com/recipe/36722
('scraping', '36722')
http://allrecipes.com/recipe/36728
('scraping', '36728')
http://allrecipes.com/recipe/13337
('scraping', '13337')
http://allrecipes.com/recipe/13336
('scraping', '13336')
http://allrecipes.com/recipe/9559
('scraping', '9559')
http://allrecipes.com/recipe/53929
('scraping', '53929')
http://allrecipes.com/recipe/9551
('scraping', '9551')
http://allrecipes.com/recipe/53926
('scraping', '53926')
http://allrecipes.com/recipe/9557
('scraping', '9557')
http://allrecipes.com/recipe/9556
('scraping', '9556')
http://allrecipes.com/recipe/74845
('scraping', '74845')
http://allrecipes.com/recipe/20138
('scraping', '20138')
http://allrecipes.com/recipe/87249
('scraping', '87249')
http://allrecipes.com/recipe/20132
('scraping', '20132')
http://allrecipes.com/recipe/20130
('scraping', '20130')
http://allrecipes.com/recipe/25433
('scraping', '25433')
http://allrecipes.com/recipe/44764
('scraping', '44764')
http://allrecipes.com/recipe/44767
('scraping', '44767')
http://allrecipes.com/recipe/45016
('scraping', '45016')
http://allrecipes.com/recipe/41042
('scraping', '41042')
http://allrecipes.com/recipe/45010
('scraping', '45010')
http://allrecipes.com/recipe/14920
('scraping', '14920')
http://allrecipes.com/recipe/41049
('scraping', '41049')
http://allrecipes.com/recipe/26144
('scraping', '26144')
http://allrecipes.com/recipe/44491
('scraping', '44491')
http://allrecipes.com/recipe/44497
('scraping', '44497')
http://allrecipes.com/recipe/14817
('scraping', '14817')
http://allrecipes.com/recipe/18513
('scraping', '18513')
http://allrecipes.com/recipe/14815
('scraping', '14815')
http://allrecipes.com/recipe/18514
('scraping', '18514')
http://allrecipes.com/recipe/78363
('scraping', '78363')
http://allrecipes.com/recipe/80212
('scraping', '80212')
http://allrecipes.com/recipe/12592
('scraping', '12592')
http://allrecipes.com/recipe/79098
('scraping', '79098')
http://allrecipes.com/recipe/15146
('scraping', '15146')
http://allrecipes.com/recipe/15147
('scraping', '15147')
http://allrecipes.com/recipe/15144
('scraping', '15144')
http://allrecipes.com/recipe/15149
('scraping', '15149')
http://allrecipes.com/recipe/7175
('scraping', '7175')
http://allrecipes.com/recipe/8741
('scraping', '8741')
http://allrecipes.com/recipe/7171
('scraping', '7171')
http://allrecipes.com/recipe/7173
('scraping', '7173')
http://allrecipes.com/recipe/7172
('scraping', '7172')
http://allrecipes.com/recipe/78142
('scraping', '78142')
http://allrecipes.com/recipe/31739
('scraping', '31739')
http://allrecipes.com/recipe/34018
('scraping', '34018')
http://allrecipes.com/recipe/12884
('scraping', '12884')
http://allrecipes.com/recipe/12885
('scraping', '12885')
http://allrecipes.com/recipe/19851
('scraping', '19851')
http://allrecipes.com/recipe/26653
('scraping', '26653')
http://allrecipes.com/recipe/50310
('scraping', '50310')
http://allrecipes.com/recipe/26657
('scraping', '26657')
http://allrecipes.com/recipe/14764
('scraping', '14764')
http://allrecipes.com/recipe/14767
('scraping', '73951')
http://allrecipes.com/recipe/14379
('scraping', '14379')
http://allrecipes.com/recipe/38021
('scraping', '38021')
http://allrecipes.com/recipe/65038
('scraping', '65038')
http://allrecipes.com/recipe/38028
('scraping', '38028')
http://allrecipes.com/recipe/54067
('scraping', '54067')
http://allrecipes.com/recipe/87050
('scraping', '87050')
http://allrecipes.com/recipe/87059
('scraping', '87059')
http://allrecipes.com/recipe/76487
('scraping', '76487')
http://allrecipes.com/recipe/87899
('scraping', '87899')
http://allrecipes.com/recipe/17861
('scraping', '17861')
http://allrecipes.com/recipe/66904
('scraping', '66904')
http://allrecipes.com/recipe/17750
('scraping', '17750')
http://allrecipes.com/recipe/55855
('scraping', '55855')
http://allrecipes.com/recipe/15681
('scraping', '15681')
http://allrecipes.com/recipe/16766
('scraping', '16766')
http://allrecipes.com/recipe/19269
('scraping', '19269')
http://allrecipes.com/recipe/29503
('scraping', '29503')
http://allrecipes.com/recipe/16764
('scraping', '16764')
http://allrecipes.com/recipe/47705
('scraping', '47705')
http://allrecipes.com/recipe/23765
('scraping', '23765')
http://allrecipes.com/recipe/23763
('scraping', '23763')
http://allrecipes.com/recipe/15357
('scraping', '15357')
http://allrecipes.com/recipe/6910
('scraping', '6910')
http://allrecipes.com/recipe/27074
('scraping', '27074')
http://allrecipes.com/recipe/6919
('scraping', '6919')
http://allrecipes.com/recipe/18840
('scraping', '18840')
http://allrecipes.com/recipe/50768
('scraping', '50768')
Check point Iter: 5100
http://allrecipes.com/recipe/14896
('scraping', '14896')
http://allrecipes.com/recipe/31508
('scraping', '31508')
http://allrecipes.com/recipe/50761
('scraping', '50761')
http://allrecipes.com/recipe/37012
('scraping', '37012')
http://allrecipes.com/recipe/7727
('scraping', '7727')
http://allrecipes.com/recipe/72567
('scraping', '72567')
http://allrecipes.com/recipe/54964
('scraping', '54964')
http://allrecipes.com/recipe/19478
('scraping', '19478')
http://allrecipes.com/recipe/19479
('scraping', '19479')
http://allrecipes.com/recipe/19476
('scraping', '19476')
http://allrecipes.com/recipe/32552
('scraping', '32552')
http://allrecipes.com/recipe/55733
('scraping', '55733')
http://allrecipes.com/recipe/55732
('scraping', '55732')
http://allrecipes.com/recipe/8329
('scraping', '8329')
http://allrecipes.com/recipe/8328
('scraping', '8328')
http://allrecipes.com/recipe/88308
('scraping', '88308')
http://allrecipes.com/recipe/6701
('scraping', '6701')
http://allrecipes.com/recipe/6700
('scraping', '6700')
http://allrecipes.com/recipe/8321
('scraping', '8321')
http://allrecipes.com/recipe/9910
('scraping', '9910')
http://allrecipes.com/recipe/9913
('scraping', '9913')
http://allrecipes.com/recipe/12074
('scraping', '12074')
http://allrecipes.com/recipe/9915
('scraping', '9915')
http://allrecipes.com/recipe/92738
('scraping', '92738')
http://allrecipes.com/recipe/39086
('scraping', '39086')
http://allrecipes.com/recipe/39082
('scraping', '39082')
http://allrecipes.com/recipe/24473
('scraping', '24473')
http://allrecipes.com/recipe/24470
('scraping', '24470')
http://allrecipes.com/recipe/63873
('scraping', '63873')
http://allrecipes.com/recipe/24478
('scraping', '24478')
http://allrecipes.com/recipe/19218
('scraping', '19218')
http://allrecipes.com/recipe/19213
('scraping', '19213')
http://allrecipes.com/recipe/63870
('scraping', '63870')
http://allrecipes.com/recipe/55885
('scraping', '55885')
http://allrecipes.com/recipe/22418
('scraping', '22418')
http://allrecipes.com/recipe/22146
('scraping', '22146')
http://allrecipes.com/recipe/22140
('scraping', '22140')
http://allrecipes.com/recipe/22411
('scraping', '22411')
http://allrecipes.com/recipe/13746
('scraping', '13746')
http://allrecipes.com/recipe/13745
('scraping', '13745')
http://allrecipes.com/recipe/13741
('scraping', '13741')
http://allrecipes.com/recipe/81454
('scraping', '81454')
http://allrecipes.com/recipe/26302
('scraping', '26302')
http://allrecipes.com/recipe/81450
('scraping', '81450')
http://allrecipes.com/recipe/13748
('scraping', '13748')
http://allrecipes.com/recipe/51603
('scraping', '51603')
http://allrecipes.com/recipe/93289
('scraping', '93289')
http://allrecipes.com/recipe/19570
('scraping', '19570')
http://allrecipes.com/recipe/21829
('scraping', '21829')
http://allrecipes.com/recipe/21820
('scraping', '21820')
http://allrecipes.com/recipe/94254
('scraping', '94254')
http://allrecipes.com/recipe/90413
('scraping', '90413')
http://allrecipes.com/recipe/23546
('scraping', '23546')
http://allrecipes.com/recipe/11429
('scraping', '11429')
http://allrecipes.com/recipe/11421
('scraping', '11421')
http://allrecipes.com/recipe/11420
('scraping', '11420')
http://allrecipes.com/recipe/11427
('scraping', '11427')
http://allrecipes.com/recipe/17441
('scraping', '17441')
http://allrecipes.com/recipe/17114
('scraping', '76923')
http://allrecipes.com/recipe/76922
('scraping', '76922')
http://allrecipes.com/recipe/65924
('scraping', '65924')
http://allrecipes.com/recipe/27246
('scraping', '27246')
http://allrecipes.com/recipe/76924
('scraping', '76924')
http://allrecipes.com/recipe/65299
('scraping', '65299')
http://allrecipes.com/recipe/7756
('scraping', '7756')
http://allrecipes.com/recipe/7414
('scraping', '7414')
http://allrecipes.com/recipe/16047
('scraping', '16047')
http://allrecipes.com/recipe/42414
('scraping', '42414')
http://allrecipes.com/recipe/16182
('scraping', '16182')
http://allrecipes.com/recipe/16639
('scraping', '16639')
http://allrecipes.com/recipe/16186
('scraping', '16186')
http://allrecipes.com/recipe/80648
('scraping', '80648')
http://allrecipes.com/recipe/16634
('scraping', '16634')
http://allrecipes.com/recipe/74295
('scraping', '74295')
http://allrecipes.com/recipe/74294
('scraping', '74294')
http://allrecipes.com/recipe/88115
('scraping', '88115')
http://allrecipes.com/recipe/12747
('scraping', '12747')
http://allrecipes.com/recipe/95409
('scraping', '95409')
http://allrecipes.com/recipe/12743
('scraping', '12743')
http://allrecipes.com/recipe/55150
('scraping', '55150')
http://allrecipes.com/recipe/10923
('scraping', '10923')
http://allrecipes.com/recipe/17329
('scraping', '17329')
http://allrecipes.com/recipe/79469
('scraping', '79469')
http://allrecipes.com/recipe/17320
('scraping', '17320')
http://allrecipes.com/recipe/52331
('scraping', '52331')
http://allrecipes.com/recipe/52559
('scraping', '52559')
http://allrecipes.com/recipe/7931
('scraping', '7931')
http://allrecipes.com/recipe/7930
('scraping', '7930')
http://allrecipes.com/recipe/7281
('scraping', '7281')
http://allrecipes.com/recipe/9458
('scraping', '9458')
http://allrecipes.com/recipe/7937
('scraping', '7937')
http://allrecipes.com/recipe/9455
('scraping', '9455')
http://allrecipes.com/recipe/9456
('scraping', '9456')
http://allrecipes.com/recipe/7288
('scraping', '7288')
http://allrecipes.com/recipe/9451
('scraping', '9451')
Check point Iter: 5300
http://allrecipes.com/recipe/20068
('scraping', '20068')
http://allrecipes.com/recipe/16989
('scraping', '16989')
http://allrecipes.com/recipe/16988
('scraping', '16988')
http://allrecipes.com/recipe/21145
('scraping', '21145')
http://allrecipes.com/recipe/16450
('scraping', '16450')
http://allrecipes.com/recipe/16457
('scraping', '16457')
http://allrecipes.com/recipe/73346
('scraping', '73346')
http://allrecipes.com/recipe/12293
('scraping', '12293')
http://allrecipes.com/recipe/9494
('scraping', '9494')
http://allrecipes.com/recipe/12291
('scraping', '12291')
http://allrecipes.com/recipe/12296
('scraping', '12296')
http://allrecipes.com/recipe/12294
('scraping', '12294')
http://allrecipes.com/recipe/86811
('scraping', '86811')
http://allrecipes.com/recipe/26111
('scraping', '26111')
http://allrecipes.com/recipe/20810
('scraping', '20810')
http://allrecipes.com/recipe/20816
('scraping', '20816')
http://allrecipes.com/recipe/63800
('scraping', '63800')
http://allrecipes.com/recipe/37761
('scraping', '37761')
http://allrecipes.com/recipe/46604
('scraping', '46604')
http://allrecipes.com/recipe/22941
('scraping', '22941')
http://allrecipes.com/recipe/37449
('scraping', '37449')
http://allrecipes.com/recipe/22943
('scraping', '22943')
http://allrecipes.com/recipe/21361
('scraping', '21361')
http://allrecipes.com/recipe/22948
('scraping', '22948')
http://allrecipes.com/recipe/21364
('scraping', '21364')
http://allrecipes.com/recipe/38473
('scraping', '38473')
http://allrecipes.com/recipe/56946
('scraping', '56946')
http://allrecipes.com/recipe/38475
('scraping', '38475')
http://allrecipes.com/recipe/84760
('scraping', '84760')
http://allrecipes.com/recipe/13309
('scraping', '13309')
http://allrecipes.com/recipe/17580
('scraping', '17580')
http://allrecipes.com/recipe/90996
('scraping', '90996')
http://allrecipes.com/recipe/90994
('scraping', '90994')
http://allrecipes.com/recipe/12621
('scraping', '12621')
http://allrecipes.com/recipe/90991
('scraping', '90991')
http://allrecipes.com/recipe/70539
('scraping', '70539')
http://allrecipes.com/recipe/37258
('scraping', '37258')
http://allrecipes.com/recipe/14174
('scraping', '14174')
http://allrecipes.com/recipe/18496
('scraping', '18496')
http://allrecipes.com/recipe/14176
('scraping', '14176')
http://allrecipes.com/recipe/18493
('scraping', '18493')
http://allrecipes.com/recipe/14171
('scraping', '14171')
http://allrecipes.com/recipe/18491
('scraping', '18491')
http://allrecipes.com/recipe/14173
('scraping', '14173')
http://allrecipes.com/recipe/71665
('scraping', '71665')
http://allrecipes.com/recipe/71916
('scraping', '71916')
http://allrecipes.com/recipe/14178
('scraping', '14178')
http://allrecipes.com/recipe/15452
('scraping', '15452')
http://allrecipes.com/recipe/71663
('scraping', '71663')
http://allrecipes.com/recipe/11988
('scraping', '11988')
http://allrecipes.com/recipe/58638
('scraping', '58638')
http://allrecipes.com/recipe/11980
('scraping', '11980')
http://allrecipes.com/recipe/11986
('scraping', '11986')
http://allrecipes.com/recipe/6964
('scraping', '6964')
http://allrecipes.com/recipe/60607
('scraping', '60607')
http://allrecipes.com/recipe/15900
('scraping', '15900')
http://allrecipes.com/recipe/10580
('scraping', '10580')
http://allrecipes.com/recipe/10583
('scraping', '13375')
http://allrecipes.com/recipe/25479
('scraping', '25479')
http://allrecipes.com/recipe/13372
('scraping', '13372')
http://allrecipes.com/recipe/13370
('scraping', '13370')
http://allrecipes.com/recipe/36279
('scraping', '36279')
http://allrecipes.com/recipe/7863
('scraping', '7863')
http://allrecipes.com/recipe/36277
('scraping', '36277')
http://allrecipes.com/recipe/36275
('scraping', '36275')
http://allrecipes.com/recipe/24872
('scraping', '24872')
http://allrecipes.com/recipe/24874
('scraping', '24874')
http://allrecipes.com/recipe/21807
('scraping', '21807')
http://allrecipes.com/recipe/24879
('scraping', '24879')
http://allrecipes.com/recipe/45582
('scraping', '45582')
http://allrecipes.com/recipe/64263
('scraping', '64263')
http://allrecipes.com/recipe/64262
('scraping', '64262')
http://allrecipes.com/recipe/41267
('scraping', '41267')
http://allrecipes.com/recipe/20174
('scraping', '20174')
http://allrecipes.com/recipe/20173
('scraping', '20173')
http://allrecipes.com/recipe/41261
('scraping', '41261')
http://allrecipes.com/recipe/16846
('scraping', '16846')
http://allrecipes.com/recipe/16847
('scraping', '16847')
http://allrecipes.com/recipe/16840
('scraping', '16840')
http://allrecipes.com/recipe/16841
('scraping', '16841')
http://allrecipes.com/recipe/80438
('scraping', '80438')
http://allrecipes.com/recipe/45221
('scraping', '45221')
http://allrecipes.com/recipe/95587
('scraping', '95587')
http://allrecipes.com/recipe/16848
('scraping', '16848')
http://allrecipes.com/recipe/12170
('scraping', '12170')
http://allrecipes.com/recipe/12171
('scraping', '12171')
http://allrecipes.com/recipe/14512
('scraping', '14512')
http://allrecipes.com/recipe/12178
('scraping', '12178')
http://allrecipes.com/recipe/12179
('scraping', '12179')
http://allrecipes.com/recipe/90035
('scraping', '90035')
http://allrecipes.com/recipe/90033
('scraping', '90033')
http://allrecipes.com/recipe/41007
('scraping', '41007')
http://allrecipes.com/recipe/11026
('scraping', '11026')
http://allrecipes.com/recipe/9663
('scraping', '9663')
Check point Iter: 5500
http://allrecipes.com/recipe/9662
('scraping', '9662')
http://allrecipes.com/recipe/9661
('scraping', '9661')
http://allrecipes.com/recipe/10119
('scraping', '10119')
http://allrecipes.com/recipe/14501
('scraping', '14501')
http://allrecipes.com/recipe/10114
('scraping', '10114')
http://allrecipes.com/recipe/10447
('scraping', '10447')
http://allrecipes.com/recipe/53650
('scraping', '53650')
http://allrecipes.com/recipe/10113
('scraping', '10113')
http://allrecipes.com/recipe/99074
('scraping', '99074')
http://allrecipes.com/recipe/10443
('scraping', '10443')
http://allrecipes.com/recipe/18806
('scraping', '18806')
http://allrecipes.com/recipe/21772
('scraping', '21772')
http://allrecipes.com/recipe/18802
('scraping', '18802')
http://allrecipes.com/recipe/21771
('scraping', '21771')
http://allrecipes.com/recipe/78323
('scraping', '78323')
http://allrecipes.com/recipe/18809
('scraping', '18809')
http://allrecipes.com/recipe/21778
('scraping', '21778')
http://allrecipes.com/recipe/8971
('scraping', '8971')
http://allrecipes.com/recipe/25277
('scraping', '25277')
http://allrecipes.com/recipe/7133
('scraping', '7133')
http://allrecipes.com/recipe/7136
('scraping', '7136')
http://allrecipes.com/recipe/38165
('scraping', '38165')
http://allrecipes.com/recipe/78189
('scraping', '78189')
http://allrecipes.com/recipe/84204
('scraping', '84204')
http://allrecipes.com/recipe/40604
('scraping', '40604')
http://allrecipes.com/recipe/40352
('scraping', '40352')
http://allrecipes.com/recipe/67716
('scraping', '67716')
http://allrecipes.com/recipe/24201
('scraping', '24201')
http://allrecipes.com/recipe/24203
('scraping', '24203')
http://allrecipes.com/recipe/24204
('scraping', '24204')
http://allrecipes.com/recipe/24207
('scraping', '24207')
http://allrecipes.com/recipe/35985
('scraping', '35985')
http://allrecipes.com/recipe/68891
('scraping', '68891')
http://allrecipes.com/recipe/14720
('scraping', '14720')
http://allrecipes.com/recipe/14722
('scraping', '14722')
http://allrecipes.com/recipe/81246
('scraping', '81246')
http://allrecipes.com/recipe/76059
('scraping', '76059')
http://allrecipes.com/recipe/9441
('scraping', '9441')
http://allrecipes.com/recipe/76053
('scraping', '76053')
http://allrecipes.com/recipe/76723
('scraping', '76723')
http://allrecipes.com/recipe/72007
('scraping', '72007')
http://allrecipes.com/recipe/13973
('scraping', '13973')
http://allrecipes.com/recipe/13979
('scraping', '13979')
http://allrecipes.com/recipe/13978
('scraping', '13978')
http://allrecipes.com/recipe/77232
('scraping', '77232')
http://allrecipes.com/recipe/18111
('scraping', '18111')
http://allrecipes.com/recipe/7940
('scraping', '7940')
http://allrecipes.com/recipe/79581
('scraping', '79581')
http://allrecipes.com/recipe/8590
('scraping', '8590')
http://allrecipes.com/recipe/11239
('scraping', '11239')
http://allrecipes.com/recipe/99810
('scraping', '99810')
http://allrecipes.com/recipe/11235
('scraping', '11235')
http://allrecipes.com/recipe/87785
('scraping', '87785')
http://allrecipes.com/recipe/87784
('scraping', '87784')
http://allrecipes.com/recipe/87780
('scraping', '87780')
http://allrecipes.com/recipe/71221
('scraping', '71221')
http://allrecipes.com/recipe/51407
('scraping', '22455')
http://allrecipes.com/recipe/86371
('scraping', '86371')
http://allrecipes.com/recipe/46704
('scraping', '46704')
http://allrecipes.com/recipe/86375
('scraping', '86375')
http://allrecipes.com/recipe/81414
('scraping', '81414')
http://allrecipes.com/recipe/35798
('scraping', '35798')
http://allrecipes.com/recipe/89165
('scraping', '89165')
http://allrecipes.com/recipe/11396
('scraping', '11396')
http://allrecipes.com/recipe/13709
('scraping', '13709')
http://allrecipes.com/recipe/11392
('scraping', '11392')
http://allrecipes.com/recipe/89163
('scraping', '89163')
http://allrecipes.com/recipe/13701
('scraping', '13701')
http://allrecipes.com/recipe/24052
('scraping', '24052')
http://allrecipes.com/recipe/51090
('scraping', '51090')
http://allrecipes.com/recipe/32513
('scraping', '32513')
http://allrecipes.com/recipe/51092
('scraping', '51092')
http://allrecipes.com/recipe/51095
('scraping', '51095')
http://allrecipes.com/recipe/7282
('scraping', '7282')
http://allrecipes.com/recipe/19435
('scraping', '19435')
http://allrecipes.com/recipe/93243
('scraping', '93243')
http://allrecipes.com/recipe/19438
('scraping', '19438')
http://allrecipes.com/recipe/93240
('scraping', '93240')
http://allrecipes.com/recipe/96366
('scraping', '96366')
http://allrecipes.com/recipe/94213
('scraping', '94213')
http://allrecipes.com/recipe/94215
('scraping', '94215')
http://allrecipes.com/recipe/94214
('scraping', '94214')
http://allrecipes.com/recipe/94217
('scraping', '94217')
http://allrecipes.com/recipe/52277
('scraping', '52277')
http://allrecipes.com/recipe/73257
('scraping', '73257')
http://allrecipes.com/recipe/23854
('scraping', '23854')
http://allrecipes.com/recipe/23851
('scraping', '23851')
http://allrecipes.com/recipe/24955
('scraping', '24955')
http://allrecipes.com/recipe/26151
('scraping', '26151')
http://allrecipes.com/recipe/24954
('scraping', '24954')
http://allrecipes.com/recipe/16283
('scraping', '16283')
http://allrecipes.com/recipe/27169
('scraping', '27169')
http://allrecipes.com/recipe/16285
('scraping', '16285')
http://allrecipes.com/recipe/52018
('scraping', '52018')
http://allrecipes.com/recipe/23039
('scraping', '23039')
http://allrecipes.com/recipe/86999
('scraping', '86999')
http://allrecipes.com/recipe/38880
('scraping', '38880')
http://allrecipes.com/recipe/38881
('scraping', '38881')
http://allrecipes.com/recipe/25453
('scraping', '25453')
http://allrecipes.com/recipe/25457
('scraping', '25457')
http://allrecipes.com/recipe/25456
('scraping', '25456')
http://allrecipes.com/recipe/25454
('scraping', '25454')
http://allrecipes.com/recipe/68436
('scraping', '68436')
http://allrecipes.com/recipe/25459
('scraping', '25459')
http://allrecipes.com/recipe/25106
('scraping', '25106')
http://allrecipes.com/recipe/25100
('scraping', '25100')
http://allrecipes.com/recipe/24992
('scraping', '24992')
http://allrecipes.com/recipe/8549
('scraping', '8549')
http://allrecipes.com/recipe/74153
('scraping', '74153')
http://allrecipes.com/recipe/36694
('scraping', '36694')
http://allrecipes.com/recipe/24040
('scraping', '24040')
http://allrecipes.com/recipe/24852
('scraping', '24852')
http://allrecipes.com/recipe/23740
('scraping', '23740')
http://allrecipes.com/recipe/7874
('scraping', '7874')
http://allrecipes.com/recipe/7877
('scraping', '7877')
http://allrecipes.com/recipe/7870
('scraping', '7870')
http://allrecipes.com/recipe/7872
('scraping', '7872')
http://allrecipes.com/recipe/57194
('scraping', '57194')
http://allrecipes.com/recipe/39935
('scraping', '39935')
http://allrecipes.com/recipe/16868
('scraping', '16868')
http://allrecipes.com/recipe/22349
('scraping', '22349')
http://allrecipes.com/recipe/42305
('scraping', '42305')
http://allrecipes.com/recipe/12159
('scraping', '12159')
http://allrecipes.com/recipe/12154
('scraping', '12154')
http://allrecipes.com/recipe/12157
('scraping', '12157')
http://allrecipes.com/recipe/10137
('scraping', '10137')
http://allrecipes.com/recipe/90017
('scraping', '90017')
http://allrecipes.com/recipe/10131
('scraping', '10131')
http://allrecipes.com/recipe/10133
('scraping', '10133')
http://allrecipes.com/recipe/10139
('scraping', '10139')
http://allrecipes.com/recipe/70702
('scraping', '70702')
http://allrecipes.com/recipe/9649
('scraping', '9649')
http://allrecipes.com/recipe/9648
('scraping', '9648')
http://allrecipes.com/recipe/40997
('scraping', '40997')
http://allrecipes.com/recipe/9316
('scraping', '9316')
http://allrecipes.com/recipe/10421
('scraping', '10421')
http://allrecipes.com/recipe/8956
('scraping', '8956')
http://allrecipes.com/recipe/8957
('scraping', '8957')
http://allrecipes.com/recipe/8955
('scraping', '8955')
http://allrecipes.com/recipe/8952
('scraping', '8952')
http://allrecipes.com/recipe/18867
('scraping', '18867')
http://allrecipes.com/recipe/8950
('scraping', '8950')
http://allrecipes.com/recipe/8951
('scraping', '8951')
http://allrecipes.com/recipe/21754
http://allrecipes.com/recipe/12492
('scraping', '12492')
http://allrecipes.com/recipe/30749
('scraping', '30749')
http://allrecipes.com/recipe/75274
('scraping', '75274')
http://allrecipes.com/recipe/39351
('scraping', '39351')
http://allrecipes.com/recipe/39354
('scraping', '39354')
http://allrecipes.com/recipe/67694
('scraping', '67694')
http://allrecipes.com/recipe/20868
('scraping', '20868')
http://allrecipes.com/recipe/50708
('scraping', '50708')
http://allrecipes.com/recipe/9659
('scraping', '9659')
http://allrecipes.com/recipe/26714
('scraping', '26714')
http://allrecipes.com/recipe/50253
('scraping', '50253')
http://allrecipes.com/recipe/8385
('scraping', '8385')
http://allrecipes.com/recipe/8381
('scraping', '8381')
http://allrecipes.com/recipe/33056
('scraping', '33056')
http://allrecipes.com/recipe/12062
('scraping', '12062')
http://allrecipes.com/recipe/24410
('scraping', '24410')
http://allrecipes.com/recipe/24411
('scraping', '24411')
http://allrecipes.com/recipe/12063
('scraping', '12063')
http://allrecipes.com/recipe/24415
('scraping', '24415')
http://allrecipes.com/recipe/34692
('scraping', '34692')
http://allrecipes.com/recipe/23297
('scraping', '23297')
http://allrecipes.com/recipe/23296
('scraping', '23296')
http://allrecipes.com/recipe/23290
('scraping', '23290')
http://allrecipes.com/recipe/22471
('scraping', '22471')
http://allrecipes.com/recipe/22472
('scraping', '22472')
http://allrecipes.com/recipe/22473
('scraping', '22473')
http://allrecipes.com/recipe/22475
('scraping', '22475')
Check point Iter: 6000
http://allrecipes.com/recipe/13722
('scraping', '13722')
http://allrecipes.com/recipe/13724
('scraping', '13724')
http://allrecipes.com/recipe/86359
('scraping', '86359')
http://allrecipes.com/recipe/13728
('scraping', '13728')
http://allrecipes.com/recipe/26363
('scraping', '26363')
http://allrecipes.com/recipe/11379
('scraping', '11379')
http://allrecipes.com/recipe/11374
('scraping', '11374')
http://allrecipes.com/recipe/89149
('scraping', '89149')
http://allrecipes.com/recipe/89148
('scraping', '89148')
http://allrecipes.com/recipe/19418
('scraping', '19418')
http://allrecipes.com/recipe/55027
('scraping', '55027')
http://allrecipes.com/recipe/51075
('scraping', '51075')
http://allrecipes.com/recipe/19142
('scraping', '19142')
http://allrecipes.com/recipe/55750
('scraping', '55750')
http://allrecipes.com/recipe/60345
('scraping', '60345')
http://allrecipes.com/recipe/40515
('scraping', '40515')
http://allrecipes.com/recipe/56590
('scraping', '56590')
http://allrecipes.com/recipe/35448
('scraping', '35448')
http://allrecipes.com/recipe/92695
('scraping', '92695')
http://allrecipes.com/recipe/23877
('scraping', '23877')
http://allrecipes.com/recipe/87596
('scraping', '87596')
http://allrecipes.com/recipe/12440
('scraping', '12440')
http://allrecipes.com/recipe/27140
('scraping', '27140')
http://allrecipes.com/recipe/51610
('scraping', '51610')
http://allrecipes.com/recipe/9871
('scraping', '9871')
http://allrecipes.com/recipe/56047
('scraping', '56047')
http://allrecipes.com/recipe/25129
('scraping', '25129')
http://allrecipes.com/recipe/43990
('scraping', '43990')
http://allrecipes.com/recipe/25120
('scraping', '25120')
http://allrecipes.com/recipe/25125
('scraping', '25125')
http://allrecipes.com/recipe/99155
('scraping', '99155')
http://allrecipes.com/recipe/42022
('scraping', '42022')
http://allrecipes.com/recipe/74132
('scraping', '74132')
http://allrecipes.com/recipe/74130
('scraping', '74130')
http://allrecipes.com/recipe/15898
('scraping', '15898')
http://allrecipes.com/recipe/75840
('scraping', '75840')
http://allrecipes.com/recipe/19831
('scraping', '19831')
http://allrecipes.com/recipe/82526
('scraping', '82526')
http://allrecipes.com/recipe/64519
('scraping', '64519')
http://allrecipes.com/recipe/62824
('scraping', '62824')
http://allrecipes.com/recipe/11159
('scraping', '11159')
http://allrecipes.com/recipe/99218
('scraping', '99218')
http://allrecipes.com/recipe/99219
('scraping', '99219')
http://allrecipes.com/recipe/63696
('scraping', '63696')
http://allrecipes.com/recipe/63695
('scraping', '63695')
http://allrecipes.com/recipe/7857
('scraping', '7857')
http://allrecipes.com/recipe/7855
('scraping', '7855')
http://allrecipes.com/recipe/86024
('scraping', '86024')
http://allrecipes.com/recipe/16807
('scraping', '16807')
http://allrecipes.com/recipe/16805
('scraping', '16805')
http://allrecipes.com/recipe/24836
('scraping', '24836')
http://allrecipes.com/recipe/9331
('scraping', '9331')
http://allrecipes.com/recipe/10405
('scraping', '10405')
http://allrecipes.com/recipe/9332
('scraping', '9332')
http://allrecipes.com/recipe/53618
('scraping', '53618')
http://allrecipes.com/recipe/70230
('scraping', '70230')
http://allrecipes.com/recipe/9338
('scraping', '9338')
http://allrecipes.com/recipe/9629
('scraping', '9629')
http://allrecipes.com/recipe/9624
('scraping', '9624')
http://allrecipes.com/recipe/58992
('scraping', '58992')
http://allrecipes.com/recipe/37019
http://allrecipes.com/recipe/20473
('scraping', '20473')
http://allrecipes.com/recipe/20471
('scraping', '20471')
http://allrecipes.com/recipe/9292
('scraping', '9292')
http://allrecipes.com/recipe/7336
('scraping', '7336')
http://allrecipes.com/recipe/9291
('scraping', '9291')
http://allrecipes.com/recipe/7333
('scraping', '7333')
http://allrecipes.com/recipe/9294
('scraping', '9294')
http://allrecipes.com/recipe/9295
('scraping', '9295')
http://allrecipes.com/recipe/18434
('scraping', '18434')
http://allrecipes.com/recipe/11962
('scraping', '11962')
http://allrecipes.com/recipe/18439
('scraping', '18439')
http://allrecipes.com/recipe/71604
('scraping', '71604')
http://allrecipes.com/recipe/15600
('scraping', '15600')
http://allrecipes.com/recipe/15602
('scraping', '15602')
http://allrecipes.com/recipe/76377
('scraping', '76377')
http://allrecipes.com/recipe/30188
('scraping', '30188')
http://allrecipes.com/recipe/10215
('scraping', '10215')
http://allrecipes.com/recipe/10214
('scraping', '10214')
http://allrecipes.com/recipe/10210
('scraping', '10210')
http://allrecipes.com/recipe/10218
('scraping', '10218')
http://allrecipes.com/recipe/7051
('scraping', '7051')
http://allrecipes.com/recipe/33982
('scraping', '33982')
http://allrecipes.com/recipe/54753
('scraping', '54753')
http://allrecipes.com/recipe/37209
('scraping', '37209')
http://allrecipes.com/recipe/37755
('scraping', '37755')
http://allrecipes.com/recipe/18386
('scraping', '18386')
http://allrecipes.com/recipe/37759
('scraping', '37759')
http://allrecipes.com/recipe/18384
('scraping', '18384')
http://allrecipes.com/recipe/78005
('scraping', '78005')
http://allrecipes.com/recipe/8148
('scraping', '8148')
http://allrecipes.com/recipe/15930
('scraping', '15930')
http://allrecipes.com/recipe/15934
('scraping', '15934')
http://allrecipes.com/recipe/76513
('scraping', '76513')
http://allrecipes.com/recipe/15938
('scraping', '15938')
http://allrecipes.com/recipe/8632
('scraping', '8632')
http://allrecipes.com/recipe/8147
('scraping', '8147')
http://allrecipes.com/recipe/95366
('scraping', '95366')
http://allrecipes.com/recipe/24380
('scraping', '24380')
http://allrecipes.com/recipe/24381
('scraping', '24381')
http://allrecipes.com/recipe/86728
('scraping', '86728')
http://allrecipes.com/recipe/24383
('scraping', '24383')
http://allrecipes.com/recipe/24385
('scraping', '24385')
http://allrecipes.com/recipe/24387
('scraping', '24387')
http://allrecipes.com/recipe/68933
('scraping', '68933')
http://allrecipes.com/recipe/47835
('scraping', '47835')
http://allrecipes.com/recipe/21332
('scraping', '21332')
http://allrecipes.com/recipe/9990
('scraping', '9990')
http://allrecipes.com/recipe/77350
('scraping', '77350')
http://allrecipes.com/recipe/9995
('scraping', '9995')
http://allrecipes.com/recipe/9997
('scraping', '9997')
http://allrecipes.com/recipe/11037
('scraping', '11037')
http://allrecipes.com/recipe/14514
('scraping', '14514')
http://allrecipes.com/recipe/14515
('scraping', '14515')
http://allrecipes.com/recipe/11032
('scraping', '11032')
http://allrecipes.com/recipe/14510
('scraping', '14510')
http://allrecipes.com/recipe/91914
('scraping', '91914')
http://allrecipes.com/recipe/11039
('scraping', '11039')
http://allrecipes.com/recipe/72651
('scraping', '72651')
http://allrecipes.com/recipe/72874
('scraping', '72874')
http://allrecipes.com/recipe/36531
('scraping', '36531')
http://allrecipes.com/recipe/72876
('scraping', '72876')
http://allrecipes.com/recipe/72657
('scraping', '72657')
http://allrecipes.com/recipe/50980
('scraping', '50980')
http://allrecipes.com/recipe/19884
('scraping', '19884')
http://allrecipes.com/recipe/11358
('scraping', '11358')
http://allrecipes.com/recipe/19162
('scraping', '19162')
http://allrecipes.com/recipe/11352
('scraping', '11352')
http://allrecipes.com/recipe/11350
('scraping', '11350')
http://allrecipes.com/recipe/93202
('scraping', '93202')
http://allrecipes.com/recipe/11355
('scraping', '11355')
http://allrecipes.com/recipe/91533
('scraping', '91533')
http://allrecipes.com/recipe/51588
('scraping', '51588')
http://allrecipes.com/recipe/61327
('scraping', '61327')
http://allrecipes.com/recipe/51584
('scraping', '51584')
http://allrecipes.com/recipe/23672
('scraping', '23672')
Check point Iter: 6300
http://allrecipes.com/recipe/51631
('scraping', '51631')
http://allrecipes.com/recipe/47301
('scraping', '47301')
http://allrecipes.com/recipe/19299
('scraping', '19299')
http://allrecipes.com/recipe/23816
('scraping', '23816')
http://allrecipes.com/recipe/27120
('scraping', '27120')
http://allrecipes.com/recipe/65663
('scraping', '65663')
http://allrecipes.com/recipe/27126
('scraping', '27126')
http://allrecipes.com/recipe/25416
('scraping', '25416')
http://allrecipes.com/recipe/25143
('scraping', '25143')
http://allrecipes.com/recipe/25414
('scraping', '25414')
http://allrecipes.com/recipe/25146
('scraping', '25146')
http://allrecipes.com/recipe/25148
('scraping', '25148')
http://allrecipes.com/recipe/60492
('scraping', '60492')
http://allrecipes.com/recipe/25419
('scraping', '25419')
http://allrecipes.com/recipe/25418
('scraping', '25418')
http://allrecipes.com/recipe/80769
('scraping', '80769')
http://allrecipes.com/recipe/82896
('scraping', '82896')
http://allrecipes.com/recipe/42558
('scraping', '17768')
http://allrecipes.com/recipe/20769
('scraping', '20769')
http://allrecipes.com/recipe/60685
('scraping', '60685')
http://allrecipes.com/recipe/81955
('scraping', '81955')
http://allrecipes.com/recipe/81956
('scraping', '81956')
http://allrecipes.com/recipe/60681
('scraping', '60681')
http://allrecipes.com/recipe/38866
('scraping', '38866')
http://allrecipes.com/recipe/24106
('scraping', '24106')
http://allrecipes.com/recipe/18827
('scraping', '18827')
http://allrecipes.com/recipe/86194
('scraping', '86194')
http://allrecipes.com/recipe/42767
('scraping', '42767')
http://allrecipes.com/recipe/63888
('scraping', '63888')
http://allrecipes.com/recipe/63887
('scraping', '63887')
http://allrecipes.com/recipe/63880
('scraping', '63880')
http://allrecipes.com/recipe/85016
('scraping', '85016')
http://allrecipes.com/recipe/20450
('scraping', '20450')
http://allrecipes.com/recipe/20905
('scraping', '20905')
http://allrecipes.com/recipe/20455
('scraping', '20455')
http://allrecipes.com/recipe/20456
('scraping', '20456')
http://allrecipes.com/recipe/20457
('scraping', '20457')
http://allrecipes.com/recipe/20458
('scraping', '20458')
http://allrecipes.com/recipe/83940
('scraping', '83940')
http://allrecipes.com/recipe/83942
('scraping', '83942')
http://allrecipes.com/recipe/83945
('scraping', '83945')
http://allrecipes.com/recipe/19342
('scraping', '19342')
http://allrecipes.com/recipe/78247
('scraping', '78247')
http://allrecipes.com/recipe/78242
('scraping', '78242')
http://allrecipes.com/recipe/9951
('scraping', '9951')
http://allrecipes.com/recipe/78248
('scraping', '78248')
http://allrecipes.com/recipe/78249
('scraping', '78249')
http://allrecipes.com/recipe/58814
('scraping', '58814')
http://allrecipes.com/recipe/58813
('scraping', '58813')
http://allrecipes.com/recipe/58812
('scraping', '58812')
http://allrecipes.com/recipe/11904
('scraping', '11904')
http://allrecipes.com/recipe/33121
('scraping', '33121')
http://allrecipes.com/recipe/59143
('scraping', '59143')
http://allrecipes.com/recipe/15629
('scraping', '15629')
http://allrecipes.com/recipe/59145
('scraping', '59145')
http://allrecipes.com/recipe/12907
('scraping', '12907')
http://allrecipes.com/recipe/24008
('scraping', '24008')
http://allrecipes.com/recipe/15622
('scraping', '15622')
http://allrecipes.com/recipe/12901
('scraping', '12901')
http://allrecipes.com/recipe/10233
('scraping', '10233')
http://allrecipes.com/recipe/9015
('scraping', '9015')
http://allrecipes.com/recipe/7033
('scraping', '7033')
http://allrecipes.com/recipe/7034
('scraping', '7034')
http://allrecipes.com/recipe/53426
('scraping', '53426')
http://allrecipes.com/recipe/9012
('scraping', '9012')
http://allrecipes.com/recipe/70973
('scraping', '70973')
http://allrecipes.com/recipe/53428
('scraping', '53428')
http://allrecipes.com/recipe/70976
('scraping', '70976')
http://allrecipes.com/recipe/21504
('scraping', '21504')
http://allrecipes.com/recipe/24027
('scraping', '24027')
http://allrecipes.com/recipe/78025
('scraping', '78025')
http://allrecipes.com/recipe/24022
('scraping', '24022')
http://allrecipes.com/recipe/78028
('scraping', '78028')
http://allrecipes.com/recipe/63336
('scraping', '63336')
http://allrecipes.com/recipe/21509
('scraping', '21509')
http://allrecipes.com/recipe/21508
('scraping', '21508')
http://allrecipes.com/recipe/68484
('scraping', '68484')
http://allrecipes.com/recipe/37223
('scraping', '37223')
http://allrecipes.com/recipe/91858
('scraping', '91858')
http://allrecipes.com/recipe/37226
('scraping', '37226')
http://allrecipes.com/recipe/37225
('scraping', '37225')
http://allrecipes.com/recipe/15958
('scraping', '15958')
http://allrecipes.com/recipe/15488
('scraping', '15488')
http://allrecipes.com/recipe/9952
('scraping', '9952')
http://allrecipes.com/recipe/10747
('scraping', '10747')
http://allrecipes.com/recipe/86086
('scraping', '86086')
http://allrecipes.com/recipe/15950
('scraping', '15950')
http://allrecipes.com/recipe/15952
('scraping', '15952')
http://allrecipes.com/recipe/83369
('scraping', '83369')
http://allrecipes.com/recipe/86708
('scraping', '86708')
http://allrecipes.com/recipe/92424
('scraping', '92424')
http://allrecipes.com/recipe/7781
('scraping', '7781')
http://allrecipes.com/recipe/71888
('scraping', '71888')
http://allrecipes.com/recipe/14683
('scraping', '14683')
http://allrecipes.com/recipe/24364
('scraping', '24364')
http://allrecipes.com/recipe/24362
('scraping', '24362')
http://allrecipes.com/recipe/24363
('scraping', '24363')
http://allrecipes.com/recipe/67432
('scraping', '67432')
http://allrecipes.com/recipe/23812
('scraping', '23812')
http://allrecipes.com/recipe/77339
('scraping', '77339')
http://allrecipes.com/recipe/77338
('scraping', '77338')
http://allrecipes.com/recipe/37406
('scraping', '37406')
http://allrecipes.com/recipe/40452
('scraping', '40452')
http://allrecipes.com/recipe/14530
('scraping', '14530')
http://allrecipes.com/recipe/11011
('scraping', '11011')
http://allrecipes.com/recipe/11012
('scraping', '11012')
http://allrecipes.com/recipe/8615
('scraping', '11894')
http://allrecipes.com/recipe/12404
('scraping', '12404')
http://allrecipes.com/recipe/14604
('scraping', '14604')
http://allrecipes.com/recipe/11890
('scraping', '11890')
http://allrecipes.com/recipe/18897
('scraping', '18897')
http://allrecipes.com/recipe/29932
('scraping', '29932')
http://allrecipes.com/recipe/23649
('scraping', '23649')
http://allrecipes.com/recipe/23138
('scraping', '23138')
http://allrecipes.com/recipe/23136
('scraping', '23136')
http://allrecipes.com/recipe/23132
('scraping', '23132')
http://allrecipes.com/recipe/23130
('scraping', '23130')
http://allrecipes.com/recipe/23131
('scraping', '23131')
http://allrecipes.com/recipe/15546
('scraping', '15546')
http://allrecipes.com/recipe/27739
('scraping', '27739')
http://allrecipes.com/recipe/29959
('scraping', '29959')
http://allrecipes.com/recipe/15545
('scraping', '15545')
http://allrecipes.com/recipe/15014
('scraping', '15014')
http://allrecipes.com/recipe/15540
('scraping', '15540')
http://allrecipes.com/recipe/15017
('scraping', '15017')
http://allrecipes.com/recipe/15019
('scraping', '15019')
http://allrecipes.com/recipe/87705
('scraping', '87705')
http://allrecipes.com/recipe/8261
('scraping', '8261')
http://allrecipes.com/recipe/32116
('scraping', '32116')
http://allrecipes.com/recipe/92140
('scraping', '92140')
http://allrecipes.com/recipe/25998
('scraping', '25998')
http://allrecipes.com/recipe/25994
('scraping', '25994')
http://allrecipes.com/recipe/25992
('scraping', '25992')
http://allrecipes.com/recipe/25991
('scraping', '25991')
http://allrecipes.com/recipe/16355
('scraping', '16355')
http://allrecipes.com/recipe/74575
('scraping', '74575')
http://allrecipes.com/recipe/91946
('scraping', '91946')
http://allrecipes.com/recipe/72335
('scraping', '72335')
http://allrecipes.com/recipe/32450
('scraping', '32450')
http://allrecipes.com/recipe/72338
('scraping', '72338')
http://allrecipes.com/recipe/8408
('scraping', '8408')
http://allrecipes.com/recipe/7831
('scraping', '7831')
http://allrecipes.com/recipe/88461
('scraping', '88461')
http://allrecipes.com/recipe/88464
('scraping', '88464')
http://allrecipes.com/recipe/7570
('scraping', '7570')
http://allrecipes.com/recipe/9818
('scraping', '9818')
http://allrecipes.com/recipe/86112
('scraping', '86112')
http://allrecipes.com/recipe/9814
('scraping', '9814')
http://allrecipes.com/recipe/8815
('scraping', '8815')
http://allrecipes.com/recipe/9812
('scraping', '9812')
http://allrecipes.com/recipe/10327
('scraping', '10327')
http://allrecipes.com/recipe/50026
('scraping', '50026')
http://allrecipes.com/recipe/73578
('scraping', '73578')
http://allrecipes.com/recipe/18279
('scraping', '18279')
http://allrecipes.com/recipe/51096
('scraping', '51096')
http://allrecipes.com/recipe/18277
('scraping', '18277')
http://allrecipes.com/recipe/25090
('scraping', '25090')
http://allrecipes.com/recipe/22512
('scraping', '22512')
http://allrecipes.com/recipe/22511
('scraping', '22511')
http://allrecipes.com/recipe/22510
('scraping', '22510')
http://allrecipes.com/recipe/64819
('scraping', '64819')
http://allrecipes.com/recipe/26469
('scraping', '26469')
http://allrecipes.com/recipe/69826
('scraping', '69826')
http://allrecipes.com/recipe/70038
('scraping', '70038')
http://allrecipes.com/recipe/72558
('scraping', '72558')
http://allrecipes.com/recipe/24640
('scraping', '24640')
http://allrecipes.com/recipe/18902
('scraping', '18902')
http://allrecipes.com/recipe/24645
('scraping', '24645')
http://allrecipes.com/recipe/65361
('scraping', '65361')
http://allrecipes.com/recipe/13467
('scraping', '13467')
http://allrecipes.com/recipe/8335
('scraping', '8335')
http://allrecipes.com/recipe/77485
('scraping', '77485')
http://allrecipes.com/recipe/92941
('scraping', '92941')
http://allrecipes.com/recipe/37804
('scraping', '37804')
http://allrecipes.com/recipe/92949
[Errno 104] Connection reset by peer
Unable to Scrape: 92949
http://allrecipes.com/recipe/89982
('scraping', '89982')
http://allrecipes.com/recipe/15089
('scraping', '15089')
http://allrecipes.com/recipe/31843
('scraping', '31843')
http://allrecipes.com/recipe/31847
('scraping', '31847')
http://allrecipes.com/recipe/51774
('scraping', '51774')
http://allrecipes.com/recipe/16162
('scraping', '16162')
http://allrecipes.com/recipe/13685
('scraping', '13685')
http://allrecipes.com/recipe/51773
('scraping', '51773')
http://allrecipes.com/recipe/19646
('scraping', '19646')
http://allrecipes.com/recipe/15386
('scraping', '15386')
http://allrecipes.com/recipe/39070
('scraping', '39070')
http://allrecipes.com/recipe/17567
('scraping', '17567')
http://allrecipes.com/recipe/17565
('scraping', '17565')
http://allrecipes.com/recipe/8215
('scraping', '8215')
http://allrecipes.com/recipe/17569
('scraping', '17569')
http://allrecipes.com/recipe/13411
('scraping', '13411')
http://allrecipes.com/recipe/90931
('scraping', '90931')
http://allrecipes.com/recipe/90932
('scraping', '90932')
Check point Iter: 6800
http://allrecipes.com/recipe/60516
('scraping', '60516')
http://allrecipes.com/recipe/11674
http://allrecipes.com/recipe/21200
('scraping', '21200')
http://allrecipes.com/recipe/37524
('scraping', '37524')
http://allrecipes.com/recipe/37525
('scraping', '37525')
http://allrecipes.com/recipe/90892
('scraping', '90892')
http://allrecipes.com/recipe/90897
('scraping', '90897')
http://allrecipes.com/recipe/90543
('scraping', '90543')
http://allrecipes.com/recipe/81056
('scraping', '81056')
http://allrecipes.com/recipe/54497
('scraping', '54497')
http://allrecipes.com/recipe/14030
('scraping', '14030')
http://allrecipes.com/recipe/85758
('scraping', '85758')
http://allrecipes.com/recipe/14034
('scraping', '14034')
http://allrecipes.com/recipe/85750
('scraping', '85750')
http://allrecipes.com/recipe/17041
('scraping', '17041')
http://allrecipes.com/recipe/52630
('scraping', '52630')
http://allrecipes.com/recipe/17042
('scraping', '17042')
http://allrecipes.com/recipe/17049
('scraping', '17049')
http://allrecipes.com/recipe/13207
('scraping', '13207')
http://allrecipes.com/recipe/94650
('scraping', '94650')
http://allrecipes.com/recipe/24832
('scraping', '24832')
http://allrecipes.com/recipe/36383
('scraping', '36383')
http://allrecipes.com/recipe/57372
('scraping', '57372')
http://allrecipes.com/recipe/53850
('scraping', '53850')
http://allrecipes.com/recipe/90761
('scraping', '90761')
http://allrecipes.com/recipe/90765
('scraping', '90765')
http://allrecipes.com/recipe/14963
('scraping', '14963')
http://allrecipes.com/recipe/14966
('scraping', '14966')
http://allrecipes.com/recipe/58358
('scraping', '58358')
http://allrecipes.com/recipe/18204
('scraping', '18204')
http://allrecipes.com/recipe/14784
('scraping', '14784')
http://allrecipes.com/recipe/18203
('scraping', '18203')
http://allrecipes.com/recipe/37382
('scraping', '37382')
http://allrecipes.com/recipe/20004
('scraping', '20004')
http://allrecipes.com/recipe/20551
('scraping', '20551')
http://allrecipes.com/recipe/90426
('scraping', '90426')
http://allrecipes.com/recipe/62761
('scraping', '62761')
http://allrecipes.com/recipe/12547
('scraping', '12547')
http://allrecipes.com/recipe/42439
('scraping', '42439')
http://allrecipes.com/recipe/12816
('scraping', '12816')
http://allrecipes.com/recipe/68697
('scraping', '68697')
http://allrecipes.com/recipe/85801
('scraping', '85801')
Check point Iter: 7000
http://allrecipes.com/recipe/8561
('scraping', '8561')
http://allrecipes.com/recipe/85804
('scraping', '85804')
http://allrecipes.com/recipe/88587
('scraping', '88587')
http://allrecipes.com/recipe/84408
('scraping', '84408')
http://allrecipes.com/recipe/15780
('scraping', '15780')
http://allrecipes.com/recipe/6895
('scraping', '6895')
http://allrecipes.com/recipe/6896
('scraping', '6896')
http://allrecipes.com/recipe/6899
('scraping', '6899')
http://allrecipes.com/recipe/27185
('scraping', '27185')
http://allrecipes.com/recipe/15617
('scraping', '15617')
http://allrecipes.com/recipe/27184
('scraping', '27184')
http://allrecipes.com/recipe/83758
('scraping', '83758')
http://allrecipes.com/recipe/99630
('scraping', '99630')
http://allrecipes.com/recipe/32632
('scraping', '32632')
http://allrecipes.com/recipe/71436
('scraping', '71436')
http://allrecipes.com/recipe/17301
('scraping', '17301')
http://allrecipes.com/recipe/12549
('scraping', '12549')
http://allrecipes.com/recipe/34579
('scraping', '34579')
http://allrecipes.com/recipe/47606
('scraping', '47606')
http://allrecipes.com/recipe/8798
('scraping', '8798')
http://allrecipes.com/recipe/59400
('scraping', '59400')
http://allrecipes.com/recipe/15569
('scraping', '15569')
http://allrecipes.com/recipe/8794
('scraping', '8794')
http://allrecipes.com/recipe/8245
('scraping', '8245')
http://allrecipes.com/recipe/18530
('scraping', '12347')
http://allrecipes.com/recipe/41297
('scraping', '41297')
http://allrecipes.com/recipe/53465
('scraping', '53465')
http://allrecipes.com/recipe/10274
('scraping', '10274')
http://allrecipes.com/recipe/10273
('scraping', '10273')
http://allrecipes.com/recipe/10270
('scraping', '10270')
http://allrecipes.com/recipe/9058
('scraping', '9058')
http://allrecipes.com/recipe/63373
('scraping', '63373')
http://allrecipes.com/recipe/9053
('scraping', '9053')
http://allrecipes.com/recipe/9054
('scraping', '9054')
http://allrecipes.com/recipe/21548
('scraping', '21548')
http://allrecipes.com/recipe/33290
('scraping', '33290')
http://allrecipes.com/recipe/21542
('scraping', '21542')
http://allrecipes.com/recipe/21546
('scraping', '21546')
http://allrecipes.com/recipe/20495
('scraping', '20495')
http://allrecipes.com/recipe/22899
('scraping', '22899')
http://allrecipes.com/recipe/84364
('scraping', '84364')
http://allrecipes.com/recipe/22890
('scraping', '22890')
http://allrecipes.com/recipe/83323
('scraping', '83323')
http://allrecipes.com/recipe/85568
('scraping', '85568')
http://allrecipes.com/recipe/24322
('scraping', '24322')
http://allrecipes.com/recipe/24323
('scraping', '24323')
http://allrecipes.com/recipe/24320
('scraping', '24320')
http://allrecipes.com/recipe/24327
('scraping', '24327')
http://allrecipes.com/recipe/24324
('scraping', '24324')
http://allrecipes.com/recipe/24325
('scraping', '24325')
http://allrecipes.com/recipe/24328
('scraping', '24328')
http://allrecipes.com/recipe/61891
('scraping', '61891')
http://allrecipes.com/recipe/68226
('scraping', '68226')
http://allrecipes.com/recipe/62393
('scraping', '62393')
http://allrecipes.com/recipe/68998
('scraping', '68998')
http://allrecipes.com/recipe/79159
('scraping', '79159')
http://allrecipes.com/recipe/79152
('scraping', '79152')
http://allrecipes.com/recipe/90815
('scraping', '90815')
http://allrecipes.com/recipe/40497
('scraping', '40497')
http://allrecipes.com/recipe/40494
('scraping', '40494')
http://allrecipes.com/recipe/40495
('scraping', '40495')
http://allrecipes.com/recipe/40493
('scraping', '40493')
http://allrecipes.com/recipe/18013
('scraping', '18013')
http://allrecipes.com/recipe/18012
('scraping', '18012')
http://allrecipes.com/recipe/11052
('scraping', '11052')
http://allrecipes.com/recipe/14573
('scraping', '14573')
http://allrecipes.com/recipe/37847
('scraping', '37847')
http://allrecipes.com/recipe/14575
('scraping', '14575')
http://allrecipes.com/recipe/18014
('scraping', '18014')
http://allrecipes.com/recipe/24491
('scraping', '24491')
http://allrecipes.com/recipe/37849
('scraping', '37849')
http://allrecipes.com/recipe/37848
('scraping', '37848')
http://allrecipes.com/recipe/72814
('scraping', '72814')
http://allrecipes.com/recipe/17847
('scraping', '17847')
http://allrecipes.com/recipe/25076
('scraping', '25076')
http://allrecipes.com/recipe/17843
('scraping', '17843')
http://allrecipes.com/recipe/15998
('scraping', '15998')
http://allrecipes.com/recipe/8650
('scraping', '8650')
http://allrecipes.com/recipe/15990
('scraping', '15990')
http://allrecipes.com/recipe/34466
('scraping', '34466')
http://allrecipes.com/recipe/8656
('scraping', '8656')
http://allrecipes.com/recipe/31478
('scraping', '31478')
http://allrecipes.com/recipe/7330
('scraping', '7330')
http://allrecipes.com/recipe/51566
('scraping', '51566')
http://allrecipes.com/recipe/93733
('scraping', '93733')
http://allrecipes.com/recipe/15195
('scraping', '15195')
http://allrecipes.com/recipe/15190
('scraping', '15190')
http://allrecipes.com/recipe/91597
('scraping', '91597')
http://allrecipes.com/recipe/25813
('scraping', '25813')
http://allrecipes.com/recipe/25811
('scraping', '25811')
http://allrecipes.com/recipe/25817
('scraping', '25817')
http://allrecipes.com/recipe/16135
('scraping', '16135')
http://allrecipes.com/recipe/47148
('scraping', '47148')
http://allrecipes.com/recipe/72760
('scraping', '72760')
http://allrecipes.com/recipe/23304
('scraping', '23304')
http://allrecipes.com/recipe/47147
('scraping', '47147')
http://allrecipes.com/recipe/23667
('scraping', '23667')
http://allrecipes.com/recipe/12502
('scraping', '12502')
http://allrecipes.com/recipe/12501
In [ ]:
pickle.dump( search.recipe_list, open( "downloaded-recipes.p", "wb" ) )
In [ ]:
Content source: alazareva/291Project
Similar notebooks: