https://github.com/openculinary/ingredient-parser
The RecipeRadar Ingredient Parser takes a set of free-text ingredient descriptions, and extracts product, quantity and unit information from them
https://github.com/openculinary/ingredient-parser
flask
Last synced: 5 months ago
JSON representation
The RecipeRadar Ingredient Parser takes a set of free-text ingredient descriptions, and extracts product, quantity and unit information from them
- Host: GitHub
- URL: https://github.com/openculinary/ingredient-parser
- Owner: openculinary
- License: agpl-3.0
- Created: 2019-11-22T16:01:17.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-05-08T13:21:57.000Z (about 1 year ago)
- Last Synced: 2025-05-08T14:32:35.511Z (about 1 year ago)
- Topics: flask
- Language: Python
- Homepage:
- Size: 354 KB
- Stars: 24
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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](https://codeberg.org/openculinary/crawler) service so that it can extract additional data from each recipe crawled.
## Install dependencies
Make sure to follow the RecipeRadar [infrastructure](https://codeberg.org/openculinary/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:
```sh
$ make lint tests
```
## Local Deployment
To deploy the service to the local infrastructure environment, execute the following commands:
```sh
$ make
$ make deploy
```