This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit a762266ecf29cc57cfe2f1e24106c274bb9396fe
tree 54b113cb82ccd50dd0bbc56a9a4890725c062230
parent 60153b4995709dc60099c8891a31ddb564b7d403 parent 9ed445f525abbf27992f870ed54b1c18f0412821
tree 54b113cb82ccd50dd0bbc56a9a4890725c062230
parent 60153b4995709dc60099c8891a31ddb564b7d403 parent 9ed445f525abbf27992f870ed54b1c18f0412821
rss-glib /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sat Nov 01 17:16:59 -0700 2008 | |
| |
AUTHORS | Mon Oct 06 02:42:28 -0700 2008 | |
| |
COPYING | Sat Jun 07 19:42:21 -0700 2008 | |
| |
ChangeLog | Wed Feb 18 18:07:28 -0800 2009 | |
| |
Makefile.am | Fri Oct 31 23:38:06 -0700 2008 | |
| |
NEWS | Sat Jun 07 19:42:21 -0700 2008 | |
| |
README | Fri Oct 31 22:52:17 -0700 2008 | |
| |
acinclude.m4 | Fri Oct 31 20:43:46 -0700 2008 | |
| |
autogen.sh | Sat Jun 07 19:42:21 -0700 2008 | |
| |
bindings/ | Wed Feb 18 18:07:28 -0800 2009 | |
| |
configure.ac | Wed Feb 18 18:07:44 -0800 2009 | |
| |
debian/ | Sun Feb 15 18:55:51 -0800 2009 | |
| |
doc/ | Tue Nov 04 12:28:27 -0800 2008 | |
| |
examples/ | Fri Nov 14 19:55:25 -0800 2008 | |
| |
rss-glib.pc.in | Sun Jun 08 00:06:13 -0700 2008 | |
| |
rss-glib/ | Mon Nov 10 01:57:58 -0800 2008 | |
| |
tests/ | Wed Jun 25 23:24:11 -0700 2008 |
README
RSS-GLib is a wrapper around the fantastic libmrss library for parsing
rss, atom, and other syndications. The reason for this was two-fold.
The libmrss, while quite powerful, is a little more complex than needed
for most projects. For this reason RSS-GLib aims to wrap that into a
simpler API. The primary reason, however, is that gobject is so easy
to wrap into various languages.
Dependencies:
glib-2.0 (probably 2.15 or higher)
libmrss0
Python example:
>>> import rss
>>> parser = rss.Parser()
>>> parser.load_from_file('/tmp/atom.xml')
True
>>> # SEE ALSO: parser.load_from_data("...")
>>> doc = parser.get_document()
>>> for item in doc.get_items(): print item.props.title







