forked from sch/Slixfeed
Update slixfeed.py
This commit is contained in:
parent
9cd101a26d
commit
64dd05837d
1 changed files with 12 additions and 11 deletions
23
slixfeed.py
23
slixfeed.py
|
@ -374,17 +374,18 @@ async def download_updates(conn):
|
|||
source = url[0]
|
||||
html = await download_page(url[0])
|
||||
print(url[0])
|
||||
try:
|
||||
feed = feedparser.parse(html)
|
||||
if feed.bozo:
|
||||
bozo = ("WARNING: Bozo detected for feed <{}>. "
|
||||
"For more information, visit "
|
||||
"https://pythonhosted.org/feedparser/bozo.html"
|
||||
.format(source))
|
||||
print(bozo)
|
||||
except (IncompleteReadError, IncompleteRead, error.URLError) as e:
|
||||
print(e)
|
||||
continue
|
||||
if html:
|
||||
try:
|
||||
feed = feedparser.parse(html)
|
||||
if feed.bozo:
|
||||
bozo = ("WARNING: Bozo detected for feed <{}>. "
|
||||
"For more information, visit "
|
||||
"https://pythonhosted.org/feedparser/bozo.html"
|
||||
.format(source))
|
||||
print(bozo)
|
||||
except (IncompleteReadError, IncompleteRead, error.URLError) as e:
|
||||
print(e)
|
||||
return
|
||||
# TODO Place these couple of lines back down
|
||||
# NOTE Need to correct the SQL statement to do so
|
||||
entries = feed.entries
|
||||
|
|
Loading…
Reference in a new issue