VfxDB / tools /download_extract_data.py
kayi
Distribute downloader and Rich TUI with the dataset
897d725
Raw
History Blame Contribute Delete
214 Bytes
#!/usr/bin/env python3
"""Official entry point for downloading the VfxDB dataset."""
from __future__ import annotations
from vfxdb_downloader import main
if __name__ == "__main__":
raise SystemExit(main())