up vote 37 down vote favorite
18
share [g+] share [fb]

Can you recommend a feed generator library for Python? I could build the XML myself, but I'm looking for a recommended library that is built from the ground up around the RSS (or Atom) spec.

link|improve this question

Please make sure you make this feed PubSubHubbub! – Julien Genestoux Sep 26 '10 at 20:15
feedback

5 Answers

up vote 23 down vote accepted

I can recommend that you use PyRSS2Gen. I've used it before and it's really simple and effective

link|improve this answer
Thanks for the suggestion! – lupefiasco Feb 2 '09 at 20:31
feedback

I haven't used them myself, but these exist:

link|improve this answer
feedback

According to http://trac.defuze.org/wiki & http://trac.defuze.org/wiki/atomixlib: atomxlib is "deprecated in favor of the more generic bridge".

So knowing that atomxlib is no longer updated, the choice (for me) is now between PyRSS2Gen and a generic XML library (but not necessarily bridge).

link|improve this answer
feedback

You can use my dict2rss Library to create a RSS-Feed from JSON/DICT Hashes.

http://pastebucket.de/paste/749ce8de << Download this python-Modul and save it in your Python-Path. (Use dict2rss as Filename)

The Syntax is very easy. Justuse this bunch of code.


#!/usr/bin/python
import dict2rss

my_feed_data = {
    'title': 'My feed',

    'item':{
        'a': {
            'description':'Hello&World',
            'content':'This is a sample Content',
            'comment': "This is a comment",
            'pubDate':'18 GMT 1202389 2010',
        },
        'b': {
            'description':'Second Item',
            'content':'I love dict2rss.py',
        },
    },

    'version':'0.1',
}

d = dict2rss(my_feed_data)
d.PrettyPrint()

You should now get the following Output in XML:


<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="0.1">
        <channel>
                <title>My feed</title>
                <link></link>
                <description>a mapped dict2rss</description>
                <language>en-en</language>  
            <item>
                        <content>This is a sample Content</content>
                        <!-- This is a comment -->
                        <description>Hello&World</description>
                        <pubDate>18 GMT 1202389 2010</pubDate>
                </item>
                <item>
                        <content>I love dict2rss.py</content>
                        <description>Second Item</description>
                </item>
        </channel>
</rss>
link|improve this answer
Very, very cool! – Kenny M. Jan 7 '11 at 16:28
1  
Looks like your URL is dead. Is there somewhere else I can get it? – zekel Mar 17 '11 at 17:27
Looks like it's been picked up again and updated over at GitHub – Kurt McKee Nov 21 '11 at 17:24
feedback

WebHelpers has a feedgenerator class.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.