File size: 287 Bytes
cb97e31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
from pathlib import Path


project_path = os.path.abspath(os.path.dirname(__file__))
project_path = Path(project_path)


temp_directory = project_path / "temp"
temp_directory.mkdir(exist_ok=True)


if __name__ == '__main__':
    pass