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