]> jfr.im git - z_archive/twitter.git/blame - README
Version 1.14.0
[z_archive/twitter.git] / README
CommitLineData
fdbae010 1Python Twitter Tools
a65893e4 2====================
fdbae010 3
f1a8ed67 4The Minimalist Twitter API for Python is a Python API for Twitter,
5everyone's favorite Web 2.0 Facebook-style status updater for people
6on the go.
fdbae010 7
f1a8ed67 8Also included is a twitter command-line tool for getting your friends'
9tweets and setting your own tweet from the safety and security of your
5b8b1ead 10favorite shell and an IRC bot that can announce Twitter updates to an
f1a8ed67 11IRC channel.
fdbae010 12
5f47b302 13For more information, after installing the `twitter` package:
fdbae010 14
15 * import the `twitter` package and run help() on it
16 * run `twitter -h` for command-line tool help
a65893e4 17
51e0b8f1
MV
18
19twitter - The Command-Line Tool
20-------------------------------
a65893e4 21
30913a4e 22The command-line tool lets you do some awesome things:
a65893e4 23
30913a4e 24 * view your tweets, recent replies, and tweets in lists
a65893e4
MV
25 * view the public timeline
26 * follow and unfollow (leave) friends
27 * various output formats for tweet information
51e0b8f1 28
a65893e4
MV
29The bottom line: type `twitter`, receive tweets.
30
31
32
51e0b8f1
MV
33twitterbot - The IRC Bot
34------------------------
a65893e4
MV
35
36The IRC bot is associated with a twitter account (either your own account or an
37account you create for the bot). The bot announces all tweets from friends
38it is following. It can be made to follow or leave friends through IRC /msg
39commands.
40
5f47b302 41
5f47b302 42twitter-log
51e0b8f1 43-----------
5f47b302
MV
44
45`twitter-log` is a simple command-line tool that dumps all public
46tweets from a given user in a simple text format. It is useful to get
47a complete offsite backup of all your tweets. Run `twitter-log` and
48read the instructions.
49
30913a4e
MV
50twitter-archiver and twitter-follow
51-----------------------------------
52
53twitter-archiver will log all the tweets posted by any user since they
54started posting. twitter-follow will print a list of all of all the
55followers of a user (or all the users that user follows).
56
5f47b302 57
51e0b8f1
MV
58Programming with the Twitter api classes
59========================================
60
61
62The Twitter and TwitterStream classes are the key to building your own
63Twitter-enabled applications.
64
65
66The Twitter class
67-----------------
68
69The minimalist yet fully featured Twitter API class.
70
71Get RESTful data by accessing members of this class. The result
72is decoded python objects (lists and dicts).
73
74The Twitter API is documented at:
75
5d5d68cc 76**[http://dev.twitter.com/doc](http://dev.twitter.com/doc)**
51e0b8f1
MV
77
78
79Examples::
80
814d84f5
MG
81```python
82from twitter import *
51e0b8f1 83
814d84f5
MG
84# see "Authentication" section below for tokens and keys
85t = Twitter(
86 auth=OAuth(OAUTH_TOKEN, OAUTH_SECRET,
87 CONSUMER_KEY, CONSUMER_SECRET)
88 )
51e0b8f1 89
814d84f5
MG
90# Get your "home" timeline
91t.statuses.home_timeline()
51e0b8f1 92
814d84f5
MG
93# Get a particular friend's timeline
94t.statuses.friends_timeline(id="billybob")
d09c0dd3 95
814d84f5
MG
96# Also supported (but totally weird)
97t.statuses.friends_timeline.billybob()
51e0b8f1 98
ae2bf888
HN
99# to pass in GET/POST parameters, such as `count`
100t.statuses.home_timeline(count=5)
101
102# to pass in the GET/POST parameter `id` you need to use `_id`
103t.statuses.oembed(_id=1234567890)
104
814d84f5
MG
105# Update your status
106t.statuses.update(
107 status="Using @sixohsix's sweet Python Twitter Tools.")
51e0b8f1 108
814d84f5
MG
109# Send a direct message
110t.direct_messages.new(
111 user="billybob",
112 text="I think yer swell!")
d09c0dd3 113
814d84f5
MG
114# Get the members of tamtar's list "Things That Are Rad"
115t._("tamtar")._("things-that-are-rad").members()
51e0b8f1 116
814d84f5
MG
117# Note how the magic `_` method can be used to insert data
118# into the middle of a call. You can also use replacement:
119t.user.list.members(user="tamtar", list="things-that-are-rad")
a5aab114 120
814d84f5
MG
121# An *optional* `_timeout` parameter can also be used for API
122# calls which take much more time than normal or twitter stops
123# responding for some reasone
124t.users.lookup(screen_name=','.join(A_LIST_OF_100_SCREEN_NAMES), _timeout=1)
51e0b8f1 125
ae2bf888
HN
126# Overriding Method: GET/POST
127# you should not need to use this method as this library properly
128# detects whether GET or POST should be used, Nevertheless
129# to force a particular method, use `_method`
130t.statuses.oembed(_id=1234567890, _method='GET')
131```
51e0b8f1 132
814d84f5 133Searching Twitter::
51e0b8f1 134
814d84f5
MG
135``` python
136# Search for the latest tweets about #pycon
137t.search.tweets(q="#pycon")
138```
51e0b8f1
MV
139
140Using the data returned
141-----------------------
142
143Twitter API calls return decoded JSON. This is converted into
144a bunch of Python lists, dicts, ints, and strings. For example::
145
814d84f5
MG
146```python
147x = twitter.statuses.home_timeline()
51e0b8f1 148
814d84f5
MG
149# The first 'tweet' in the timeline
150x[0]
51e0b8f1 151
814d84f5
MG
152# The screen name of the user who wrote the first 'tweet'
153x[0]['user']['screen_name']
154```
51e0b8f1
MV
155
156Getting raw XML data
157--------------------
158
159If you prefer to get your Twitter data in XML format, pass
160format="xml" to the Twitter object when you instantiate it::
161
814d84f5
MG
162```python
163twitter = Twitter(format="xml")
164```
51e0b8f1
MV
165
166The output will not be parsed in any way. It will be a raw string
167of XML.
168
169
170The TwitterStream class
171-----------------------
172
173The TwitterStream object is an interface to the Twitter Stream API
174(stream.twitter.com). This can be used pretty much the same as the
175Twitter class except the result of calling a method will be an
176iterator that yields objects decoded from the stream. For
177example::
178
814d84f5
MG
179```python
180twitter_stream = TwitterStream(auth=UserPassAuth('joe', 'joespassword'))
181iterator = twitter_stream.statuses.sample()
51e0b8f1 182
814d84f5
MG
183for tweet in iterator:
184 # ...do something with this tweet...
185```
51e0b8f1
MV
186
187The iterator will yield tweets forever and ever (until the stream
188breaks at which point it raises a TwitterHTTPError.)
189
190The `block` parameter controls if the stream is blocking. Default
191is blocking (True). When set to False, the iterator will
192occasionally yield None when there is no available message.
193
84e6e1e4 194Per default the ``TwitterStream`` object uses
195[public streams](https://dev.twitter.com/docs/streaming-apis/streams/public).
196If you want to use one of the other
197[streaming APIs](https://dev.twitter.com/docs/streaming-apis), specify the URL
198manually:
199
200- [Public streams](https://dev.twitter.com/docs/streaming-apis/streams/public): stream.twitter.com
201- [User streams](https://dev.twitter.com/docs/streaming-apis/streams/user): userstream.twitter.com
202- [Site streams](https://dev.twitter.com/docs/streaming-apis/streams/site): sitestream.twitter.com
203
204Note that you require the proper
205[permissions](https://dev.twitter.com/docs/application-permission-model) to
206access these streams. E.g. for direct messages your
207[application](https://dev.twitter.com/apps) needs the "Read, Write & Direct
208Messages" permission.
209
210The following example demonstrates how to retreive all new direct messages
211from the user stream:
212
213```python
214auth = OAuth(
215 consumer_key='[your consumer key]',
216 consumer_secret='[your consumer secret]',
217 token='[your token]',
218 token_secret='[your token secret]'
219)
220twitter_userstream = TwitterStream(auth=auth, domain='userstream.twitter.com')
221for msg in twitter_userstream.user():
222 if 'direct_message' in msg:
223 print msg['direct_message']['text']
224```
225
51e0b8f1
MV
226Twitter Response Objects
227------------------------
228
229Response from a twitter request. Behaves like a list or a string
230(depending on requested format) but it has a few other interesting
231attributes.
232
233`headers` gives you access to the response headers as an
234httplib.HTTPHeaders instance. You can do
235`response.headers.getheader('h')` to retrieve a header.
236
237Authentication
238--------------
239
240You can authenticate with Twitter in three ways: NoAuth, OAuth, or
241UserPassAuth. Get help() on these classes to learn how to use them.
242
243OAuth is probably the most useful.
244
245
246Working with OAuth
247------------------
248
249Visit the Twitter developer page and create a new application:
250
5d5d68cc 251**[https://dev.twitter.com/apps/new](https://dev.twitter.com/apps/new)**
51e0b8f1
MV
252
253This will get you a CONSUMER_KEY and CONSUMER_SECRET.
254
255When users run your application they have to authenticate your app
256with their Twitter account. A few HTTP calls to twitter are required
257to do this. Please see the twitter.oauth_dance module to see how this
258is done. If you are making a command-line app, you can use the
259oauth_dance() function directly.
260
261Performing the "oauth dance" gets you an ouath token and oauth secret
262that authenticate the user with Twitter. You should save these for
263later so that the user doesn't have to do the oauth dance again.
264
265read_token_file and write_token_file are utility methods to read and
266write OAuth token and secret key values. The values are stored as
267strings in the file. Not terribly exciting.
268
269Finally, you can use the OAuth authenticator to connect to Twitter. In
270code it all goes like this::
271
814d84f5
MG
272```python
273from twitter import *
51e0b8f1 274
814d84f5
MG
275MY_TWITTER_CREDS = os.path.expanduser('~/.my_app_credentials')
276if not os.path.exists(MY_TWITTER_CREDS):
277 oauth_dance("My App Name", CONSUMER_KEY, CONSUMER_SECRET,
278 MY_TWITTER_CREDS)
51e0b8f1 279
814d84f5 280oauth_token, oauth_secret = read_token_file(MY_TWITTER_CREDS)
51e0b8f1 281
814d84f5
MG
282twitter = Twitter(auth=OAuth(
283 oauth_token, oauth_secret, CONSUMER_KEY, CONSUMER_SECRET))
51e0b8f1 284
814d84f5 285# Now work with Twitter
04e76c4d 286twitter.statuses.update(status='Hello, world!')
814d84f5 287```
51e0b8f1
MV
288
289
290License
291=======
292
8be9a740 293Python Twitter Tools are released under an MIT License.