本文整理汇总了Python中Crawler.Crawler.create_file方法的典型用法代码示例。如果您正苦于以下问题:Python Crawler.create_file方法的具体用法?Python Crawler.create_file怎么用?Python Crawler.create_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Crawler.Crawler
的用法示例。
在下文中一共展示了Crawler.create_file方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Label
# 需要导入模块: from Crawler import Crawler [as 别名]
# 或者: from Crawler.Crawler import create_file [as 别名]
crawl_button.pack()
label = Label(window, text='Enter a Word to Search')
label.pack()
search_input = Entry(window)
search_input.insert(END, 'Shane')
search_input.pack()
search_button = Button(window, text='Search', command=lambda: search(search_input.get()))
search_button.pack()
scrollbar = Scrollbar(window)
scrollbar.pack(side=RIGHT, fill=Y)
text = Text(window, wrap=WORD, yscrollcommand=scrollbar.set)
text.pack()
scrollbar.config(command=text.yview)
text.insert(END, str(len(Crawler.crawled)) + " Url's have been Crawled and Indexed \n")
text.insert(END, str(len(Crawler.queue)) + " Total Number of Url's In Queue\n")
search_engine.mainloop()
Crawler.create_file()
init_gui()
Crawler.save_lists()
sys.exit()