文件名称:xlsx2html:使用保持单元格格式从xlsx格式简单导出到html表
文件大小:196KB
文件格式:ZIP
更新时间:2024-05-29 05:53:28
Python
xlsx2html 使用保持单元格格式从xlsx格式简单导出到html表 安装 pip install xlsx2html 用法 使用简单 from xlsx2html import xlsx2html out_stream = xlsx2html ( 'path/to/example.xlsx' ) out_stream . seek ( 0 ) print ( out_stream . read ()) 或传递文件路径 from xlsx2html import xlsx2html xlsx2html ( 'path/to/example.xlsx' , 'path/to/output.html' ) 或使用文件之类的对象 import io from xlsx2html import xlsx2html # must be binary mode xlsx_file = ope
【文件预览】:
xlsx2html-master
----MANIFEST.in(33B)
----.travis.yml(1KB)
----xlsx2html()
--------core.py(9KB)
--------constants()
--------utils.py(617B)
--------__main__.py(209B)
--------compat.py(120B)
--------__init__.py(276B)
--------format()
----pytest.ini(217B)
----tests()
--------test_format.py(3KB)
--------conftest.py(2KB)
--------test_files.py(1KB)
--------screenshots()
--------__init__.py(24B)
--------fixtures()
--------test_locale_format.py(234B)
----tox.ini(527B)
----LICENSE(1KB)
----setup.cfg(399B)
----requirements.txt(286B)
----setup.py(2KB)
----.gitignore(2KB)
----README.md(2KB)
----run_xlsx2html.py(159B)