Add parser for pickledplum.com

This commit is contained in:
Max Ricketts-Uy 2021-08-25 21:50:36 -04:00
parent aafde639d9
commit 1bd8e218af
2 changed files with 6 additions and 0 deletions

View file

@ -18,6 +18,7 @@ from parsers.hervecuisine import Hervecuisine
from parsers.thatlowcarblife import ThatLowCarbLife
from parsers.seriouseats import Seriouseats
from parsers.fattoincasadabenedetta import Fattoincasadabenedetta
from parsers.pickledplum import PickledPlum
# Must exclude the "www" portion of the URL
PARSERS = {
@ -40,6 +41,7 @@ PARSERS = {
'thatlowcarblife.com': ThatLowCarbLife,
'seriouseats.com' : Seriouseats,
'fattoincasadabenedetta.it': Fattoincasadabenedetta,
'pickledplum.com': PickledPlum
}
def getParser(domain):

4
parsers/pickledplum.py Normal file
View file

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