Automatically exported from code.google.com/p/planningalerts
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

34 righe
773 B

  1. #!/usr/local/bin/python
  2. # This is the parser for Lancaster City Council.
  3. # it is generated from the file CGITemplate
  4. import cgi
  5. import cgitb
  6. #cgitb.enable(display=0, logdir="/tmp")
  7. form = cgi.FieldStorage()
  8. day = form.getfirst('day')
  9. month = form.getfirst('month')
  10. year = form.getfirst('year')
  11. authority_name = "Lancaster City Council"
  12. authority_short_name = "Lancaster"
  13. base_url = "http://planapps.lancaster.gov.uk/PublicAccess/tdc/"
  14. #print "Content-Type: text/html" # HTML is following
  15. #print
  16. import PublicAccess
  17. parser = PublicAccess.PublicAccessParser(authority_name, authority_short_name, base_url)
  18. xml = parser.getResults(day, month, year)
  19. print "Content-Type: text/xml" # XML is following
  20. print
  21. print xml # print the xml