Reorganizing into a more package based structure, setting an initial (not working) setup.py file - this will be expanded soon
This commit is contained in:
parent
4fed1e241f
commit
d7d170cc3b
16 changed files with 1357 additions and 0 deletions
8
examples/search_results.py
Normal file
8
examples/search_results.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import tango
|
||||
|
||||
""" Instantiate Tango with no Authentication """
|
||||
twitter = tango.setup()
|
||||
search_results = twitter.searchTwitter("WebsDotCom", rpp="50")
|
||||
|
||||
for tweet in search_results["results"]:
|
||||
print tweet["text"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue