Replace -> Regex
This commit is contained in:
parent
00e4acfd35
commit
f0beffe747
6
bot.py
6
bot.py
@ -96,10 +96,10 @@ def cleanRSS(str):
|
|||||||
str = str.replace('(RSS generated with FetchRss)', '')
|
str = str.replace('(RSS generated with FetchRss)', '')
|
||||||
str = str.replace('-- Delivered by Feed43 service', '')
|
str = str.replace('-- Delivered by Feed43 service', '')
|
||||||
str = str.replace('Meldung bei www.tagesschau.de lesen', '')
|
str = str.replace('Meldung bei www.tagesschau.de lesen', '')
|
||||||
str = str.replace('The post.*appeared first on Sugoi! Anime Blog.', '')
|
|
||||||
str = str.replace('Der Beitrag.*erschien zuerst auf MAnime.de.', '')
|
|
||||||
str = str.replace('<', '<')
|
str = str.replace('<', '<')
|
||||||
str = str.replace('>', '>')
|
str = str.replace('>', '>')
|
||||||
|
str = re.sub('Der Beitrag.*erschien zuerst auf MAnime.de.', '', str)
|
||||||
|
str = re.sub('The post.*appeared first on Sugoi! Anime Blog.', '', str)
|
||||||
str = re.sub('http://www\.serienjunkies.de/.*\.html', '', str)
|
str = re.sub('http://www\.serienjunkies.de/.*\.html', '', str)
|
||||||
return str
|
return str
|
||||||
|
|
||||||
@ -357,7 +357,7 @@ def check_rss(bot, job):
|
|||||||
# Für 1 Nachricht pro Beitrag, tue dies:
|
# Für 1 Nachricht pro Beitrag, tue dies:
|
||||||
# Entferne hier das "text + "...
|
# Entferne hier das "text + "...
|
||||||
text = text + '\n<b>' + title + '</b>\n<i>' + feed_title + '</i>\n' + content + '\n<a href="' + link + '">Auf ' + link_name + ' weiterlesen</a>\n'
|
text = text + '\n<b>' + title + '</b>\n<i>' + feed_title + '</i>\n' + content + '\n<a href="' + link + '">Auf ' + link_name + ' weiterlesen</a>\n'
|
||||||
# ...und setze hier vor jeder Zeile 4 zusätzliche Leerzeichen
|
# ...und setze hier vor jeder Zeile 4 zusätzliche Leerzeichen (bis "else", Zeile 379)
|
||||||
if text != '':
|
if text != '':
|
||||||
if not 'id' in newentr[0]:
|
if not 'id' in newentr[0]:
|
||||||
newlast = newentr[0].link
|
newlast = newentr[0].link
|
||||||
|
Reference in New Issue
Block a user