ViDove / entries /__init_lib_path.py
Eason Lu
add youtube task creation
f1ae450
raw
history blame contribute delete
214 Bytes
import sys
import os
def add_path(custom_path):
if custom_path not in sys.path: sys.path.insert(0, custom_path)
this_dir = os.path.dirname(__file__)
lib_path = os.path.join(this_dir, '..')
add_path(lib_path)