From 1bd8e218af2e1ad1b6d9273132f63916edc03d8a Mon Sep 17 00:00:00 2001 From: Max Ricketts-Uy Date: Wed, 25 Aug 2021 21:50:36 -0400 Subject: [PATCH] Add parser for pickledplum.com --- parsers/__init__.py | 2 ++ parsers/pickledplum.py | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 parsers/pickledplum.py diff --git a/parsers/__init__.py b/parsers/__init__.py index b777723..decfee0 100644 --- a/parsers/__init__.py +++ b/parsers/__init__.py @@ -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): diff --git a/parsers/pickledplum.py b/parsers/pickledplum.py new file mode 100644 index 0000000..4352beb --- /dev/null +++ b/parsers/pickledplum.py @@ -0,0 +1,4 @@ +from parsers.recipe import WpJsonRecipe + +class PickledPlum(WpJsonRecipe): + pass