Browse Source

add redditch

master
duncan.parkes 17 years ago
parent
commit
348334b689
2 changed files with 31 additions and 1 deletions
  1. +29
    -0
      cgi-bin/Redditch.cgi
  2. +2
    -1
      python_scrapers/PublicAccessSites.csv

+ 29
- 0
cgi-bin/Redditch.cgi View File

@@ -0,0 +1,29 @@
#!/usr/local/bin/python

# This is the parser for Redditch Borough Council.
# it is generated from the file CGITemplate

import cgi
import cgitb
#cgitb.enable(display=0, logdir="/tmp")


form = cgi.FieldStorage()
day = form.getfirst('day')
month = form.getfirst('month')
year = form.getfirst('year')


authority_name = "Redditch Borough Council"
authority_short_name = "Redditch"
base_url = "http://access.redditchbc.gov.uk/publicaccess/tdc/"

import PublicAccess

parser = PublicAccess.PublicAccessParser(authority_name, authority_short_name, base_url)

xml = parser.getResults(day, month, year)

print "Content-Type: text/xml" # XML is following
print
print xml # print the xml

+ 2
- 1
python_scrapers/PublicAccessSites.csv View File

@@ -71,4 +71,5 @@
"Chorley Borough Council", "Chorley", "http://planning.chorley.gov.uk/PublicAccess/tdc/", "PublicAccess", "PublicAccessParser"
"Gravesham Borough Council", "Gravesham", "http://195.102.67.4/PublicAccess/tdc/", "PublicAccess", "PublicAccessParser"
"London Borough Of Newham", "Newham", "http://pacaps.newham.gov.uk/publicaccess/tdc/", "PublicAccess", "PublicAccessParser"
"North West Leicestershire District Council", "NW Leicestershire", "http://paccess.nwleics.gov.uk/PublicAccess/tdc/", "PublicAccess", "PublicAccessParser"
"North West Leicestershire District Council", "NW Leicestershire", "http://paccess.nwleics.gov.uk/PublicAccess/tdc/", "PublicAccess", "PublicAccessParser"
"Redditch Borough Council", "Redditch", "http://access.redditchbc.gov.uk/publicaccess/tdc/", "PublicAccess", "PublicAccessParser"

Loading…
Cancel
Save