| 152 sys.stderr.write(str(time.ctime()) + " DONE!!!\n\n\n") |
152 sys.stderr.write(str(time.ctime()) + " DONE!!!\n\n\n") |
| 153 |
153 |
| 154 feeds = [] |
154 feeds = [] |
| 155 urls = ("http://rss.slashdot.org/Slashdot/slashdot", |
155 urls = ("http://rss.slashdot.org/Slashdot/slashdot", |
| 156 "http://www.python.org/channews.rdf", |
156 "http://www.python.org/channews.rdf", |
| 157 "http://pidgin.im/rss.php", |
157 "http://pidgin.im/rss.php" |
| 158 "./rss.php" |
|
| 159 ) |
158 ) |
| 160 |
159 |
| 161 for url in urls: |
160 for url in urls: |
| 162 feed = Feed(url) |
161 feed = Feed(url) |
| 163 feeds.append(feed) |
162 feeds.append(feed) |