gpt4 book ai didi

python - 使用 python-docx 在 MS Word 中添加超链接

转载 作者:太空宇宙 更新时间:2023-11-03 13:09:22 27 4
gpt4 key购买 nike

我正在尝试使用 Python 的 docx 模块在 MS Word 文档中添加超链接。

我到处搜索(官方文档、StackOverflow、Google)但一无所获。

我想做这样的事情:

from docx import Document

document = Document()

p = document.add_paragraph('A plain paragraph having some ')
p.add_hyperlink('Link to my site', target="http://supersitedelamortquitue.fr")

有人知道如何做到这一点吗?

最佳答案

是的,我们可以做到。 Reference

import docx
from docx.enum.dml import MSO_THEME_COLOR_INDEX

def add_hyperlink(paragraph, text, url):
# This gets access to the document.xml.rels file and gets a new relation id value
part = paragraph.part
r_id = part.relate_to(url, docx.opc.constants.RELATIONSHIP_TYPE.HYPERLINK, is_external=True)

# Create the w:hyperlink tag and add needed values
hyperlink = docx.oxml.shared.OxmlElement('w:hyperlink')
hyperlink.set(docx.oxml.shared.qn('r:id'), r_id, )

# Create a w:r element and a new w:rPr element
new_run = docx.oxml.shared.OxmlElement('w:r')
rPr = docx.oxml.shared.OxmlElement('w:rPr')

# Join all the xml elements together add add the required text to the w:r element
new_run.append(rPr)
new_run.text = text
hyperlink.append(new_run)

# Create a new Run object and add the hyperlink into it
r = paragraph.add_run ()
r._r.append (hyperlink)

# A workaround for the lack of a hyperlink style (doesn't go purple after using the link)
# Delete this if using a template that has the hyperlink style in it
r.font.color.theme_color = MSO_THEME_COLOR_INDEX.HYPERLINK
r.font.underline = True

return hyperlink


document = docx.Document()
p = document.add_paragraph('A plain paragraph having some ')
add_hyperlink(p, 'Link to my site', "http://supersitedelamortquitue.fr")
document.save('demo_hyperlink.docx')

关于python - 使用 python-docx 在 MS Word 中添加超链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47666642/

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