@@ -0,0 +1,31 @@ | |||||
#!/usr/bin/python | |||||
# This is the parser for Harrogate 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 = "Harrogate Borough Council" | |||||
authority_short_name = "Harrogate" | |||||
base_url = "http://publicaccess.harrogate.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 xml # print the xml |
@@ -0,0 +1,31 @@ | |||||
#!/usr/bin/python | |||||
# This is the parser for Kerrier District 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 = "Kerrier District Council" | |||||
authority_short_name = "Kerrier" | |||||
base_url = "http://publicaccess.kerrier.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 xml # print the xml |