Add parser for realfoodwholelife.com

This commit is contained in:
Dylan Ulis 2022-01-04 18:08:25 -05:00
parent f7c9754db2
commit aa129359d1
2 changed files with 6 additions and 0 deletions

View file

@ -20,6 +20,7 @@ from parsers.seriouseats import Seriouseats
from parsers.fattoincasadabenedetta import Fattoincasadabenedetta
from parsers.dinneratthezoo import DinnerAtTheZoo
from parsers.pickledplum import PickledPlum
from parsers.realfoodwholelife import RealFoodWholeLife
# Must exclude the "www" portion of the URL
PARSERS = {
@ -44,6 +45,7 @@ PARSERS = {
'fattoincasadabenedetta.it': Fattoincasadabenedetta,
'dinneratthezoo.com': DinnerAtTheZoo,
'pickledplum.com': PickledPlum,
'realfoodwholelife.com': RealFoodWholeLife,
}
def getParser(domain):

View file

@ -0,0 +1,4 @@
from parsers.recipe import WpJsonRecipe
class RealFoodWholeLife(WpJsonRecipe):
pass