You've already forked etude_lego_jurassic_world
Premiers éléments de l'étude
This commit is contained in:
18
scripts/download_themes.py
Normal file
18
scripts/download_themes.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""Télécharge le catalogue des thèmes LEGO depuis Rebrickable."""
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
from lib.rebrickable.downloader import download_rebrickable_file
|
||||
|
||||
|
||||
THEMES_FILE_NAME = "themes.csv.gz"
|
||||
DESTINATION_DIR = Path("data/raw")
|
||||
|
||||
|
||||
def main() -> None:
|
||||
"""Lance le téléchargement du fichier des thèmes."""
|
||||
download_rebrickable_file(THEMES_FILE_NAME, DESTINATION_DIR)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user