Browse Source

Gosport has been hardcoded for the last year to check one date in 2008 - woops!

master
duncan.parkes 15 years ago
parent
commit
4ff52768f4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      python_scrapers/Gosport.py

+ 2
- 2
python_scrapers/Gosport.py View File

@@ -55,7 +55,7 @@ class GosportParser:
# ("ApplicationSearch21%3AtbDevAddress", ""),
# ("ApplicationSearch21%3AtbApplicantName", ""),
# ("ApplicationSearch21%3AtbAgentName", ""),
("ApplicationSearch21:tbDateSubmitted", "10/01/2008"),
("ApplicationSearch21:tbDateSubmitted", search_date.strftime(search_date_format)),
("ApplicationSearch21:btnDateSubmitted", "Search"),
# ("ApplicationSearch21%3AtbDateDetermined", ""),
)
@@ -96,5 +96,5 @@ class GosportParser:

if __name__ == '__main__':
parser = GosportParser()
print parser.getResults(20,11,2008)
print parser.getResults(12,6,2009)


Loading…
Cancel
Save