c696dee320
* feat: import original keywords as tags * remove cached env * Update frontend api types * fix: Issues with previous tag scraping implementation * Update category handling in backend * Update backend tests to include group_id * Correct type check * Update create-url interface * Improve tag cleaner list support * remove builtin name shadowing * update type annotations * test include tags scraper * implement scaper context for optional data * readd cache venv * use continue instead of break * remove test callback Co-authored-by: Miroito <alban.vachette@gmail.com>
65 lines
2.4 KiB
Python
65 lines
2.4 KiB
Python
from pathlib import Path
|
|
|
|
CWD = Path(__file__).parent
|
|
|
|
locale_dir = CWD / "locale"
|
|
|
|
migrations_paprika = CWD / "migrations/paprika.zip"
|
|
|
|
migrations_chowdown = CWD / "migrations/chowdown.zip"
|
|
|
|
migrations_mealie = CWD / "migrations/mealie.zip"
|
|
|
|
migrations_nextcloud = CWD / "migrations/nextcloud.zip"
|
|
|
|
images_test_image_1 = CWD / "images/test-image-1.jpg"
|
|
|
|
images_test_image_2 = CWD / "images/test-image-2.png"
|
|
|
|
html_sous_vide_smoked_beef_ribs = CWD / "html/sous-vide-smoked-beef-ribs.html"
|
|
|
|
html_sous_vide_shrimp = CWD / "html/sous-vide-shrimp.html"
|
|
|
|
html_jam_roly_poly_with_custard = CWD / "html/jam-roly-poly-with-custard.html"
|
|
|
|
html_nutty_umami_noodles_with_scallion_brown_butter_and_snow_peas_recipe = (
|
|
CWD / "html/nutty-umami-noodles-with-scallion-brown-butter-and-snow-peas-recipe.html"
|
|
)
|
|
|
|
html_taiwanese_three_cup_chicken_san_bei_gi_recipe = CWD / "html/taiwanese-three-cup-chicken-san-bei-gi-recipe.html"
|
|
|
|
html_detroit_style_pepperoni_pizza = CWD / "html/detroit-style-pepperoni-pizza.html"
|
|
|
|
html_carottes_rapps_with_rice_and_sunflower_seeds = CWD / "html/carottes-rapps-with-rice-and-sunflower-seeds.html"
|
|
|
|
html_schinken_kase_waffeln_ohne_viel_schnickschnack = CWD / "html/schinken-kase-waffeln-ohne-viel-schnickschnack.html"
|
|
|
|
html_healthy_pasta_bake_60759 = CWD / "html/healthy-pasta-bake-60759.html"
|
|
|
|
json_instant_pot_chicken_and_potatoes = CWD / "json/instant-pot-chicken-and-potatoes.json"
|
|
|
|
json_jalapeno_popper_dip = CWD / "json/jalapeno-popper-dip.json"
|
|
|
|
json_best_homemade_salsa_recipe = CWD / "json/best-homemade-salsa-recipe.json"
|
|
|
|
json_how_to_make_instant_pot_spaghetti = CWD / "json/how-to-make-instant-pot-spaghetti.json"
|
|
|
|
json_pizza_knoblauch_champignon_paprika_vegan_html = CWD / "json/pizza-knoblauch-champignon-paprika-vegan-html.json"
|
|
|
|
json_bon_appetit = CWD / "json/bon-appetit.json"
|
|
|
|
json_moroccan_skirt_steak_with_roasted_pepper_couscous = (
|
|
CWD / "json/moroccan-skirt-steak-with-roasted-pepper-couscous.json"
|
|
)
|
|
|
|
json_microwave_sweet_potatoes_04783 = CWD / "json/microwave-sweet-potatoes-04783.json"
|
|
|
|
json_dairy_free_impossible_pumpkin_pie = CWD / "json/dairy-free-impossible-pumpkin-pie.json"
|
|
|
|
json_chunky_apple_cake = CWD / "json/chunky-apple-cake.json"
|
|
|
|
json_blue_cheese_stuffed_turkey_meatballs_with_raspberry_balsamic_glaze_2 = (
|
|
CWD / "json/blue-cheese-stuffed-turkey-meatballs-with-raspberry-balsamic-glaze-2.json"
|
|
)
|
|
|
|
json_instant_pot_kerala_vegetable_stew = CWD / "json/instant-pot-kerala-vegetable-stew.json"
|