epicyon/feeds.py

23 lines
640 B
Python
Raw Normal View History

2020-11-09 15:22:59 +00:00
__filename__ = "feeds.py"
__author__ = "Bob Mottram"
__license__ = "AGPL3+"
2021-01-26 10:07:42 +00:00
__version__ = "1.2.0"
2020-11-09 15:22:59 +00:00
__maintainer__ = "Bob Mottram"
__email__ = "bob@freedombone.net"
__status__ = "Production"
2021-06-15 15:08:12 +00:00
__module_group__ = "RSS Feeds"
2020-11-09 15:22:59 +00:00
def rss2TagHeader(hashtag: str, httpPrefix: str, domainFull: str) -> str:
2021-07-03 16:44:07 +00:00
return \
"<?xml version=\"1.0\" encoding=\"UTF-8\" ?>" + \
"<rss version=\"2.0\">" + \
'<channel>' + \
' <title>#' + hashtag + '</title>' + \
' <link>' + httpPrefix + '://' + domainFull + \
2020-11-09 15:22:59 +00:00
'/tags/rss2/' + hashtag + '</link>'
def rss2TagFooter() -> str:
2021-07-03 16:44:07 +00:00
return '</channel></rss>'