提问人:AngusAU293 提问时间:3/12/2023 最后编辑:AngusAU293 更新时间:4/6/2023 访问量:84
在 Python 中从 GitHub 存储库检索图标文件
Retrieving An Icon File From A GitHub Repository In Python
问:
我想知道如何从 GitHub 存储库中检索(图标)文件。然后,将其作为窗口。ICO
iconbitmap
Tkinter
这是我的代码:
import tkinter as tk
window = tk.Tk()
window.title("Feedback And Rating")
window.geometry("300x350")
window.iconbitmap("https://raw.githubusercontent.com/AngusAU293/Application-Assets/main/Feedback%20And%20Rating%20Example/icon.ico")
我正在使用 Python 。3
答:
0赞
ZCGCoder
4/6/2023
#1
您可以使用 下载文件,然后将图标设置为下载的文件。或者,正如 Karl 建议的那样,事先下载图标并放置在与 Python 文件相同的目录中,这样应用程序就不需要互联网即可运行。urllib.request
import urllib.request
import tkinter as tk
window = tk.Tk()
window.title("Feedback And Rating")
window.geometry("300x350")
urllib.request.urlretrieve("https://raw.githubusercontent.com/AngusAU293/Application-Assets/main/Feedback%20And%20Rating%20Example/icon.ico", "icon.ico")
window.iconbitmap("icon.ico")
评论