Mercurial > hg > index.fcgi > www > www-1
comparison myrss/myrss_test_feed.py @ 123:b2aebd4994ea
myrss2: update FEEDS again to remove The Browser
author | paulo |
---|---|
date | Thu, 25 Mar 2021 00:23:17 -0700 |
parents | c7bbd3805509 |
children |
comparison
equal
deleted
inserted
replaced
1:db37cf336f5a | 2:e3decc0e1b10 |
---|---|
1 import datetime | 1 import datetime |
2 | 2 |
3 import myrss_app | 3 import myrss_app |
4 | 4 |
5 | 5 |
6 x = myrss_app._process_feed(open("yahoo_blogs.rss.xml")) | 6 feed = open("testfeed.xml").read() |
7 filtered_feed = myrss_app._filter_feed(feed) | |
8 x = myrss_app._process_feed(filtered_feed) | |
7 y = myrss_app._to_html(datetime.datetime.now(), [x]) | 9 y = myrss_app._to_html(datetime.datetime.now(), [x]) |
8 | 10 |
9 print y | 11 print y |