HTML 文檔的編程修改是現代數字工作流程不可或缺的一部分。編輯 HTML 中的文本,使用外部數據插入圖表,修改表格。
Python 庫是編輯 HTML 的獨立解決方案,它不依賴於其他軟件。它已準備好用於商業用途,涵蓋了專業 Python 開發人員的所有可能需求:
Python HTML 編程編輯器為開發人員提供了一個現代 API 以編程方式編輯 HTML 。將 HTML 修改功能快速集成到您的軟件中。我們的庫支持修改 Python 中的各種文檔格式。
在 Python 中以編程方式編輯 HTML 的任務是修改 HTML 文檔樹中的元素。它也被稱為"DOM"--用於與 HTML 文檔元素及其屬性交互的編程模型。
HTML 修改功能與高級 HTML 搜索功能密不可分。對於高度的靈活性,我們的 Python 庫為開發人員提供了 HTML 基於正則表達式的搜索功能。這種方法擴展了在 HTML 文件中編輯文本的可能性,允許使用模板進行動態 HTML 轉換。
最需要的功能之一是動態創建和修改 HTML 文檔中的表。使用 Python 庫處理表格非常方便:使用 Python Model.ProgLang 編輯表格、更新表格和提取表格文本。
以下示例演示瞭如何修改 Python 中的 Python HTML 文檔:
pip install aspose-words
複製
import aspose.words as aw
doc = aw.Document("Input.html")
builder = aw.DocumentBuilder(doc)
# 在文檔開頭插入文本。
builder.move_to_document_start()
builder.writeln("Morbi enim nunc faucibus a.")
doc.save("Output.html")
import aspose.words as aw
doc = aw.Document("Input.html")
builder = aw.DocumentBuilder(doc)
# 在文檔開頭插入表格。
builder.move_to_document_start()
builder.start_table()
builder.insert_cell()
builder.write("Row 1, cell 1.")
builder.insert_cell()
builder.write("Row 1, cell 2.")
builder.end_table()
doc.save("Output.html")
import aspose.words as aw
doc = aw.Document("Input.html")
builder = aw.DocumentBuilder(doc)
# 在文檔開頭插入圖片。
builder.move_to_document_start()
builder.insert_image("Image.png")
doc.save("Output.html")
我們在PyPi存儲庫中託管我們的 Python 請按照有關如何 "Aspose.Words for Python via .NET" 安裝到您的開發人員環境的分步說明進行操作。
這個包與 Python ≥3.5 和 <3.12 兼容。如果您為 Linux 開發軟件,請查看產品文檔中對 gcc 和 libpython 的附加要求。