gpt4 book ai didi

python - 如何在 python 中呈现 HTML?

转载 作者:行者123 更新时间:2023-12-05 04:32:55 25 4
gpt4 key购买 nike

此代码对我不起作用

我想知道一种使用 python 呈现 html 的方法没有 tkinterhtml

加载 google.com 时,出现错误:

Exception in Tkinter callback
Traceback (most recent call last):
File "c:\python scripts\project\file.py", line 10, in search
html = htmlBytes.decode("utf8")
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe7 in position 10955: invalid continuation byte

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\tkinter\__init__.py", line 1921, in __call__
return self.func(*args)
File "c:\python scripts\project\file.py", line 12, in search
html = htmlBytes.decode("utf16")
UnicodeDecodeError: 'utf-16-le' codec can't decode byte 0x3e in position 14624: truncated data

我正在为一个项目工作,并使用 import 关键字启动代码。我的代码不起作用,并在搜索功能完成后关闭窗口。

import urllib.request
import tkinter
from tkinterhtml import HtmlFrame

def search():
url = urlInput.get()
page = urllib.request.urlopen(url)
htmlBytes = page.read()
try:
html = htmlBytes.decode("utf8")
except:
html = htmlBytes.decode("utf16")
frame.set_content(html)

page.close()

screen = tkinter.Tk()
screen.geometry("700x700")
frame = HtmlFrame(screen, horizontal_scrollbar="auto")
urlInput = tkinter.Entry(screen)
urlInput.grid(column=0,row=0,columnspan=10,rowspan=4,sticky="news")
searchBtn = tkinter.Button(screen,text="search",command=search)
searchBtn.grid(row=0,column=11,sticky="news")
screen.mainloop()

最佳答案

tkinter 没有渲染 HTML 的能力。您必须使用第三方库。由于您明确表示不想使用 tkinterhtml,因此您必须找到其他一些第三方渲染器。

关于python - 如何在 python 中呈现 HTML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71564676/

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