Provides a set of functions to allow authentication via Twitter's Application Only Authentication (OAuth) methods written in Python
Need to use application authentication-only authentication to access twitter. Well why not use this quick script.
bearer_token = get_bearer_token(consumer_key,consumer_secret) # generates a bearer token
search_results = search_for_a_tweet(bearer_token, 'test') # does a very basic search
print search_results # prints results form the search
or alternatively if you just want to search for a specific tweet, use the following code.
bearer_token = get_bearer_token(consumer_key,consumer_secret) # generates a bearer token
tweet = grab_a_tweet(bearer_token, '339309066792878080') # grabs a single tweet (and some extra info) by passing the target tweet's id
print tweet['tweet'] # prints the tweet from the single tweet grabbed
If you have any queries, contact me via twitter at @jonhurlock