diff --git a/README.md b/README.md index 029d527..2723cc7 100644 --- a/README.md +++ b/README.md @@ -6,5 +6,5 @@ Scrape webpages to make an RSS feed using just regex python3 -m venv .venv source .venv/bin/activate pip install -r requirements.txt -./webpage-regex-to-rss.py ./webpage-regex-to-rss.py bogleheads2 --s3 +./webpage-regex-to-rss.py bogleheads2 --s3 ``` diff --git a/settings.py b/settings.py index 461bf3b..1c298e3 100644 --- a/settings.py +++ b/settings.py @@ -17,7 +17,7 @@ }, # exclude anything that doesn't have 50 or more replies 'exclude': lambda d: int(d.get('replies') or 0) < 50, - 'timezone': 'Etc/GMT-7', # footer says "All times are UTC-07:00" + 'timezone': 'Etc/GMT-5', # footer says "All times are UTC-05:00" 's3': { 'bucket': 'rsscombine', 'object_name': 'bogleheads2.xml',