import os
import sys
import time
import compileall
def pyc():
curPath = os.path.abspath(os.path.curdir)
curTime = time.strftime('%Y%m%d-%H%M%S',time.localtime(time.time()))
compileall.compile_dir(r'%s'%curPath)
if __name__ == '__main__':
pyc()
import sys
import time
import compileall
def pyc():
curPath = os.path.abspath(os.path.curdir)
curTime = time.strftime('%Y%m%d-%H%M%S',time.localtime(time.time()))
compileall.compile_dir(r'%s'%curPath)
if __name__ == '__main__':
pyc()