20 lines
543 B
Python
20 lines
543 B
Python
"""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()
|