mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-04 09:25:16 -05:00
21 lines
439 B
Python
21 lines
439 B
Python
from pydantic import ConfigDict
|
|
|
|
from mealie.schema._mealie.mealie_model import MealieModel
|
|
|
|
|
|
class ScrapeRecipeTest(MealieModel):
|
|
url: str
|
|
|
|
|
|
class ScrapeRecipe(MealieModel):
|
|
url: str
|
|
include_tags: bool = False
|
|
model_config = ConfigDict(
|
|
json_schema_extra={
|
|
"example": {
|
|
"url": "https://myfavoriterecipes.com/recipes",
|
|
"includeTags": True,
|
|
},
|
|
}
|
|
)
|