@@ -1,29 +0,0 @@ | |||||
#!/usr/local/bin/python | |||||
# This is the parser for Broads Authority. | |||||
# 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 = "Broads Authority" | |||||
authority_short_name = "Broads Authority" | |||||
base_url = "https://planning.broads-authority.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 |
@@ -1,29 +0,0 @@ | |||||
#!/usr/local/bin/python | |||||
# This is the parser for Perth and Kinross 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 = "Perth and Kinross Council" | |||||
authority_short_name = "Perthshire" | |||||
base_url = "http://193.63.61.22/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 |