基于 Python 开发的自动化 office 工具包
Project description
安装
pip install office-tool-plus -i https://mirrors.aliyun.com/pypi/simple/
使用
excel
ws_to_pdf(excel_path: str, sheet_names: list = None, pdf_dir: str = None):
将指定的Excel工作簿中的工作表导出为PDF格式。
参数:
excel_path: Excel 文件的路径。sheet_names: 需要导出的工作表名称列表。如果未提供,则默认导出所有工作表。pdf_dir: PDF 文件的保存目录。如果未提供,则默认保存在 Excel 文件的同目录下。
返回:
pdf_path: 导出的PDF文件路径。
示例:
from office_tool_plus import ExcelTools
test = ExcelTools()
# 将整个Excel导出为pdf,并保存在源目录下
excel.ws_to_pdf('test.xlsx')
# 将整个Excel导出为pdf,并保存在output目录下
excel.ws_to_pdf('test.xlsx', pdf_dir='output')
# 将指定sheet导出为pdf,并保存在源目录下
excel.ws_to_pdf('test.xlsx', ['Sheet1', 'Sheet2'])
# 将指定sheet导出为pdf,并保存在output目录下
excel.ws_to_pdf('test.xlsx', ['Sheet1', 'Sheet2'], 'output')
wb_to_pdf(excel_dir: str, suffix: list = None, recursive=True, pdf_dir: str = None):
将指定目录下的Excel文件批量导出为PDF格式。
参数:
excel_dir: Excel 文件的目录路径。suffix: 需要导出的文件后缀名列表。如果未提供,则默认导出["*.xlsx", "*.xls"]recursive: 是否递归搜索子目录。如果为True,则递归搜索子目录,否则只搜索当前目录。pdf_dir: PDF 文件的保存目录。如果未提供,则默认保存在 Excel 文件的同目录下。
返回:
None
示例:
from office_tool_plus import ExcelTools
test = ExcelTools()
# 将当前目录下(包含子目录)所有的 Excel 文件批量导出为pdf,并保存在源目录下
excel.wb_to_pdf('test')
# 将当前目录下(包含子目录)所有的 Excel 文件批量导出为pdf,并保存在 output 目录下
excel.wb_to_pdf('test', pdf_dir='output')
# 将当前目录下(不包含子目录)所有的 Excel 文件批量导出为pdf,并保存在源目录下
excel.wb_to_pdf('test', recursive=False)
# 将当前目录下(不包含子目录),后缀是 *.xlsx 的 Excel 文件批量导出为pdf,并保存在 output 目录下
excel.wb_to_pdf('test', suffix=['*.xlsx'], recursive=False, pdf_dir='output')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file office_tool_plus-0.0.5.tar.gz.
File metadata
- Download URL: office_tool_plus-0.0.5.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ce8a9dfa21d93be3521415ad8ab7b31634a2dd8d3b718f2c80e967ee8942ca5
|
|
| MD5 |
90a3e42a654bc4ef116a097abaf6e33d
|
|
| BLAKE2b-256 |
e6ca1d5776264aac0f6c0ba539472aa7569104b130ea349e042dfc4473bf243e
|
File details
Details for the file office_tool_plus-0.0.5-py3-none-any.whl.
File metadata
- Download URL: office_tool_plus-0.0.5-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
742f6ee9e918a1662d3966a9ba3c489f28d8a07eda89c8672c35a260f3e38154
|
|
| MD5 |
82a82516b74c69ff42ef1cc4f2c03f92
|
|
| BLAKE2b-256 |
254c6a6a2b5b92445ab6adac335463be441f5b8bc710f12f883ac2f397f0c9c7
|