aboutsummaryrefslogtreecommitdiff
path: root/feedgetter.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-02-15 11:36:20 +0100
committercedricbonhomme <devnull@localhost>2010-02-15 11:36:20 +0100
commit0be5eaccf416646abbaf5677b331963bf9a64b1b (patch)
treefb89aa2e277a8b18cb2b3b043899c89c2df196c8 /feedgetter.py
parentMinor bug fix: _Too many values to unpack_ line 257 of pyAggr3g470r.py: split... (diff)
downloadnewspipe-0be5eaccf416646abbaf5677b331963bf9a64b1b.tar.gz
newspipe-0be5eaccf416646abbaf5677b331963bf9a64b1b.tar.bz2
newspipe-0be5eaccf416646abbaf5677b331963bf9a64b1b.zip
First implementation of the search functionality of articles (search for string in the description of articles).
Diffstat (limited to 'feedgetter.py')
-rw-r--r--feedgetter.py36
1 files changed, 17 insertions, 19 deletions
diff --git a/feedgetter.py b/feedgetter.py
index d65ef4b8..631b6374 100644
--- a/feedgetter.py
+++ b/feedgetter.py
@@ -1,6 +1,8 @@
#! /usr/local/bin/python
#-*- coding: utf-8 -*-
+from __future__ import with_statement
+
__author__ = "Cedric Bonhomme"
__version__ = "$Revision: 0.6 $"
__date__ = "$Date: 2010/02/05 $"
@@ -33,11 +35,6 @@ class FeedGetter(object):
"""
Initializes the base and variables.
"""
- try:
- self.feeds_file = open("./var/feed.lst")
- except:
- print "./feed.lst not found"
- exit(0)
# Create the base if not exists.
sqlite3.register_adapter(str, lambda s : s.decode('utf-8'))
self.conn = sqlite3.connect("./var/feed.db", isolation_level = None)
@@ -57,20 +54,21 @@ class FeedGetter(object):
"""
Parse the file 'feeds.lst' and launch a thread for each RSS feed.
"""
- for a_feed in self.feeds_file.readlines():
- # test if the URL is well formed
- for url_regexp in url_finders:
- if url_regexp.match(a_feed):
- the_good_url = url_regexp.match(a_feed).group(0).replace("\n", "")
- try:
- # launch a new thread for the RSS feed
- thread = threading.Thread(None, self.process, \
- None, (the_good_url,))
- thread.start()
- list_of_threads.append(thread)
- except:
- pass
- break
+ with open("./var/feed.lst") as f:
+ for a_feed in f:
+ # test if the URL is well formed
+ for url_regexp in url_finders:
+ if url_regexp.match(a_feed):
+ the_good_url = url_regexp.match(a_feed).group(0).replace("\n", "")
+ try:
+ # launch a new thread for the RSS feed
+ thread = threading.Thread(None, self.process, \
+ None, (the_good_url,))
+ thread.start()
+ list_of_threads.append(thread)
+ except:
+ pass
+ break
# wait for all threads are done
for th in list_of_threads:
bgstack15