|
|
@@ -0,0 +1,29 @@ |
|
|
|
#!/usr/local/bin/python |
|
|
|
|
|
|
|
# This is the parser for Suffolk Coastal 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 = "Suffolk Coastal District Council" |
|
|
|
authority_short_name = "Suffolk Coastal" |
|
|
|
base_url = "https://apps3.suffolkcoastal.gov.uk/planningonline/acolnetcgi.exe?ACTION=UNWRAP&RIPNAME=Root.pgesearch" |
|
|
|
|
|
|
|
import AcolnetParser |
|
|
|
|
|
|
|
parser = AcolnetParser.SuffolkCoastalParser(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 |