Documentation for extension system

This commit is contained in:
Lars Kiesow 2013-05-05 20:36:35 +02:00
parent 840dc7e5b8
commit 9df7e9dc48
6 changed files with 120 additions and 67 deletions

View file

@ -5,8 +5,8 @@
======= =======
This module can be used to generate web feeds in both ATOM and RSS format. This module can be used to generate web feeds in both ATOM and RSS format.
The included PodcastGenerator furthermore includes all of Apples RSS It has support for extensions. Included is for example an extension to
extension for Podcasts. produce Podcasts.
:copyright: 2013 by Lars Kiesow :copyright: 2013 by Lars Kiesow
:license: FreeBSD and LGPL, see license.* for more details. :license: FreeBSD and LGPL, see license.* for more details.
@ -69,32 +69,61 @@
>>> fe.title('The First Episode') >>> fe.title('The First Episode')
The FeedGenerators method add_entry(...) without argument provides will The FeedGenerators method add_entry(...) without argument provides will
automaticall generate a new FeedEntry object, append it to the feeds automatically generate a new FeedEntry object, append it to the feeds
internal list of entries and return it, so that additional data can be internal list of entries and return it, so that additional data can be
added. added.
----------------- ----------
Produce a Podcast Extensions
----------------- ----------
A podcast is an RSS feed with some additional elements for ITunes. The The FeedGenerator supports extension to include additional data into the XML
feedgen has a PodcastGenerator class as extension to the default structure of the feeds. Extensions can be loaded like this::
FeedGenerator which you can use to set these additional fields.
To produce a podcast simply do something like this:: >>> fg.load_extension('someext', atom=True, rss=True)
>>> from feedgen.podcast import PodcastGenerator This will try to load the extension someext from the file
>>> fg = PodcastGenerator() `ext/someext.py`. It is required that `someext.py` contains a class named
SomextExtension which is required to have at least the two methods
`extend_rss(...)` and `extend_atom(...)`. Although not required, it is
strongly suggested to use BaseExtension from `ext/base.py` as superclass.
`load_extension('someext', ...)` will also try to load a class named
SomextEntryExtension for every entry of the feed. This class can be
located either in the same file as SomextExtension or in
`ext/someext_entry.py` which is suggested especially for large extensions.
The parameters `atom` and `rss` tell the FeedGenerator if the extensions
should only be used for either ATOM or RSS feeds. The default value for both
parameters is true which means that the extension would be used for both
kinds of feeds.
**Example: Produceing a Podcast**
One extension already provided is the podcast extension. A podcast is an RSS
feed with some additional elements for ITunes.
To produce a podcast simply load the `podcast` extension::
>>> from feedgen.feed import FeedGenerator
>>> fg = FeedGenerator()
>>> fg.load_extension('podcast')
... ...
>>> fg.podcast_str(pretty=True) >>> fg.podcast.itunes_category('Technology', 'Podcasting')
>>> fg.podcast_file('podcast.xml') ...
>>> fg.rss_str(pretty=True)
>>> fg.rss_file('podcast.xml')
For the episodes of the podcast you should also use PodcastEntry instead of Of cause the extension has to be loaded for the FeedEntry objects as well
FeedEntry. However, if you use the add_entry(...) method to generator the but this is done automatically by the FeedGenerator for every feed entry if
entry objects, it will take care of that for you. the extension is loaded for the whole feed. You can, however, load an
extension for a specific FeedEntry by calling `load_extension(...)` on that
entry. But this is a rather uncommon use.
Of cause you can still produce a normat ATOM or RSS feed, even if you use Of cause you can still produce a normal ATOM or RSS feed, even if you have
the PodcastGenerator using the {atom,rss}_{str,file} methods. loaded some plugins by temporary disabling them during the feed generation.
This can be done by calling the generating method with the keyword argument
`extensions` set to `False`.
--------------------- ---------------------
Testing the Generator Testing the Generator
@ -102,6 +131,6 @@
You can test the module by simply executing:: You can test the module by simply executing::
%> pythom -m feedgen $ pythom -m feedgen
""" """

View file

@ -3,7 +3,8 @@
feedgen.ext.base feedgen.ext.base
~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~
Basic FeedGenerator which does nothing but provides all necessary methods. Basic FeedGenerator extension which does nothing but provides all necessary
methods.
:copyright: 2013, Lars Kiesow <lkiesow@uos.de> :copyright: 2013, Lars Kiesow <lkiesow@uos.de>

View file

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
''' '''
feedgen.podcast feedgen.ext.podcast
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
Extends the FeedGenerator to produce podcasts. Extends the FeedGenerator to produce podcasts.
@ -11,11 +11,7 @@
''' '''
from lxml import etree from lxml import etree
from datetime import datetime
import dateutil.parser
import dateutil.tz
from feedgen.ext.base import BaseExtension from feedgen.ext.base import BaseExtension
from feedgen.util import ensure_format
class PodcastExtension(BaseExtension): class PodcastExtension(BaseExtension):

View file

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
''' '''
feedgen.podcast_entry feedgen.ext.podcast_entry
~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~
Extends the feedgen to produce podcasts. Extends the feedgen to produce podcasts.
@ -11,14 +11,10 @@
''' '''
from lxml import etree from lxml import etree
from datetime import datetime from feedgen.ext.base import BaseEntryExtension
import dateutil.parser
import dateutil.tz
from feedgen.ext.base import BaseExtension
from feedgen.util import ensure_format
class PodcastEntryExtension(BaseExtension): class PodcastEntryExtension(BaseEntryExtension):
'''FeedEntry extension for podcasts. '''FeedEntry extension for podcasts.
''' '''

View file

@ -16,6 +16,7 @@ import dateutil.tz
from feedgen.entry import FeedEntry from feedgen.entry import FeedEntry
from feedgen.util import ensure_format from feedgen.util import ensure_format
_feedgen_version = 0.2
class FeedGenerator(object): class FeedGenerator(object):
'''FeedGenerator for generating ATOM and RSS feeds. '''FeedGenerator for generating ATOM and RSS feeds.

View file

@ -2,9 +2,9 @@
Feedgenerator Feedgenerator
============= =============
This module can be used to generate web feeds in both ATOM and RSS format. This module can be used to generate web feeds in both ATOM and RSS format. It
The included PodcastGenerator can furthermore generate all of Apples RSS has support for extensions. Included is for example an extension to produce
extension for Podcasts. Podcasts.
It is licensed under the terms of both, the FreeBSD license and the LGPLv3+. It is licensed under the terms of both, the FreeBSD license and the LGPLv3+.
Choose the one which is more convenient for you. For more details have a look Choose the one which is more convenient for you. For more details have a look
@ -37,11 +37,12 @@ You can also use pip to install the feedgen module. Simply run::
$ pip install feedgen $ pip install feedgen
------------- -------------
Create a Feed Create a Feed
------------- -------------
To create a feed simply instantiate the FeedGenerator class and insert some To create a feed simply instanciate the FeedGenerator class and insert some
data:: data::
>>> from feedgen.feed import FeedGenerator >>> from feedgen.feed import FeedGenerator
@ -55,8 +56,8 @@ data::
>>> fg.link( href='http://larskiesow.de/test.atom', rel='self' ) >>> fg.link( href='http://larskiesow.de/test.atom', rel='self' )
>>> fg.language('en') >>> fg.language('en')
Note that for the methods which set fields that can occur more than once in Note that for the methods which set fields that can occur more than once in a
a feed you can use all of the following ways to provide data: feed you can use all of the following ways to provide data:
- Provide the data for that element as keyword arguments - Provide the data for that element as keyword arguments
- Provide the data for that element as dictionary - Provide the data for that element as dictionary
@ -68,9 +69,9 @@ Example::
>>> fg.contributor({'name':'John Doe', 'email':'jdoe@example.com'}) >>> fg.contributor({'name':'John Doe', 'email':'jdoe@example.com'})
>>> fg.contributor([{'name':'John Doe', 'email':'jdoe@example.com'}, ...]) >>> fg.contributor([{'name':'John Doe', 'email':'jdoe@example.com'}, ...])
--------------- -----------------
Generate output Generate the Feed
--------------- -----------------
After that you can generate both RSS or ATOM by calling the respective method:: After that you can generate both RSS or ATOM by calling the respective method::
@ -84,42 +85,71 @@ After that you can generate both RSS or ATOM by calling the respective method::
Add Feed Entries Add Feed Entries
---------------- ----------------
To add entries (items) to a feed you need to create new FeedEntry objects To add entries (items) to a feed you need to create new FeedEntry objects and
and append them to the list of entries in the FeedGenerator. The most append them to the list of entries in the FeedGenerator. The most convenient
convenient way to go is to use the FeedGenerator itself for the way to go is to use the FeedGenerator itself for the instantiation of the
instantiation of the FeedEntry object:: FeedEntry object::
>>> fe = fg.add_entry() >>> fe = fg.add_entry()
>>> fe.id('http://lernfunk.de/media/654321/1') >>> fe.id('http://lernfunk.de/media/654321/1')
>>> fe.title('The First Episode') >>> fe.title('The First Episode')
The FeedGenerators method add_entry(...) without argument provides will The FeedGenerators method add_entry(...) without argument provides will
automatically generate a new FeedEntry object, append it to the feeds automatically generate a new FeedEntry object, append it to the feeds internal
internal list of entries and return it, so that additional data can be list of entries and return it, so that additional data can be added.
added.
----------------- ----------
Produce a Podcast Extensions
----------------- ----------
A podcast is an RSS feed with some additional elements for ITunes. The The FeedGenerator supports extension to include additional data into the XML
feedgen has a PodcastGenerator class as extension to the default structure of the feeds. Extensions can be loaded like this::
FeedGenerator which you can use to set these additional fields.
To produce a podcast simply do something like this:: >>> fg.load_extension('someext', atom=True, rss=True)
>>> from feedgen.podcast import PodcastGenerator This will try to load the extension “someext” from the file `ext/someext.py`.
>>> fg = PodcastGenerator() It is required that `someext.py` contains a class named “SomextExtension” which
is required to have at least the two methods `extend_rss(...)` and
`extend_atom(...)`. Although not required, it is strongly suggested to use
`BaseExtension` from `ext/base.py` as superclass.
`load_extension('someext', ...)` will also try to load a class named
“SomextEntryExtension” for every entry of the feed. This class can be located
either in the same file as SomextExtension or in `ext/someext_entry.py` which
is suggested especially for large extensions.
The parameters `atom` and `rss` tell the FeedGenerator if the extensions should
only be used for either ATOM or RSS feeds. The default value for both
parameters is true which means that the extension would be used for both kinds
of feeds.
**Example: Produceing a Podcast**
One extension already provided is the podcast extension. A podcast is an RSS
feed with some additional elements for ITunes.
To produce a podcast simply load the `podcast` extension::
>>> from feedgen.feed import FeedGenerator
>>> fg = FeedGenerator()
>>> fg.load_extension('podcast')
... ...
>>> fg.podcast_str(pretty=True) >>> fg.podcast.itunes_category('Technology', 'Podcasting')
>>> fg.podcast_file('podcast.xml') ...
>>> fg.rss_str(pretty=True)
>>> fg.rss_file('podcast.xml')
For the episodes of the podcast you should also use PodcastEntry instead of Of cause the extension has to be loaded for the FeedEntry objects as well but
FeedEntry. However, if you use the add_entry(...) method to generator the this is done automatically by the FeedGenerator for every feed entry if the
entry objects, it will take care of that for you. extension is loaded for the whole feed. You can, however, load an extension for
a specific FeedEntry by calling `load_extension(...)` on that entry. But this
is a rather uncommon use.
Of cause you can still produce a normal ATOM or RSS feed, even if you have
loaded some plugins by temporary disabling them during the feed generation.
This can be done by calling the generating method with the keyword argument
`extensions` set to `False`.
Of cause you can still produce a normal ATOM or RSS feed, even if you use
the PodcastGenerator using the {atom,rss}_{str,file} methods.
--------------------- ---------------------
Testing the Generator Testing the Generator