diff --git a/Search-API.textile b/Search-API.textile index ca58c8e..6832928 100644 --- a/Search-API.textile +++ b/Search-API.textile @@ -20,7 +20,7 @@ If you take a moment to read through Twitter's "Search API Docs":http://apiwiki. import twython """ Instantiate Tango with no Authentication """ -twitter = twython.setup() +twitter = twython.core.setup() search_results = twitter.searchTwitter("WebsDotCom", rpp="50") for tweet in search_results["results"]: @@ -41,7 +41,7 @@ Parameters: import twython """ Instantiate Twython with no Authentication """ -twitter = twython.setup() +twitter = twython.core.setup() trends = twitter.getCurrentTrends() print trends @@ -62,7 +62,7 @@ Parameters: import twython """ Instantiate Twython with no Authentication """ -twitter = twython.setup() +twitter = twython.core.setup() trends = twitter.getDailyTrends() print trends @@ -83,7 +83,7 @@ Parameters: import twython """ Instantiate Twython with no Authentication """ -twitter = twython.setup() +twitter = twython.core.setup() trends = twitter.getWeeklyTrends() print trends