The RecipeRadar Ingredient Parser takes a set of free-text ingredient descriptions, and extracts product, quantity and unit information from them
  • Python 83.6%
  • Makefile 16.4%
Find a file
2026-04-10 21:51:37 +01:00
k8s Configure a read-only root filesystem 2023-12-15 12:06:35 +00:00
tests Cleanup: remove ingredient/product-related nutrition (#32) 2025-04-24 13:30:28 +00:00
web Update dependencies 2026-02-02 17:12:53 +00:00
.containerignore Add .containerignore file. 2024-07-12 15:30:47 +01:00
.flake8 Update flake8 acceptable line length to match 'black' default of 88 2022-07-11 01:14:41 +01:00
.gitignore Switch to a pip-based dependency workflow (#28) 2020-12-18 17:14:54 +00:00
LICENSE Trim LICENSE 2020-03-05 15:32:15 +00:00
Makefile Build: include Python minor version in base image references 2026-04-10 21:51:37 +01:00
README.md Forge migration: update URLs from GitHub to Codeberg 2025-08-21 19:09:49 +01:00
requirements-dev.in Dependencies: remove inter-requirements-file reference 2024-11-21 18:35:37 +00:00
requirements-dev.txt Update gunicorn dependency 2026-03-17 16:13:22 +00:00
requirements.in Update gunicorn dependency 2026-03-17 16:13:22 +00:00
requirements.txt Update gunicorn dependency 2026-03-17 16:13:22 +00:00

RecipeRadar Ingredient Parser

The RecipeRadar Ingredient Parser takes a set of free-text ingredient descriptions, and extracts product, quantity and unit information from them.

For example, given the ingredient text: 50ml of water, the ingredient-parser service can indicate that the product=water, units=ml and quantity=50.

This functionality is provided to the crawler service so that it can extract additional data from each recipe crawled.

Install dependencies

Make sure to follow the RecipeRadar infrastructure setup to ensure all cluster dependencies are available in your environment.

Development

To install development tools and run linting and tests locally, execute the following commands:

$ make lint tests

Local Deployment

To deploy the service to the local infrastructure environment, execute the following commands:

$ make
$ make deploy