http://www.zhihu.com/question/41563435
python3.5.1怎么打包编译?
作者:小菘Barry
链接:http://www.zhihu.com/question/41563435/answer/101910461
来源:知乎
著作权归作者所有,转载请联系作者获得授权。
网上说 ptyhon3.0以上 pyexe PIL 都不支持。
python3.5版本
下载,本地安装
https://pypi.python.org/pypi/PyInstaller/3.2 在线pip来安装模块失败
下载,本地安装
https://pypi.python.org/pypi/pypiwin32/219 在线pip来安装模块失败
pypiwin32-219-cp35-none-win_amd64.whl 必须安格对应python版本。
否则容易安装失败
http://www.cnblogs.com/chjbbs/archive/2014/01/25/3533187.html
本地安装,修改部分版本不兼容问题
#string.letters和相关的.lowercase和.uppercase被去除,请改用string.ascii_letters 等
#allowed_filename = string.lowercase + string.uppercase + string.digits + "!#$%&'()-@^_`{}~+,.;=[]" + ''.join( [chr(i) for i in range(128, 256)] )
allowed_filename = string.ascii_lowercase + string.ascii_uppercase + string.digits + "!#$%&'()-@^_`{}~+,.;=[]" + ''.join( [chr(i) for i in range(128, 256)] )
def is_valid_dos_filename(s):
https://pypi.python.org/pypi/pefile2/1.2.11
Python的PE库是用来专门解析PE文件的,可静态分析PE文件。
PE文件现在有两个大版本https://pypi.python.org/pypi/pefile/2016.3.28 这个是2015年以后作者出的版本,但是解析速度不知道为啥,很慢。
还有一个是我一直用的版本 https://pypi.python.org/pypi/pefile2/1.2.11 ,这个解析速度挺快的。(推荐使用这个)
打包
1.
http://jingyan.baidu.com/article/a378c960b47034b3282830bb.html
pyinstaller.exe E:\work\officedoc\bom\code\python\merry_gn_bom_comp\test_excel.py
系统找不到pefile 下载 pefile-2016.3.28 安装失败 下载 pefile2-1.2.11 安装成功, 但module name 为pefile2
参考 pefile2-1.2.11 的setup.py文件 修改pefile-2016.3.28 的setup.py文件 去掉多余的信息。安装成功 modulename为 pefile。
继续执行pyinstaller.exe E:\work\officedoc\bom\code\python\merry_gn_bom_comp\test_excel.py
提示 OSError: Python library not found: python35.dll
查看系统信息,发现其调用的pefile2,找不到pefile2的相关文件,尝试删除pefile2,用pefile模块。
编译成功!
但在print 时 中文Windows下面打印有问题,程序无法继续执行。(在IDLE下面 打印是ok的)
屏蔽掉中文。
问题提示 factories没有可用的lib 来打开xls,但在IDLE下面factories是有的
exe运行出错
select_filename_new = E:/work/proj/tmo/28-04766-E-PCB Comps.,
Main PCB, SupM.xls
select_filename_old = E:/work/proj/tmo/51DS90600007Z-M_Compone
nts.xls
factories, {'tsvz': {'built-in':
}, 'tsv': {'built-in':
: {'built-in':
-in':
in':
Exception in Tkinter callback
Traceback (most recent call last):
File "tkinter\__init__.py", line 1550, in __call__
File "testexcel.py", line 2433, in eBtnClose
File "testexcel.py", line 1345, in run_bom
File "site-packages\pyexcel\core.py", line 70, in get_sheet
File "site-packages\pyexcel\core.py", line 82, in _get_content
File "site-packages\pyexcel\sources\file_source_input.py", line 52, in get_dat
a
File "site-packages\pyexcel_io\io.py", line 31, in get_data
File "site-packages\pyexcel_io\io.py", line 118, in load_data_new
File "site-packages\pyexcel_io\manager.py", line 96, in create_reader
File "site-packages\pyexcel_io\manager.py", line 91, in _get_a_handler
OSError: No suitable library found for xls
in':
Exception in Tkinter callback
Traceback (most recent call last):
File "tkinter\__init__.py", line 1550, in __call__
File "testexcel.py", line 2433, in eBtnClose
File "testexcel.py", line 1345, in run_bom
File "site-packages\pyexcel\core.py", line 70, in get_sheet
File "site-packages\pyexcel\core.py", line 82, in _get_content
File "site-packages\pyexcel\sources\file_source_input.py", line 52, in get_dat
a
File "site-packages\pyexcel_io\io.py", line 31, in get_data
File "site-packages\pyexcel_io\io.py", line 118, in load_data_new
File "site-packages\pyexcel_io\manager.py", line 96, in create_reader
File "site-packages\pyexcel_io\manager.py", line 91, in _get_a_handler
OSError: No suitable library found for xls
IDEL 3.5 打印正常
factories, {'csv': {'built-in':
factories, {'csv': {'built-in':
factories, {'csv': {'built-in':
接着无办法了 ,把内容改为,打包运行不报错。但单独执行exe还是和上面一样,但多了很多dll到包中。9-2再 研究 缺少 'pyexcel-xls' 的文件,只有'pyexcel_io
# We must also read the exports table to find forwarded symbols:
# http://blogs.msdn.com/b/oldnewthing/archive/2006/07/19/671238.aspx
exportSymbols = getattr(pe, 'DIRECTORY_ENTRY_EXPORT', None)
if exportSymbols:
for sym in exportSymbols.symbols:
'''
logger.info("sym,sym.forwarder", sym) # stoneyyhit,
if sym.forwarder is not None:
# sym.forwarder is for example 'KERNEL32.EnterCriticalSection'
# stoneyyhit,
dll = sym.forwarder.split('.') # dll, _ = sym.forwarder.split('.')
dlls.add(winutils.convert_dll_name_to_str(dll) + ".dll")
'''
if sym.forwarder is not None:
# sym.forwarder is for example 'KERNEL32.EnterCriticalSection'
dll, _ = sym.forwarder.split( bytes(".", encoding = "utf8") ) # dll = sym.forwarder.split( ) # stoneyyhit
dlls.add(winutils.convert_dll_name_to_str(dll) + ".dll")
0902日 分析 {'pyexcel-xls': 为何打包后没有.
查看pyexecl_io 代码
from pkgutil import iter_modules
black_list = [__name__, 'pyexcel_webio', 'pyexcel_text']
print ("iter_modules\r\n",iter_modules) #stoneyyhit 0902
for _, module_name, ispkg in iter_modules():
print ("_, module_name, ispkg\r\n",_, module_name, ispkg) #stoneyyhit 0902
if module_name in black_list:
continue
if ispkg and module_name.startswith('pyexcel_'):
try:
plugin = __import__(module_name)
if hasattr(plugin, '__pyexcel_io_plugins__'):
for p in plugin.__pyexcel_io_plugins__:
plugin = __import__("%s.%s" % (module_name, p))
submodule = getattr(plugin, p)
exports += submodule.exports
except ImportError:
continue
RWManager.register_readers_and_writers(exports)
插入打印得到有用信息。
iter_modules
_, module_name, ispkg
FileFinder('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest') hello False
_, module_name, ispkg
FileFinder('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest') mysetup False
_, module_name, ispkg
FileFinder('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest') test2_爬虫 False
_, module_name, ispkg
FileFinder('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest') testexcel False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') AutoComplete False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') AutoCompleteWindow False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') AutoExpand False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') Bindings False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') CallTipWindow False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') CallTips False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') ClassBrowser False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') CodeContext False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') ColorDelegator False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') Debugger False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') Delegator False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') EditorWindow False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') FileList False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') FormatParagraph False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') GrepDialog False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') HyperParser False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') IOBinding False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') IdleHistory False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') MultiCall False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') MultiStatusBar False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') ObjectBrowser False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') OutputWindow False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') ParenMatch False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') PathBrowser False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') Percolator False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') PyParse False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') PyShell False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') RemoteDebugger False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') RemoteObjectBrowser False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') ReplaceDialog False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') RstripExtension False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') ScriptBinding False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') ScrolledList False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') SearchDialog False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') SearchDialogBase False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') SearchEngine False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') StackViewer False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') ToolTip False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') TreeWidget False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') UndoDelegator False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') WidgetRedirector False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') WindowList False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') ZoomHeight False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') __main__ False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') aboutDialog False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') configDialog False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') configHandler False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') configHelpSourceEdit False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') configSectionNameDialog False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') dynOptionMenuWidget False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') help False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') idle False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') idle_test True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') idlever False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') keybindingDialog False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') macosxSupport False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') rpc False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') run False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') tabbedpages False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\idlelib') textView False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\pip-8.1.2-py3.5.egg') pip True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\pyinstaller-3.2-py3.5.egg') PyInstaller True
_, module_name, ispkg
_, module_name, ispkg
_, module_name, ispkg
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _bz2 False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _ctypes False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _ctypes_test False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _decimal False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _elementtree False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _hashlib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _lzma False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _msi False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _multiprocessing False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _overlapped False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _socket False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _sqlite3 False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _ssl False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _testbuffer False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _testcapi False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _testimportmultiple False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _testmultiphase False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') _tkinter False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') pyexpat False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') select False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') unicodedata False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\DLLs') winsound False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') __future__ False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _bootlocale False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _collections_abc False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _compat_pickle False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _compression False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _dummy_thread False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _markupbase False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _osx_support False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _pydecimal False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _pyio False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _sitebuiltins False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _strptime False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _threading_local False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') _weakrefset False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') abc False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') aifc False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') antigravity False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') argparse False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') ast False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') asynchat False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') asyncio True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') asyncore False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') base64 False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') bdb False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') binhex False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') bisect False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') bz2 False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') cProfile False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') calendar False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') cgi False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') cgitb False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') chunk False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') cmd False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') code False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') codecs False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') codeop False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') collections True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') colorsys False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') compileall False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') concurrent True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') configparser False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') contextlib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') copy False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') copyreg False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') crypt False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') csv False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') ctypes True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') curses True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') datetime False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') dbm True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') decimal False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') difflib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') dis False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') distutils True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') doctest False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') dummy_threading False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') email True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') encodings True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') ensurepip True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') enum False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') filecmp False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') fileinput False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') fnmatch False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') formatter False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') fractions False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') ftplib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') functools False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') genericpath False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') getopt False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') getpass False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') gettext False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') glob False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') gzip False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') hashlib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') heapq False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') hmac False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') html True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') http True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') idlelib True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') imaplib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') imghdr False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') imp False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') importlib True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') inspect False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') io False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') ipaddress False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') json True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') keyword False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') lib2to3 True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') linecache False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') locale False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') logging True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') lzma False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') macpath False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') macurl2path False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') mailbox False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') mailcap False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') mimetypes False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') modulefinder False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') msilib True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') multiprocessing True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') netrc False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') nntplib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') ntpath False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') nturl2path False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') numbers False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') opcode False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') operator False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') optparse False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') os False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') pathlib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') pdb False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') pickle False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') pickletools False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') pipes False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') pkgutil False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') platform False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') plistlib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') poplib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') posixpath False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') pprint False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') profile False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') pstats False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') pty False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') py_compile False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') pyclbr False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') pydoc False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') pydoc_data True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') queue False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') quopri False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') random False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') re False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') reprlib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') rlcompleter False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') runpy False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') sched False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') selectors False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') shelve False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') shlex False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') shutil False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') signal False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') site False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') smtpd False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') smtplib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') sndhdr False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') socket False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') socketserver False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') sqlite3 True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') sre_compile False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') sre_constants False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') sre_parse False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') ssl False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') stat False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') statistics False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') string False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') stringprep False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') struct False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') subprocess False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') sunau False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') symbol False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') symtable False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') sysconfig False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') tabnanny False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') tarfile False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') telnetlib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') tempfile False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') test True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') textwrap False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') this False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') threading False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') timeit False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') tkinter True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') token False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') tokenize False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') trace False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') traceback False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') tracemalloc False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') tty False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') turtle False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') turtledemo True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') types False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') typing False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') unittest True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') urllib True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') uu False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') uuid False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') venv True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') warnings False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') wave False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') weakref False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') webbrowser False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') wsgiref True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') xdrlib False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') xml True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') xmlrpc True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') zipapp False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib') zipfile False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') adodbapi True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') chardet True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') cx_Freeze True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') easy_install False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') future True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') isapi True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') libfuturize True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') libpasteurize True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') past True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') pkg_resources True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') py2exe True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') pyexcel True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') pyexcel_io True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') pyexcel_xls True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') pythoncom False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') setuptools True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') texttable False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') win32com True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') xlrd True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') xlutils True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') xlwt True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages') zipextimporter False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') _win32sysloader False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') _winxptheme False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') mmapfile False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') odbc False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') perfmon False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') servicemanager False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') timer False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win2kras False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32api False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32clipboard False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32console False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32cred False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32crypt False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32event False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32evtlog False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32file False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32gui False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32help False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32inet False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32job False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32lz False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32net False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32pdh False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32pipe False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32print False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32process False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32profile False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32ras False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32security False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32service False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32trace False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32transaction False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32ts False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') win32wnet False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32') winxpgui False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') afxres False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') commctrl False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') dbi False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') mmsystem False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') netbios False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') ntsecuritycon False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') pywin32_testutil False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') pywintypes False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') rasutil False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') regcheck False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') regutil False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') sspi False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') sspicon False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32con False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32cryptcon False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32evtlogutil False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32gui_struct False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32inetcon False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32netcon False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32pdhquery False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32pdhutil False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32rcparser False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32serviceutil False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32timezone False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32traceutil False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') win32verstamp False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') winerror False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') winioctlcon False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') winnt False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') winperf False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\win32\\lib') winxptheme False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\Pythonwin') dde False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\Pythonwin') pywin True
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\Pythonwin') win32ui False
_, module_name, ispkg
FileFinder('C:\\Users\\l1600293\\AppData\\Local\\Programs\\Python\\Python35\\lib\\site-packages\\Pythonwin') win32uiole Fals
打包后的打印
es
iter_modules at 0x00000000034277B8>
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> _bootlocale False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> _collections_abc False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> _weakrefset False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> abc False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> codecs False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> collections True
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> copyreg False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> encodings True
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> functools False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> heapq False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> io False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> keyword False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> linecache False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> locale False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> operator False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> re False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> reprlib False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> sre_compile False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> sre_constants False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> sre_parse False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> traceback False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> types False
name, ispkg
ter object "E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\dist\testexcel\base_library.zip"> weakref False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') _bz2 False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') _ctypes False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') _decimal False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') _elementtree False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') _hashlib False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') _lzma False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') _socket False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') _ssl False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') _tkinter False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') pyexpat False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') select False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') unicodedata False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') win32api False
name, ispkg
r('E:\\work\\officedoc\\bom\\code\\python\\merry_gn_bom_comp\\merrytest\\dist\\testexcel') win32evtlog False
16:06:02,453-mylogger-INFO-
factories,
{'csv': {'built-in':
pyexcel_io.database.sql.SQLBookReader'>}, 'django': {'built-in':
file_type,
xls
library,
None
Exception in Tkinter callback
Traceback (most recent call last):
File "tkinter\__init__.py", line 1550, in __call__
File "testexcel.py", line 2429, in eBtnClose
File "testexcel.py", line 1341, in run_bom
File "site-packages\pyexcel\core.py", line 70, in get_sheet
File "site-packages\pyexcel\core.py", line 82, in _get_content
File "site-packages\pyexcel\sources\file_source_input.py", line 52, in get_data
File "site-packages\pyexcel_io\io.py", line 31, in get_data
File "site-packages\pyexcel_io\io.py", line 118, in load_data_new
File "site-packages\pyexcel_io\manager.py", line 98, in create_reader
File "site-packages\pyexcel_io\manager.py", line 93, in _get_a_handler
OSError: No suitable library found for xls
in Tkinter callback
(most recent call last):
inter\__init__.py", line 1550, in __call__
stexcel.py", line 2429, in eBtnClose
stexcel.py", line 1341, in run_bom
te-packages\pyexcel\core.py", line 70, in get_sheet
te-packages\pyexcel\core.py", line 82, in _get_content
te-packages\pyexcel\sources\file_source_input.py", line 52, in get_data
te-packages\pyexcel_io\io.py", line 31, in get_data
te-packages\pyexcel_io\io.py", line 118, in load_data_new
te-packages\pyexcel_io\manager.py", line 98, in create_reader
te-packages\pyexcel_io\manager.py", line 93, in _get_a_handler
o suitable library found for xls
--------------认真阅读site-packages\pyexcel_xls 和site-packages\pyexcel_io 的依赖关系,找到了解决办法。
a.修改exports的 关系,把pyexcel_xls加进来即可。
# flake8: noqa
from .io import get_data, save_data
from .manager import RWManager
from . import fileformat, database
#stoneyyhit 0902
from pyexcel_xls import xls
exports = fileformat.exports + database.exports + xls.exports #exports = fileformat.exports + database.exports
from pkgutil import iter_modules
black_list = [__name__, 'pyexcel_webio', 'pyexcel_text']
print ("iter_modules\r\n",iter_modules) #stoneyyhit 0902
for _, module_name, ispkg in iter_modules():
print ("_, module_name, ispkg\r\n",_, module_name, ispkg) #stoneyyhit 0902
if module_name in black_list:
continue
if ispkg and module_name.startswith('pyexcel_'):
try:
plugin = __import__(module_name)
if hasattr(plugin, '__pyexcel_io_plugins__'):
for p in plugin.__pyexcel_io_plugins__:
plugin = __import__("%s.%s" % (module_name, p))
submodule = getattr(plugin, p)
exports += submodule.exports
except ImportError:
continue
RWManager.register_readers_and_writers(exports)
b.pyexcel_xls 下面__init__.py 添加
# stoneyyhit 0902
from . import xls
exports = xls.exports
解决这个问题。打包文件继续运行,还有文件错误。
Exception in Tkinter callback
Traceback (most recent call last):
File "tkinter\__init__.py", line 1550, in __call__
File "testexcel.py", line 2429, in eBtnClose
File "testexcel.py", line 2202, in run_bom
UnicodeEncodeError: 'cp950' codec can't encode character '\u53f7' in position 19: illegal multibyte sequence
也就是Windows下面打印中文字符类型问题。
找到问题位置 print ("\r\n>>>----------查找料号的变化--------------\r\n") 修改为英文 或者 强制转换。
#windows 下面中文打印显示错误,转换如下
# erro print (unicode("\r\n>>>----------查找料号的变化--------------\r\n").encode("utf-8"))
print (("\r\n>>>----------查找料号的变化--------------\r\n").encode("utf-8"))
------------------这个问题 最后无法解决,只能老老实实用English 输出
不过发现,dict的key 是中文,在Windows打包后运行的打印正常。
--------------------------------终于打包所有问题解决。今天刚好周五!!!
2.
http://www.cnblogs.com/chjbbs/archive/2014/01/25/3533187.html
python pyinstaller.py [opts] yourprogram.py
3.使用notepad 编辑编译ptyhon
http://www.cnblogs.com/zhcncn/p/3969419.html
NOTEPAD 里面执行 utf 8 中文打印出错
4.py2exe python3.5 支持不够好
C:\Users\l1600293>pip list
chardet (2.3.0)
future (0.15.2)
pefile (2016.3.28)
pip (8.1.2)
pyexcel (0.2.5)
pyexcel-io (0.2.2)
pyexcel-xls (0.2.2)
pyinstaller (3.2)
pypiwin32 (219)
setuptools (20.10.1)
texttable (0.8.4)
xlrd (1.0.0)
xlutils (2.0.0)
xlwt (1.1.2)
xlwt-future (0.8.0)
C:\Users\l1600293>pip install py2exe
Collecting py2exe
Using cached py2exe-0.9.2.2-py33.py34-none-any.whl
Installing collected packages: py2exe
Successfully installed py2exe-0.9.2.2
打包
E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest>python mysetup.py
py2exe
running py2exe
10 missing Modules
------------------
? cElementTree imported from xlrd.xlsx
? elementtree imported from xlrd.xlsx
? errorhandler imported from xlutils.filter
? guppy imported from xlutils.filter
? lxml imported from xlrd.xlsx
? optik imported from texttable
? ordereddict imported from pyexcel._compact, pyexcel_io
._compact
? pyexcel_text imported from pyexcel.sources.file_source_
output
? readline imported from cmd, code, pdb
? tkinter imported from __SCRIPT__
Building 'dist\test_excel.exe'.
error: [Errno 2] No such file or directory: 'C:\\Users\\l1600293\\AppData\\Local
\\Programs\\Python\\Python35\\lib\\site-packages\\py2exe\\run_w-py3.5-win-amd64.
exe'
cx_Ffreeze E:\work\officedoc\bom\code\python\merry_gn_bom_comp\merrytest\test_excel.py
失败