Skip to content

Commit

Permalink
Feature/doc clean up (#5)
Browse files Browse the repository at this point in the history
* adding utf-8

* adding data fetcher

* updating abstract

* removing some sites I don't use
  • Loading branch information
RyanNoelk authored Apr 5, 2017
1 parent 356d79e commit 7c625ae
Show file tree
Hide file tree
Showing 17 changed files with 0 additions and 675 deletions.
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,24 +38,17 @@ If you are programmer PRs with fixes are warmly welcomed and acknowledged with a

### Scrapers available for:

- [http://101cookbooks.com/](http://101cookbooks.com/)
- [http://allrecipes.com/](http://allrecipes.com/)
- [http://bbc.co.uk/](http://bbc.co.uk/food/recipes/)
- [http://bbcgoodfood.com/](http://bbcgoodfood.com/)
- [http://bonappetit.com/](http://bonappetit.com/)
- [http://closetcooking.com/](http://closetcooking.com/)
- [http://cookstr.com/](http://cookstr.com/)
- [http://epicurious.com/](http://epicurious.com/)
- [http://finedininglovers.com/](https://www.finedininglovers.com/)
- [http://foodrepublic.com/](http://foodrepublic.com)
- [http://jamieoliver.com/](http://www.jamieoliver.com/)
- [http://mybakingaddiction.com/](http://mybakingaddiction.com/)
- [http://paninihappy.com/](http://paninihappy.com/)
- [http://realsimple.com/](http://www.realsimple.com/)
- [http://simplyrecipes.com/](http://www.simplyrecipes.com)
- [http://steamykitchen.com/](http://steamykitchen.com/)
- [http://tastykitchen.com/](http://tastykitchen.com/)
- [http://thepioneerwoman.com/](http://thepioneerwoman.com/)
- [http://thevintagemixer.com/](http://www.thevintagemixer.com/)
- [http://twopeasandtheirpod.com/](http://twopeasandtheirpod.com/)
- [http://whatsgabycooking.com/](http://whatsgabycooking.com/)
14 changes: 0 additions & 14 deletions recipe_scrapers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,49 +3,35 @@
import re

from .allrecipes import AllRecipes
from .bbcfood import BBCFood
from .bbcgoodfood import BBCGoodFood
from .bonappetit import BonAppetit
from .budgetbytes import BudgetBytes
from .closetcooking import ClosetCooking
from .cookstr import Cookstr
from .epicurious import Epicurious
from .finedininglovers import FineDiningLovers
from .foodrepublic import FoodRepublic
from .hundredandonecookbooks import HundredAndOneCookbooks
from .jamieoliver import JamieOliver
from .mybakingaddiction import MyBakingAddiction
from .paninihappy import PaniniHappy
from .realsimple import RealSimple
from .simplyrecipes import SimplyRecipes
from .steamykitchen import SteamyKitchen
from .tastykitchen import TastyKitchen
from .thepioneerwoman import ThePioneerWoman
from .thevintagemixer import TheVintageMixer
from .twopeasandtheirpod import TwoPeasAndTheirPod
from .whatsgabycooking import WhatsGabyCooking


SCRAPERS = {
AllRecipes.host(): AllRecipes,
BBCFood.host(): BBCFood,
BBCGoodFood.host(): BBCGoodFood,
BonAppetit.host(): BonAppetit,
BudgetBytes.host(): BudgetBytes,
ClosetCooking.host(): ClosetCooking,
Cookstr.host(): Cookstr,
Epicurious.host(): Epicurious,
FineDiningLovers.host(): FineDiningLovers,
FoodRepublic.host(): FoodRepublic,
HundredAndOneCookbooks.host(): HundredAndOneCookbooks,
JamieOliver.host(): JamieOliver,
MyBakingAddiction.host(): MyBakingAddiction,
PaniniHappy.host(): PaniniHappy,
RealSimple.host(): RealSimple,
SimplyRecipes.host(): SimplyRecipes,
SteamyKitchen.host(): SteamyKitchen,
TastyKitchen.host(): TastyKitchen,
ThePioneerWoman.host(): ThePioneerWoman,
TheVintageMixer.host(): TheVintageMixer,
TwoPeasAndTheirPod.host(): TwoPeasAndTheirPod,
WhatsGabyCooking.host(): WhatsGabyCooking,
Expand Down
34 changes: 0 additions & 34 deletions recipe_scrapers/bbcfood.py

This file was deleted.

46 changes: 0 additions & 46 deletions recipe_scrapers/bbcgoodfood.py

This file was deleted.

33 changes: 0 additions & 33 deletions recipe_scrapers/closetcooking.py

This file was deleted.

29 changes: 0 additions & 29 deletions recipe_scrapers/hundredandonecookbooks.py

This file was deleted.

33 changes: 0 additions & 33 deletions recipe_scrapers/paninihappy.py

This file was deleted.

33 changes: 0 additions & 33 deletions recipe_scrapers/realsimple.py

This file was deleted.

59 changes: 0 additions & 59 deletions recipe_scrapers/tests/test_bbcfood.py

This file was deleted.

Loading

0 comments on commit 7c625ae

Please sign in to comment.