Browse Source

Add newlines to the debug stuff in Westminster.

master
duncan.parkes 16 years ago
parent
commit
efb8835ffe
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      python_scrapers/Westminster.py

+ 5
- 5
python_scrapers/Westminster.py View File

@@ -61,12 +61,12 @@ class WestminsterParser:


# Now get the search page # Now get the search page


sys.stderr.write("Fetching: %s" %self.base_url)
sys.stderr.write("post data: %s" %post_data)
sys.stderr.write("Fetching: %s\n" %self.base_url)
sys.stderr.write("post data: %s\n" %post_data)
response = urllib2.urlopen(self.base_url, post_data) response = urllib2.urlopen(self.base_url, post_data)


sys.stderr.write("Got it")
sys.stderr.write("Got it\n")
soup = BeautifulSoup(response.read()) soup = BeautifulSoup(response.read())


results_form = soup.find("form", {"name": "currentsearchresultsNext"}) results_form = soup.find("form", {"name": "currentsearchresultsNext"})
@@ -95,9 +95,9 @@ class WestminsterParser:


# To get the comment url, we're going to have to go to each info url :-( # To get the comment url, we're going to have to go to each info url :-(


sys.stderr.write("Fetching: %s" %application.info_url)
sys.stderr.write("Fetching: %s\n" %application.info_url)
info_response = urllib2.urlopen(application.info_url) info_response = urllib2.urlopen(application.info_url)
sys.stderr.write("Got it")
sys.stderr.write("Got it\n")


info_soup = BeautifulSoup(info_response) info_soup = BeautifulSoup(info_response)




Loading…
Cancel
Save