TheBird

config.py

181 B · python · 8 lines

1import os23HERE = os.path.dirname(os.path.abspath(__file__))45DATA_DIR = os.path.join("data", os.path.relpath(HERE))6IMAGE_SIZE = (1000, 1000)78os.makedirs(DATA_DIR, exist_ok=True)