======= sources ======= All kind of sources can be read, and new readers registered. The system provides for example an RSS reader. We have a rss file to test:: >>> from sources import sourcing >>> import os >>> dirname = os.path.dirname(sourcing.__file__) >>> dirname = os.path.split(dirname)[0] >>> location = os.path.join(dirname, 'tests', 'feed.xml') Let's try to read it:: >>> targets = (('rss', location),) >>> entries = sourcing.get_entries(targets) >>> res = entries.next() >>> len(res) 165 >>> res[0]['content'] u"CSSEdit 2 is a major upgrade ... check it out!"