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