|
1234567891011121314151617181920212223242526272829 |
- #!/usr/local/bin/python
-
- # This is the parser for London Borough of Sutton.
- # 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 Sutton"
- authority_short_name = "Sutton"
- base_url = "http://82.43.4.135/FASTWEB/"
-
- import FastWeb
-
- parser = FastWeb.FastWeb(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
|