27 lines
621 B
Python
27 lines
621 B
Python
"""Télécharge les fichiers nécessaires aux pièces LEGO depuis Rebrickable."""
|
|
|
|
from pathlib import Path
|
|
|
|
from lib.rebrickable.downloader import download_rebrickable_files
|
|
|
|
|
|
FILES_TO_DOWNLOAD = [
|
|
"inventories.csv.gz",
|
|
"inventory_parts.csv.gz",
|
|
"parts.csv.gz",
|
|
"colors.csv.gz",
|
|
"inventory_minifigs.csv.gz",
|
|
"minifigs.csv.gz",
|
|
"part_categories.csv.gz",
|
|
]
|
|
DESTINATION_DIR = Path("data/raw")
|
|
|
|
|
|
def main() -> None:
|
|
"""Lance le téléchargement des fichiers liés aux pièces LEGO."""
|
|
download_rebrickable_files(FILES_TO_DOWNLOAD, DESTINATION_DIR)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|