from tkinter import *
import time
class MyClass(object):
def __init__(self):
root = Tk()
button = Button(root, text="Button", command=self.command).pack()
#scrollbar and textbox
scrollbar = Scrollbar(root)
scrollbar.pack(side=RIGHT, fill=Y)
self.tbox = Text(root, wrap=WORD, yscrollcommand=scrollbar.set)
self.tbox.pack(fill=X)
scrollbar.configure(command=self.tbox.yview)
root.mainloop()
def command(self):
time.sleep(2)
self.tbox.insert(END, "Some text1\n")
time.sleep(2)
self.tbox.insert(END, "Some text2\n")
time.sleep(2)
self.tbox.insert(END, "Some text3")
MyClass()
是否有可能一個接一個地顯示這些文本而不是全部同時顯示?我把time.sleep()
證明它沒有單獨出現Python Tkinter文本框插入問題
編輯:這是我的代碼。所以問題是,如果我使用self.tbox.insert(END, "text")
而不是print("text")
,那麼文本不會以相同的方式出現,如果我使用print,它當然會立即出現(打印)。我做了一個網站爬蟲或類似的東西,所以當文本出現在文本框中時,等待是非常令人沮喪的。是的,我不想在這種情況下使用打印
from selenium.common.exceptions import NoSuchElementException
from selenium import webdriver
from tkinter import *
phantom_path = r'phantomjs.exe'
driver = webdriver.PhantomJS(phantom_path)
class Crawler(object):
def __init__(self):
self.root = Tk()
self.root.title('Website Crawler')
label1 = Label(self.root, text='Select a website').pack()
self.website = StringVar()
Entry(self.root, textvariable=self.website).pack()
#button which executes the function
button = Button(self.root, text='Crawl', command=self.command)
button.pack()
#scrollbar and textbox
self.scrollbar = Scrollbar(self.root)
self.scrollbar.pack(side=RIGHT, fill=Y)
self.tbox = Text(self.root, wrap=WORD, yscrollcommand=self.scrollbar.set)
self.tbox.pack(fill=X)
self.scrollbar.configure(command=self.tbox.yview)
self.root.mainloop()
def command(self):
url = self.website.get()
link_list = []
link_list2 = []
driver.get(url)
driver.implicitly_wait(5)
self.tbox.insert(END, "Crawling links..\n")
#finds all links on the site and appens them to list
try:
links = driver.find_elements_by_tag_name('a')
for x in links:
x = x.get_attribute('href')
link_list.append(x)
self.tbox.insert(END, str(x)+'\n')
except NoSuchElementException:
self.tbox.insert(END, 'This site have no links\n')
pass
try:
for sites in link_list:
driver.get(sites)
self.tbox.insert(END, "### In "+str(sites)+': ###\n')
links = driver.find_elements_by_tag_name('a')
for y in links:
y = y.get_attribute('href')
link_list.append(y)
self.tbox.insert(END, str(y)+'\n')
except NoSuchElementException:
self.tbox.insert(END, 'This site have no links\n')
pass
self.tbox.insert(END, 'Done\n\n')
Crawler()
您可以逐個插入它們。你在問如何讓他們一個接一個地出現? –
@Bryan Oakley是的,我的意思是,我解決了這個問題。 –