1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
Metadata-Version: 1.0
Name: python-twitter
Version: 0.5
Summary: UNKNOWN
Home-page: http://code.google.com/p/python-twitter/
Author: DeWitt Clinton
Author-email: dewitt@google.com
License: Apache License 2.0
Description: =Python Twitter=
_A python wrapper around the Twitter API_
Author: `DeWitt Clinton <dewitt@google.com>`
==Introduction==
This library provides a pure python interface for the Twitter API.
Twitter (http://twitter.com) provides a service that allows people to
connect via the web, IM, and SMS. Twitter exposes a web services API
(http://twitter.com/help/api) and this library is intended to make
it even easier for python programmers to use.
==Building==
*From source:*
Install the dependencies:
http://cheeseshop.python.org/pypi/simplejson
Download the latest python-twitter library from:
http://code.google.com/p/python-twitter/
Untar the source distribution and run:
{{{
$ python setup.py build
$ python setup.py install
}}}
*Testing*
With setuptools installed:
{{{
$ python setup.py test
}}}
Without setuptools installed:
{{{
$ python twitter_test.py
}}}
==Getting the code==
View the trunk at:
http://python-twitter.googlecode.com/svn/trunk/
Check out the latest development version anonymously with:
{{{
$ svn checkout http://python-twitter.googlecode.com/svn/trunk/ python-twitter
}}}
==Documentation==
View the last release API documentation at:
http://static.unto.net/python-twitter/0.5/doc/twitter.html
==Using==
The library provides a python wrapper around the Twitter API and
the twitter data model.
*Model:*
The three model classes are twitter.Status, twitter.User, and
twitter.DirectMessage. The API methods return instances of these
classes.
To read the full API for twitter.Status, twitter.User, or
twitter.DirectMessage, run:
{{{
$ pydoc twitter.Status
$ pydoc twitter.User
$ pydoc twitter.DirectMessage
}}}
*API:*
The API is exposed via the twitter.Api class.
To create an instance of the twitter.Api class:
{{{
>>> import twitter
>>> api = twitter.Api()
}}}
To create an instance of the twitter.Api with login credentials (many API
calls required the client to be authenticated):
>>> api = twitter.Api(username='username', password='password)
To fetch the most recently posted public twitter status messages:
{{{
>>> statuses = api.GetPublicTimeline()
>>> print [s.user.name for s in statuses]
[u'DeWitt', u'Kesuke Miyagi', u'ev', u'Buzz Andersen', u'Biz Stone']
}}}
To fetch a single user's public status messages, where "user" is either
a Twitter "short name" or their user id.
{{{
>>> statuses = api.GetUserTimeline(user)
>>> print [s.text for s in statuses]
}}}
To fetch a list a user's friends (requires authentication):
{{{
>>> users = api.GetFriends()
>>> print [u.name for u in users]
}}}
To post a twitter status message (requires authentication):
{{{
>>> status = api.PostUpdate(username, password, 'I love python-twitter!')
>>> print status.text
I love python-twitter!
}}}
There are many more API methods, to read the full API documentation:
{{{
$ pydoc twitter.Api
}}}
==Todo==
Patches and bug reports are welcome, just please keep the style
consistent with the original source.
Add more example scripts.
The twitter.Status and twitter.User classes are going to be hard
to keep in sync with the API if the API changes. More of the
code could probably be written with introspection.
Statement coverage of twitter_test is only about 80% of twitter.py.
The twitter.Status and twitter.User classes could perform more validation
on the property setters.
==More Information==
Please visit http://groups.google.com/group/python-twitter for more discussion.
==Contributors==
Additional thanks to Pierre-Jean Coudert, Omar Kilani, Jodok Batlogg,
and the rest of the python-twitter mailing list.
==License==
{{{
Copyright 2007 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the 'License');
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an 'AS IS' BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
}}}
2007-09-13
Released version 0.5.
Added back support for setuptools (conditionally)
Added support for X-Twitter-* HTTP headers
Fixed the tests to work across all timezones
Removed the 140 character limit from PostUpdate
Added support for per-user tmp cache directories
2007-06-13
Released 0.4.
Fixed a unicode error that prevented tweet.py from working.
Added DestroyStatus
Added DestroyDirectMessage
Added CreateFriendship
Added DestoryFriendship
2007-06-03
Fixed the bug that prevented unicode strings being posted
Username and password now set on twitter.Api, not individual method calls
Added SetCredentials and ClearCredentials
Added GetUser ("users/show" in the twitter web api)
Added GetFeatured
Added GetDirectMessages
Added GetStatus ("statuses/show" in the twitter web api)
Added GetReplies
Added optional since_id parameter on GetPublicTimeline
Added optional since parameter on GetUserTimeline
Added optional since and user parameters on GetFriendsTimeline
Added optional user parameter on GetFriends
2007-04-27
Modified examples/twitter-to-xhtml.py to handle unicode
Dropped dependency on setuptools (too complicated/buggy)
Added unicode test cases
Fixed issue 2 "Rename needs an unlink in front"
2007-04-02
Released 0.3.
Use gmtime not localtime to calculate relative_created_at.
2007-03-26
Released 0.2
GetUserTimeline can accept userid or username.
2007-03-21
Calculate relative_created_at on the fly
2007-01-28
Released 0.1
Initial checkin of python-twitter
Keywords: twitter api
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Internet
|