Parsing Python Queue object(正在解析Python队列对象)
本文介绍了正在解析Python队列对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在想代码中的问题出在哪里
from queue import Queue
from threading import Thread
from html.parser import HTMLParser
import urllib.request
hosts = ["http://yahoo.com", "http://google.com", "http://ibm.com"]
queue = Queue()
class ThreadUrl(Thread):
def __init__(self, queue):
Thread.__init__(self)
self.queue = queue
def run(self):
while True:
host = self.queue.get()
url=urllib.request.urlopen(host)
url.read(4096)
self.queue.task_done()
class MyHTMLParser(HTMLParser):
def handle_starttag(self, tag, attrs):
print("Start tag:", tag)
for attr in attrs:
print(" attr:", attr)
def consumer():
for i in range(3):
t = ThreadUrl(queue)
t.setDaemon(True)
t.start()
for host in hosts:
parser = MyHTMLParser()
parser.feed(host)
queue.put(host)
queue.join()
consumer()
我的目标是提取URL的内容,读取队列并最终对其进行解析。当我执行代码时,它不会打印任何内容。我应该将解析器放在哪里?
推荐答案
示例:
from queue import Queue
from threading import Thread
from html.parser import HTMLParser
import urllib.request
NUMBER_OF_THREADS = 3
HOSTS = ["http://yahoo.com", "http://google.com", "http://ibm.com"]
class MyHTMLParser(HTMLParser):
def handle_starttag(self, tag, attrs):
print("Start tag:", tag)
for attr in attrs:
print(" attr:", attr)
class ThreadUrl(Thread):
def __init__(self, queue):
Thread.__init__(self)
self.queue = queue
def run(self):
while True:
host = self.queue.get()
url = urllib.request.urlopen(host)
content = str(url.read(4096))
parser = MyHTMLParser()
parser.feed( content )
self.queue.task_done()
def consumer():
queue = Queue()
for i in range(NUMBER_OF_THREADS):
thread = ThreadUrl(queue)
thread.setDaemon(True)
thread.start()
for host in HOSTS:
queue.put(host)
queue.join()
if __name__ == '__main__':
consumer()
这篇关于正在解析Python队列对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:正在解析Python队列对象
基础教程推荐
猜你喜欢
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 如何在Python中绘制多元函数? 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01