https://github.com/bear/python-twitter

sort by:
Revision Author Date Message Commit Date
a9bbc65 Moved section up to usage 24 December 2014, 18:59:59 UTC
e6710c7 Merge branch 'master' of github.com:bear/python-twitter 24 December 2014, 18:57:22 UTC
65c54f8 bumped version to 2.2 24 December 2014, 18:56:42 UTC
31225fc added notes on django templatetags 24 December 2014, 18:55:25 UTC
5d54c10 removed view_friends.py from base directory as it's already in examples dir 24 December 2014, 18:53:02 UTC
e9f6f08 Merge pull request #190 from jsteiner207/master Create view_friends.py 24 December 2014, 18:45:03 UTC
010f17e Merge pull request #189 from jsteiner207/patch-1 Create view_friends.py 24 December 2014, 18:44:35 UTC
cf2869c Merge pull request #191 from kirang89/master Better bootstrapping 24 December 2014, 18:43:23 UTC
719801e Merge pull request #204 from jschlst/simple-error import UserStatus for LookupFriendship 02 December 2014, 08:25:20 UTC
344fd4c import UserStatus for LookupFriend 02 December 2014, 05:17:57 UTC
8a0f984 Merge pull request #203 from zethraeus/master include default_profile and default_profile_image in User object 17 November 2014, 20:48:37 UTC
a207611 added default_profile and default_profile_image to User.__eq__ and User.asDict() 17 November 2014, 20:28:03 UTC
44a7f7a include default_profile and default_profile_image in User object 17 November 2014, 18:59:21 UTC
6aa684f Merge pull request #202 from TheOpenedSource/master fix negative return values in twitter.api.GetSleepTime 16 November 2014, 16:40:49 UTC
56140ee fix negative return values in twitter.api.GetSleepTime 16 November 2014, 08:33:03 UTC
b470206 Merge pull request #197 from cuducos/unblock Add unblock user method - Api.DestroyBlock() 10 November 2014, 14:58:59 UTC
651ad18 Fix POST data and URL 09 November 2014, 13:00:49 UTC
ed3fc24 Add Api.DestroyBlock() method 09 November 2014, 12:37:03 UTC
0774965 Merge pull request #196 from astagi/fixtypo Fix typo in method name 26 October 2014, 18:46:33 UTC
f09ab41 Fix typo in method name 26 October 2014, 18:01:41 UTC
b559bd9 Merge pull request #195 from alella/master Fixing documentation urls 23 October 2014, 17:14:06 UTC
ee560d3 Fixing documentation urls 23 October 2014, 17:00:38 UTC
ae56bd6 Better bootstrapping - Add requirements file for easy installation of dependencies - Add Makefile to automate trivial tasks - Modify README with new instructions - Add environment directory to gitignore 02 October 2014, 23:11:53 UTC
4e11557 Create view_friends.py 01 October 2014, 13:41:03 UTC
2f15a21 Create view_friends.py 01 October 2014, 13:35:32 UTC
91feba2 Merge pull request #186 from awentzonline/stream-filter-stall-warning Fix stall_warnings param for GetStreamFilter 05 September 2014, 01:19:59 UTC
582ccc3 Fix stall_warnings param for GetStreamFilter 04 September 2014, 22:26:31 UTC
3ee6588 Merge pull request #183 from adodge/master Fix README example code (Re: Issue #182) 12 August 2014, 19:06:47 UTC
2502e21 Fix README example code Addresses issue #182 12 August 2014, 17:46:28 UTC
dd42d7d Merge pull request #181 from greedo/error_standard_form TwitterErrors are now dictionaries as requested for #179 30 July 2014, 06:02:06 UTC
b94c728 TwitterErrors are now dictionaries as requested for #179 30 July 2014, 04:09:43 UTC
17ab355 Merge pull request #180 from greedo/multiple_media_entities Multiple media entities 23 July 2014, 07:01:23 UTC
c82f1d1 merged with master 23 July 2014, 05:09:40 UTC
f222e6f cleaned up the code a bit 23 July 2014, 04:48:57 UTC
6012902 multiple post upload 22 July 2014, 04:14:46 UTC
5f0627c Merge pull request #177 from greedo/multiple_media_entities added support for getting extended entities 20 July 2014, 17:02:15 UTC
0b94073 added support for getting extended entities 17 July 2014, 02:56:47 UTC
63cbcac Merge pull request #172 from greedo/spelling Spelling 12 July 2014, 22:11:45 UTC
63b571c Merge pull request #173 from JustB/patch-1 Added missing backquote 12 July 2014, 18:00:33 UTC
da9612c Added missing backquote 12 July 2014, 17:52:54 UTC
e92f50e merged from upstream 12 July 2014, 16:39:56 UTC
c8cb82a minor spelling corrections 12 July 2014, 16:22:55 UTC
07debf9 Merge pull request #168 from mafagafo/master Typo down 11 July 2014, 19:52:39 UTC
bf32511 Typo down 11 July 2014, 18:22:46 UTC
f374154 adding wheel status badge 11 July 2014, 03:19:12 UTC
5aaa18b bump version to v2.1 11 July 2014, 02:38:39 UTC
1d792f4 merge conflict update 11 July 2014, 02:18:41 UTC
1a28a85 updated setup.py to be wheel compatible, changed README to rst, removed requirements.txt and other config and copyright cleanups 11 July 2014, 02:07:19 UTC
a3f8ff2 Rewritten get_access_token.py to use requests-oauth get_access_token.py now uses the requests oauth lib and no longer depends on oauth2. This closes #151 09 July 2014, 13:22:37 UTC
0424031 Update to python 2.6, remove simplejson dependency This updates the requirements to python 2.6, removing the simplejson dependency as simplejson is included from python 2.6 onwards. Also various things were cleaned up/corrected: * Removed included simplejson * Google APP Engine has also moved to python 2.7 so the import logic for simplejson in __init__.py was removed, as well as the unused urlparse imports. https://developers.google.com/appengine/docs/python/python25/diff27 * Cleaned up unused libraries/dependencies in documentation This closes #123 09 July 2014, 12:50:34 UTC
6d2b0bc PostMedia() now supports file-like objects PostMedia() now accepts file-like objects with an read() method in addition to passing the media as a filename or HTTP URL. Closes #125 Also we now close the FP after read()ing it when using a filename as parameter. 09 July 2014, 11:25:04 UTC
d4b096d Replace requests_timeout with general timeout parameter This closes #112 09 July 2014, 10:31:40 UTC
4e3027a Merge pull request #166 from mafagafo/master Missing whitespace (I have OCD) 08 July 2014, 04:08:43 UTC
b1c1dcb Missing whitespace (I have OCD) 07 July 2014, 23:50:04 UTC
ba9794e updated/unified the documentation and style plus some general cleanup 07 July 2014, 18:52:49 UTC
a75c69b Merge pull request #165 from greedo/issue131 traps request errors and raises an standard exception 04 July 2014, 15:41:26 UTC
2d52e83 traps request errors and raises an standard exception 04 July 2014, 04:23:52 UTC
41840bc Merge pull request #156 from foxmask/patch-1 Update _file_cache.py 03 July 2014, 21:48:08 UTC
0e14d2e Merge pull request #164 from greedo/test_fix fixed spelling mistake 03 July 2014, 21:47:29 UTC
353b54c fixed spelling mistake 03 July 2014, 19:37:44 UTC
4fc3458 Merge pull request #159 from udox/master Allow post media to work with urls 30 June 2014, 04:32:02 UTC
ac8f187 Merge pull request #162 from clee704/master Fix an issue with user streams 30 June 2014, 04:31:33 UTC
487de36 Merge pull request #161 from jairot/master Update Readme with the line to install by pip 30 June 2014, 04:31:04 UTC
c3946cd Fix an issue with user streams * Changed the last loop in GetUserStream to match those in other stream functions. * Check for "Exceeded connection limit for user" messages which come with HTTP 420 responses when there are too many connections to the Streaming API 29 June 2014, 17:02:05 UTC
eac3658 Update Readme with the line to install by pip 28 June 2014, 19:31:43 UTC
6845322 Allow post media to work with urls Currently only works with local files, not useful for tweeting images stored remotely 26 June 2014, 16:30:40 UTC
ea00e40 Merge pull request #157 from jvchn/master enable Status.AsJsonString() to output non-ascii 05 June 2014, 05:22:13 UTC
278ca17 Enable Status.AsJsonString() to output non-ascii strings. To output non-ascii string, set the keyword argument allow_non_ascii=True 05 June 2014, 04:03:29 UTC
b438bd4 Enable Status.AsJsonString() to output non-ascii strings. To output non-ascii string, set the keyword argument allow_non_ascii=True 05 June 2014, 03:49:08 UTC
d5e02a7 enable AsJsonString to output unicode 05 June 2014, 03:45:31 UTC
588b64b test test 05 June 2014, 03:34:32 UTC
dd020e6 Update _file_cache.py 17 May 2014, 21:30:40 UTC
61bca7f Merge pull request #153 from jarobins/master Changes to PostMedia 29 April 2014, 03:41:52 UTC
45b2e6f Changes to PostMedia PostMedia's parameters need to be strings for the requests library. I have made it so the user can enter in either a int or string for the "in_reply_to_status_id" without throwing errors by type casting the variable. 27 April 2014, 01:50:05 UTC
788f032 Merge pull request #146 from radiosilence/master Replace deprecated MD5 with hashlib. 28 February 2014, 15:06:03 UTC
1b04ce5 Replace deprecated MD5 with hashlib. 28 February 2014, 11:06:22 UTC
0b540d6 Merge pull request #145 from MKeisuke/bugfix144 bugfix144 26 February 2014, 17:25:45 UTC
7d1a376 bugfix144 26 February 2014, 11:13:37 UTC
db5fcf0 merge issues from v1.3.1 build 18 February 2014, 03:01:02 UTC
0932bdb fixing merge conflicts and even a couple oddities that were probably bugs 18 February 2014, 02:57:40 UTC
ec0c000 yep 1.3.1 because I forgot to push CHANGES before publishing 18 February 2014, 02:18:55 UTC
f20daa0 update CHANGES file 18 February 2014, 02:17:40 UTC
7a22f5e bumping version to 1.3 for most recent fixes and PRs 18 February 2014, 02:13:04 UTC
2bbc969 update doc dir 18 February 2014, 01:38:36 UTC
beb88a4 fix debugHTTP in a brute force way but it works again 18 February 2014, 01:30:40 UTC
363b1ed fix Issue 143 - GetStatusOembed() url parameter was being stomped on 18 February 2014, 01:29:43 UTC
c739118 update README to show that we now require requests lib 18 February 2014, 01:28:23 UTC
6c248a6 Merge pull request #142 from LucasLemanowicz/master Added LookupFriendship() method for checking follow status 16 February 2014, 06:31:21 UTC
de5d240 Added LookupFriendship() method for checking follow status 15 February 2014, 19:06:48 UTC
fcec5cc Merge branch 'master' of github.com:bear/python-twitter 15 February 2014, 18:09:57 UTC
b28c77b add id_str to the Status class 15 February 2014, 18:09:33 UTC
b221765 removing commented out imports 01 February 2014, 21:43:06 UTC
66a3564 Breaking all twitter classes out into their own package. This is done without breaking exsiting functionality or imports by doing imports in the twitter/__init__.py file. user.py imports Status and status.py import User In order to prevent cyclic import errors, they are imported only if they are actually used. Also, sys was not imported in the setup.py file, causing setup.py to fail if setuptools can't be imported. 01 February 2014, 20:56:45 UTC
e716410 Merge pull request #138 from shichao-an/master Fix bug of GetListMembers when specifying `owner_screen_name` 22 January 2014, 06:47:47 UTC
a4b0364 Fix bug of GetListMembers when specifying `owner_screen_name` 22 January 2014, 06:36:46 UTC
bcd97ab adjust DestroyListsMember() to accept a list of id's to implement /lists/members/destroy_all endpoint 19 January 2014, 07:12:35 UTC
607cc7b added DestroyListsMember() 19 January 2014, 07:08:23 UTC
156dd0a update/fix CreateSubscription() and add ShowSubscription() 19 January 2014, 07:02:21 UTC
a912b93 added a user stream call and started to backfill missing /lists endpoints 19 January 2014, 01:29:02 UTC
34c51c2 Merge pull request #136 from stefano-maggiolo/master Added access to the filter stream API. 18 January 2014, 12:23:10 UTC
back to top