You've already forked etude_lego_jurassic_world
Ajouter l’étape 35 : extraction et collage des autocollants
This commit is contained in:
19
scripts/plot_sticker_sheets.py
Normal file
19
scripts/plot_sticker_sheets.py
Normal 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()
|
||||
Reference in New Issue
Block a user