1

Ajouter l’étape 35 : extraction et collage des autocollants

This commit is contained in:
2025-12-03 18:03:43 +01:00
parent f757bfa6bf
commit fc8feec5d9
7 changed files with 340 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
"""Assemble les visuels des planches d'autocollants des sets filtrés."""
from pathlib import Path
from lib.plots.sticker_sheets import plot_sticker_sheets
STICKER_PARTS_PATH = Path("data/intermediate/sticker_parts.csv")
DESTINATION_PATH = Path("figures/step35/sticker_sheets.png")
RESOURCES_DIR = Path("figures/rebrickable")
def main() -> None:
"""Construit le collage des planches d'autocollants."""
plot_sticker_sheets(STICKER_PARTS_PATH, DESTINATION_PATH, resources_dir=RESOURCES_DIR)
if __name__ == "__main__":
main()