5 lines
120 B
Python
5 lines
120 B
Python
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
from conf import BASE_DIR
|
||
|
|
|
||
|
|
Path(BASE_DIR / "cookies" / "douyin_uploader").mkdir(exist_ok=True)
|