Spaces:
Sleeping
Sleeping
File size: 182 Bytes
669c2e0 |
1 2 3 4 5 6 7 8 9 10 11 |
import os
import sys
def make_folder(folder_name):
os.makedirs(folder_name, exist_ok=True)
def add_pypath(path):
if path not in sys.path:
sys.path.insert(0, path)
|