利用爬虫做一个自己的小词典
Posted frank99
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用爬虫做一个自己的小词典相关的知识,希望对你有一定的参考价值。
GUI
from tkinter import Entry, Label, Button, Text
from tkinter import Tk
window = Tk()
window.title(u'拂髯客词典')
window.geometry("280x350+500+200")
entry = Entry(window)
entry.place(x=10,y=10,width=200,height=25)
button = Button(window, text=u"翻译")
button.place(x=220,y=10,width=50,height=25)
result_label = Label(window,text=r'翻译结果')
result_label.place(x=10,y=55)
result_text = Text(window,background="#ccc")
result_text.place(x=10,y=75,width=260,height=260)
window.mainloop()
以上是关于利用爬虫做一个自己的小词典的主要内容,如果未能解决你的问题,请参考以下文章