Reputation: 33
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()
Is it possible to appear those texts one by one and not all at the same time? I put time.sleep()
to prove that its not appearing those separately
EDIT: Here is my code. So the problem is that if I use self.tbox.insert(END, "text")
instead of print("text")
, that text is not appearing the same way, if I use print, it will appear (prints) instantly of course. I made a website crawler or something like that, so it is very frustrating to wait when the text appears in textbox. And yes, I dont want to use print in this case
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()
Upvotes: 1
Views: 1427
Reputation: 16629
time.sleep() is a blocking call. Use after.
from tkinter import *
import time
class MyClass(object):
def __init__(self):
self.root = Tk()
button = Button(self.root, text="Button", command=self.command).pack()
#scrollbar and textbox
scrollbar = Scrollbar(self.root)
scrollbar.pack(side=RIGHT, fill=Y)
self.tbox = Text(self.root, wrap=WORD, yscrollcommand=scrollbar.set)
self.tbox.pack(fill=X)
scrollbar.configure(command=self.tbox.yview)
self.root.mainloop()
def command(self):
self.root.after(1000, lambda: self.tbox.insert(END, "Some text1\n"))
self.root.after(2000, lambda: self.tbox.insert(END, "Some text2\n"))
self.root.after(3000, lambda: self.tbox.insert(END, "Some text3"))
MyClass()
Demo:
Upvotes: 2