Skip to content

Instantly share code, notes, and snippets.

@panisson
Created April 24, 2013 15:30
Show Gist options
  • Save panisson/5453025 to your computer and use it in GitHub Desktop.
Save panisson/5453025 to your computer and use it in GitHub Desktop.
Twitter having problems with indexing?
import httplib
import urllib
import json
q = 'white house'
params = urllib.urlencode([('q',q),('max_id',326988860120772607),('rpp',10), ('page',1)])
print params
conn = httplib.HTTPConnection("search.twitter.com")
conn.request("GET","/search.json?"+params)
response = conn.getresponse()
data = response.read()
conn.close()
print '\n'.join([r['created_at']+'\t'+r['text'] for r in json.loads(data)['results']])
@panisson
Copy link
Author

I have the following result:

q=white+house&max_id=326988860120772607&rpp=10&page=1
Wed, 24 Apr 2013 09:19:54 +0000 Sweden Brad is definately the prick. He published the video about porntube. Such an butt. "" http://t.co/ZR2B6tlCSL
Wed, 24 Apr 2013 09:19:53 +0000 How do Julie remove these types of photos coming from the internet? "" #svpol http://t.co/ks1HnP0MYs
Wed, 24 Apr 2013 09:19:53 +0000 Heineken I wonder if this does work -- "" http://t.co/UvUzMdycI7
Wed, 24 Apr 2013 09:19:53 +0000 Mario G\u00f6tze Omg! This will be f'n amusing "" http://t.co/UsCWYZUpa2
Wed, 24 Apr 2013 09:19:53 +0000 http://t.co/Kb1HvpiWIS #JLS ahahah we can't inhale!!!! ""
Wed, 24 Apr 2013 09:19:53 +0000 Can not think I found this kind of "" http://t.co/nwjw7jd3AW Amalia
Wed, 24 Apr 2013 09:19:53 +0000 http://t.co/QzUUJH268v Damn! this can be hilarious "" Heineken
Wed, 24 Apr 2013 09:19:52 +0000 Can somebody describe this particular? "" http://t.co/dqCcXR3fvr #next13
Wed, 24 Apr 2013 09:19:52 +0000 Lol!! xd Truly Amusing ! "" #thecapitalrecap http://t.co/LhMS9vr3wi
Wed, 24 Apr 2013 09:19:52 +0000 http://t.co/O5501x8h16 The way the heck will i escape this? "" United Kingdom

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment