Fixed status code checking
This commit is contained in:
parent
7d84c7c257
commit
1c78edd38e
1 changed files with 2 additions and 3 deletions
|
@ -33,7 +33,7 @@ log_file_path = r"/app.log"
|
||||||
# Yes, I know you "can't parse HTML with regex", but
|
# Yes, I know you "can't parse HTML with regex", but
|
||||||
# just watch me.
|
# just watch me.
|
||||||
html_filter = re.compile(r"\<\/?([A-Za-z \:\.\/\"\=])*\>")
|
html_filter = re.compile(r"\<\/?([A-Za-z \:\.\/\"\=])*\>")
|
||||||
success_codes = ["200", "201", "202", "203", "204", "205", "206"]
|
success_codes = [200, 201, 202, 203, 204, 205, 206]
|
||||||
app_config = {}
|
app_config = {}
|
||||||
|
|
||||||
|
|
||||||
|
@ -108,8 +108,7 @@ def main():
|
||||||
last_check = app_config["lastupdate"]
|
last_check = app_config["lastupdate"]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
last_check = now - 21600 # first run, no lastupdate, check up to 6 hours ago
|
last_check = now - 21600 # first run, no lastupdate, check up to 6 hours ago
|
||||||
for i, hook in enumerate(app_config["feeds"]):
|
for i, hook in enumerate(app_config["feeds"]): # Feed loop start
|
||||||
# Get the feed
|
|
||||||
logger.info("Parsing feed %s...", hook["name"])
|
logger.info("Parsing feed %s...", hook["name"])
|
||||||
feeds = feedparser.parse(hook["url"])
|
feeds = feedparser.parse(hook["url"])
|
||||||
latest_post = []
|
latest_post = []
|
||||||
|
|
Loading…
Add table
Reference in a new issue