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%
| k8s | ||
| tests | ||
| web | ||
| .containerignore | ||
| .flake8 | ||
| .gitignore | ||
| LICENSE | ||
| Makefile | ||
| README.md | ||
| requirements-dev.in | ||
| requirements-dev.txt | ||
| requirements.in | ||
| requirements.txt | ||
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