├── .dockerignore ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── fly.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── fly.toml ├── parsers ├── __init__.py ├── africanbites.py ├── dinneratthezoo.py ├── essenundtriken.py ├── glebekitchen.py ├── hervecuisine.py ├── kuechengoetter.py ├── letsdishrecipes.py ├── minimalistbaker.py ├── pickledplum.py ├── realfoodwholelife.py ├── recipe.py ├── smittenkitchen.py ├── thatlowcarblife.py └── thewoksoflife.py ├── requirements.txt ├── screenshots ├── home.png ├── print.png └── screen.png ├── static └── styles │ ├── common.css │ └── recipe.css └── templates ├── index.html ├── layout.html ├── parse_error.html ├── recipe.html ├── statistics.html ├── supported.html └── unsupported.html /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/fly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/.github/workflows/fly.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/app.py -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/fly.toml -------------------------------------------------------------------------------- /parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/__init__.py -------------------------------------------------------------------------------- /parsers/africanbites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/africanbites.py -------------------------------------------------------------------------------- /parsers/dinneratthezoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/dinneratthezoo.py -------------------------------------------------------------------------------- /parsers/essenundtriken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/essenundtriken.py -------------------------------------------------------------------------------- /parsers/glebekitchen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/glebekitchen.py -------------------------------------------------------------------------------- /parsers/hervecuisine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/hervecuisine.py -------------------------------------------------------------------------------- /parsers/kuechengoetter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/kuechengoetter.py -------------------------------------------------------------------------------- /parsers/letsdishrecipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/letsdishrecipes.py -------------------------------------------------------------------------------- /parsers/minimalistbaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/minimalistbaker.py -------------------------------------------------------------------------------- /parsers/pickledplum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/pickledplum.py -------------------------------------------------------------------------------- /parsers/realfoodwholelife.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/realfoodwholelife.py -------------------------------------------------------------------------------- /parsers/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/recipe.py -------------------------------------------------------------------------------- /parsers/smittenkitchen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/smittenkitchen.py -------------------------------------------------------------------------------- /parsers/thatlowcarblife.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/thatlowcarblife.py -------------------------------------------------------------------------------- /parsers/thewoksoflife.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/parsers/thewoksoflife.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/screenshots/home.png -------------------------------------------------------------------------------- /screenshots/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/screenshots/print.png -------------------------------------------------------------------------------- /screenshots/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/screenshots/screen.png -------------------------------------------------------------------------------- /static/styles/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/static/styles/common.css -------------------------------------------------------------------------------- /static/styles/recipe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/static/styles/recipe.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/parse_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/templates/parse_error.html -------------------------------------------------------------------------------- /templates/recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/templates/recipe.html -------------------------------------------------------------------------------- /templates/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/templates/statistics.html -------------------------------------------------------------------------------- /templates/supported.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/templates/supported.html -------------------------------------------------------------------------------- /templates/unsupported.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poundifdef/plainoldrecipe/HEAD/templates/unsupported.html --------------------------------------------------------------------------------