gpt4 book ai didi

python - 有没有办法使用 Pandas Dataframes 在 Excel 中设置敏感度标签?

转载 作者:行者123 更新时间:2023-12-04 13:59:10 42 4
gpt4 key购买 nike

我有一个使用 Pandas 数据框生成的 excel 文件。我想在 Excel 文件中添加 Python 中的“公共(public)”、“ secret ”等敏感度标签。

This link shows the normal way of adding the sensitivity label in Office 365

但是,我想用代码完成同样的事情。

OpenPyxl 确实提供了一种添加密码的方法,但不提供敏感度标签。

最佳答案

您可以使用 xlsxwriter我不知道怎么用 Pandas 做

或者

您可以使用 os 在创建文件时更改文件的模式包chmod

from xlsxwriter.workbook import Workbook

book = Workbook('file/path')
sheet = book.add_worksheet('worksheet_name')

# Add separate format for unlocked cells
unlocked = book.add_format({'locked': 0})
# Protect all cells in your sheet by default
sheet.protect()

关于python - 有没有办法使用 Pandas Dataframes 在 Excel 中设置敏感度标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55035814/

42 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com