|
123456789101112131415161718192021222324252627282930313233 |
- #!/usr/local/bin/python
-
- # This is the parser for London Borough Of Hammersmith and Fulham.
- # 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 = "London Borough Of Hammersmith and Fulham"
- authority_short_name = "Hammersmith and Fulham"
- base_url = "http://www.apps.lbhf.gov.uk/PublicAccess/tdc/"
-
- #print "Content-Type: text/html" # HTML is following
- #print
-
- 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
|