Python Feedparser和多线程



我有一个RSS/ATOM提要URL列表(近500个),用于解析和获取链接。

我使用python提要解析器库来解析url。为了并行解析url列表,我考虑在python中使用线程库。

我的代码看起来像这个

import threading
import feedparser
class PullFeeds:
    def _init__(self):
        self.data = open('urls.txt', 'r')
    def pullfeed(self):
        threads = []
        for url in self.data:
             t = RssParser(url)
             threads.append(t)
        for thread in threads:
             thread.start()
        for thread in threads:
             thread.join()
class RssParser(threading.Thread):
     def __init__(self, url):
         threading.Thread.__init__(self)
         self.url = url
     def run(self):
         print "Starting: ", self.name
         rss_data = feedparser.parse(self.url)
         for entry in rss_data.get('entries'):
             print entry.get('link')
         print "Exiting: ", self.name

pf = PullFeeds()
pf.pullfeed()

问题是,当我运行这个脚本时,Feedparser会返回一个空列表。但是在没有线程的情况下,feedparser会打印出从提供的URL解析的链接列表。

我该怎么解决这个问题?

要查看问题是否与多线程有关,可以尝试使用多个进程:

#!/usr/bin/env python
####from multiprocessing.dummy import Pool # use threads
from multiprocessing import Pool # use processes
from multiprocessing import freeze_support
import feedparser
def fetch_rss(url):
    try:
        data = feedparser.parse(url)
    except Exception as e:
        return url, None, str(e)
    else:
        e = data.get('bozo_exception')
        return url, data['entries'], str(e) if e else None
if __name__=="__main__":
    freeze_support()
    with open('urls.txt') as file:
        urls = (line.strip() for line in file if line.strip())
        pool = Pool(20) # no more than 20 concurrent downloads
        for url, items, error in pool.imap_unordered(fetch_rss, urls):
            if error is None:
                print(url, len(items))
            else:
                print(url, error)

问题出在Vagrant身上。我在我的一台流浪机器里运行剧本。同样的剧本在流浪汉的盒子里运行得很好。

这需要报告。我还不确定在哪里报告这个错误,无论是Vagrant、Python线程还是Feedparser库的问题。

最新更新