11 lines
290 B
Python
11 lines
290 B
Python
#!/usr/bin/env python
|
|
"""
|
|
Created by howie.hu at 17-9-22.
|
|
"""
|
|
from sys import path as path_sys
|
|
from os import path as path_os
|
|
# from multiprocessing.managers import BaseManager
|
|
# from multiprocessing import freeze_support
|
|
|
|
# environment variable
|
|
path_sys.append(path_os.dirname(__file__)) |