A newslynx-opinionated wrapper around twython
Project description
birdfeeder ====== Feed on tweets
Install
pip install birdfeeder
Test
Requires nose
nosetests
Usage
birdfeeder simplifies twython by taking care of alot the common problems in working with the Twitter API, including:
pagination
rate limiting
url unshortening
error handling
Thus far, we’ve implemented 5 methods: connect, search, list_timeline, user_timeline, and user_stats (a custom method):
Connect
If you have TWT_API_KEY, TWT_API_SECRET, TWT_ACCESS_TOKEN, and TWT_ACCESS_SECRET set as environmental variables, you can use all the methods without explicitly connecting. However, if you want to explicitly connect beforehand, you can also pass in a connection as conn to any method:
from birdfeeder import connect, search
conn = connect()
for t in search(q="hello world", conn=conn):
print t
In addition, you can also pass in an authenticated user’s token with access_token:
from birdfeeder import connect, search
for t in search(q="hello world", access_token="authenticed_users_token"):
print t
Search
from birdfeeder import search, connect
tweets = search(q="hello world", count=10)
for t in tweets:
print t
List Timeline
from birdfeeder import list_timeline
tweets = list_timeline(owner_screen_name = 'cspan', slug = 'members-of-congress', count=100)
for t in tweets:
print t
User Timeline
from birdfeeder import user_timeline
tweets = user_timeline(screen_name = 'newslynx')
for t in tweets:
print t
User Stats
This returns a dictionary of stats about a user, with the time it ran. It’s intended for creating a time series of a user’s metadata:
from birdfeeder import user_stats
stats = user_stats(screen_name = "newslynx")
print stats
Pagination
With birdfeeder, pagination is simple, just add pagination=True to any method, ie:
from birdfeeder import user_timeline
tweets = user_timeline(screen_name = 'newslynx', count = 5, pagination=True)
for t in tweets:
print t
This will keep track of the max_id of each request and iterate through results until everything has been retrieved (or until otherwise specified - more below). For each request, it will wait for a defualt of 15 seconds so as to avoid rate limiting.
Custom Options
We’ve added some custom options for each method, they are as follows:
throttle - the time in seconds to wait between each request (only relevant when paginate = True)
max_requests - the maximum number of requests to make (only relevant when paginate = True)
wait - the default number of seconds to wait after an error
backoff - the factor to multiply wait by after each error
timeout - the time in seconds at which point we should abandon an error prone request. Here, birdfeeder will log a warning, but will otherwise fail silently.
Here are the default arguments for all methods:
default_kws = {
'paginate' : False,
'max_id': None,
'throttle' : 15,
'count' : 200,
'max_requests' : None,
'wait': 1,
'backoff': 2,
'timeout': 30
}
Streaming
Finally, we’ve included a simple streaming API client (from here). With this, you can pass in three functions on initialization: a parsing function, a storage function, and an error function, ie:
from birdfeeder import Stream
def parse(data):
return data['text']
def store(data):
print data
def error(status_code, data):
pass
s = Stream(parse=parse, store=store, error=error)
s.statuses.filter(track='twitter')
Acknowledgements
To write this library, I heavily referenced Jeremy Singer-Vine’s excellent `twick <https://github.com/jsvine/twick>`__.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file birdfeeder-0.0.7.tar.gz
.
File metadata
- Download URL: birdfeeder-0.0.7.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0af187d05def5e1c9713898334a36deb6ec0349625e908e01b4fdb4494d080b8 |
|
MD5 | d2e5797463662e154a1173238eeea6a5 |
|
BLAKE2b-256 | fff7a9e78476dbd3429b50e9e8e21cf618c81cfc8502b0330128b12fbc6cd98c |
File details
Details for the file birdfeeder-0.0.7.macosx-10.9-intel.exe
.
File metadata
- Download URL: birdfeeder-0.0.7.macosx-10.9-intel.exe
- Upload date:
- Size: 74.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72bd4fa823a5a216c3557a6773e9c3c3406312d5790a03c2f6a4ab7d86c72243 |
|
MD5 | 6a53808254df607db5681b812333553f |
|
BLAKE2b-256 | ac4982c79ea7256b92fdbc91f057773794441d3ab8a5f6d055514e90a185001b |