6 lines
122 B
Python
6 lines
122 B
Python
from pathlib import Path
|
|
|
|
from conf import BASE_DIR
|
|
|
|
Path(BASE_DIR / "cookies" / "youtube_uploader").mkdir(exist_ok=True)
|