diff --git a/morss/feeds.py b/morss/feeds.py index 0fee42b..cdd4f1c 100644 --- a/morss/feeds.py +++ b/morss/feeds.py @@ -138,6 +138,9 @@ class ParserBase(object): # to output in sth fancy (json, csv, html), change class type pass + def torss(self): + return self.convert(FeedXML).tostring() + def tojson(self): return self.convert(FeedJSON).tostring()