We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All recipes from Cookidoo should get a keyword "Thermomix" added
The text was updated successfully, but these errors were encountered:
I am interested in this issue would you please assign me this ?
Sorry, something went wrong.
The scraper is here: https://github.com/MarcusWolschon/AdvancedRecipes/blob/release/latest/cookbook/helper/scrapers/cookidoo.py and you likely have to override the categories or another such function from the parent class here: https://github.com/hhursev/recipe-scrapers/blob/main/recipe_scrapers/_abstract.py#L66 Maybe call on self.schema here: https://github.com/hhursev/recipe-scrapers/blob/main/recipe_scrapers/_schemaorg.py#L63
categories
self.schema
would you assign me some example or video to solve this that will be much more helpfull
Not really. Sorry
This is what I did for manipulating the ingredients. Keywords should be similar. #13
Probably something like:
def category(self): category = self.schema.data.get("recipeCategory") if isinstance(category, list): return ",".join(category) + ",THERMOMIX" return category + ",THERMOMIX"
Sorry I did not knew about this
mayurstwt
No branches or pull requests
Describe the solution you'd like
All recipes from Cookidoo should get a keyword "Thermomix" added
The text was updated successfully, but these errors were encountered: