experiments/rtest.py

28 lines
942 B
Python
Raw Normal View History

2024-04-14 20:30:09 +00:00
import datetime
from rfeed import *
item1 = Item(
title = "First article",
link = "http://www.example.com/articles/1",
description = "This is the description of the first article",
author = "Santiago L. Valdarrama",
guid = Guid("http://www.example.com/articles/1"),
pubDate = datetime.datetime(2014, 12, 29, 10, 00))
item2 = Item(
title = "Second article",
link = "http://www.example.com/articles/2",
description = "This is the description of the second article",
author = "Santiago L. Valdarrama",
guid = Guid("http://www.example.com/articles/2"),
pubDate = datetime.datetime(2014, 12, 30, 14, 15))
feed = Feed(
title = "Sample RSS Feed",
link = "http://www.example.com/rss",
description = "This is an example of how to use rfeed to generate an RSS 2.0 feed",
language = "en-US",
lastBuildDate = datetime.datetime.now(),
items = [item1, item2])
print(feed.rss())