Skip to content

Commit

Permalink
need MORPH_ prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
dcalde committed Feb 15, 2024
1 parent 3c20b23 commit 0c1a7cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
import requests
import scraperwiki

days_offset_from = int(os.getenv('DAYS_OFFSET_FROM', 1))
days_offset_to = int(os.getenv('DAYS_OFFSET_TO', 0))
progress = os.getenv('PROGRESS', 'all') # In Progress|Decided|Past|all
councils = os.getenv('COUNCILS', 'ipswich').split(",")
days_offset_from = int(os.getenv('MORPH_DAYS_OFFSET_FROM', 1))
days_offset_to = int(os.getenv('MORPH_DAYS_OFFSET_TO', 0))
progress = os.getenv('MORPH_PROGRESS', 'all') # In Progress|Decided|Past|all
councils = os.getenv('MORPH_COUNCILS', 'ipswich').split(",")


today = datetime.datetime.strftime(datetime.datetime.now(), "%m-%d-%Y")
Expand Down

0 comments on commit 0c1a7cb

Please sign in to comment.