《Nuitka打包实战指南》实战打包openpyxl

Posted 一路顺风呀~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《Nuitka打包实战指南》实战打包openpyxl相关的知识,希望对你有一定的参考价值。

实战打包openpyxl

打包示例源码:

请看文章末尾

版本信息:

openpyxl==3.0.9

Nuitka==0.6.19.1

打包系统:

 Windows10 64位

项目目录如下:

hello.py内容如下:

import openpyxl

wb = openpyxl.load_workbook(\'test.xlsx\')
ws = wb.active

for row in ws.iter_rows():
    for cell in row:
        print(cell.value)

运行截图如下:

 

打包分析如下:

  1. 代码用到了test.xlsx这个资源文件,所以我们要用--include-data-file命令将其打包进来

以上是关于《Nuitka打包实战指南》实战打包openpyxl的主要内容,如果未能解决你的问题,请参考以下文章

《Nuitka打包实战指南》实战打包Matplotlib

《Nuitka打包实战指南》实战打包Matplotlib

《Nuitka打包实战指南》实战打包PyTorch

《Nuitka打包实战指南》实战打包PyTorch

《Nuitka打包实战指南》实战打包PyTorch

《Nuitka打包实战指南》实战打包Matplotlib