Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
robertkeus committed Sep 14, 2014
1 parent a594941 commit ca7c1da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
Expand Up @@ -14,7 +14,7 @@
NUM_PAGES = 15

for page in range(1, NUM_PAGES+1):
base_url = 'hhttps://api.twitter.com/1.1/search.json?q=%s&geocode=%s&rpp=%s&lang=%s&page=%s' \
base_url = 'https://api.twitter.com/1.1/search.json?q=%s&geocode=%s&rpp=%s&lang=%s&page=%s' \
% (urllib2.quote(QUERY), urllib2.quote(GEOINFO), RESULTS_PER_PAGE, LANGUAGE, page)
try:
results_json = simplejson.loads(scraperwiki.scrape(base_url))
Expand Down

0 comments on commit ca7c1da

Please sign in to comment.