Skip to content

Releases: bear/python-twitter

Fix DM endpoint handling

29 Sep 23:52
Compare
Choose a tag to compare

This is a specific release to fix Issue #587 so that current users can continue to send Direct Messages

Allow upload of 15mb GIFs

07 Jun 17:31
v3.4.2
b10baa8
Compare
Choose a tag to compare

3.4.1

10 Mar 23:42
v3.4.1
41be59e
Compare
Choose a tag to compare

Bugfix. See changelog.

v3.4

19 Feb 03:38
Compare
Choose a tag to compare
version 3.4

see doc/changelog.rst for release information

v3.3

21 May 02:27
Compare
Choose a tag to compare
change metadata to 3.6; change tox to use 3.6 and tweak makefile

3.2.1

22 Jan 14:14
Compare
Choose a tag to compare
Merge pull request #430 from mdenil/master

Change URL parameter in GetRetweeters to match twitter api.

v3.2

24 Nov 20:11
Compare
Choose a tag to compare

Version 3.2

Deprecations

Nothing is being deprecationed this version, however here's what's being deprecated as of v. 3.3.0:

  • :py:func:twitter.api.Api.UpdateBackgroundImage. Please make sure that your code does not call this function as it will be returning a hard error. There is no replace function. This was deprecated by Twitter around July 2015.
  • :py:func:twitter.api.Api.PostMedia will be removed. Please use :py:func:twitter.api.Api.PostUpdate instead.
  • :py:func:twitter.api.Api.PostMultipleMedia. Please use :py:func:twitter.api.Api.PostUpdate instead.
  • :py:func:twitter.api.GetFriends will no longer accept a cursor or count parameter. Please use :py:func:twitter.api.GetFriendsPaged instead.
  • :py:func:twitter.api.GetFollowers will no longer accept a cursor or count parameter. Please use :py:func:twitter.api.GetFollowersPaged instead.

What's New

  • We've added new deprecation warnings, so it's easier to track when things go away. All of python-twitter's deprecation warnings will be a subclass of :py:class:twitter.error.PythonTwitterDeprecationWarning and will have a version number associated with them such as :py:class:twitter.error.PythonTwitterDeprecationWarning330.
  • :py:class:twitter.models.User now contains a following attribute, which describes whether the authenticated user is following the User. PR #351 <https://github.com/bear/python-twitter/pull/351>_
  • :py:class:twitter.models.DirectMessage contains a full :py:class:twitter.models.User object for both the DirectMessage.sender and DirectMessage.recipient properties. PR #384 <https://github.com/bear/python-twitter/pull/384>_.
  • You can now upload Quicktime movies (*.mov). PR #372 <https://github.com/bear/python-twitter/pull/372>_.
  • If you have a whitelisted app, you can now get the authenticated user's email address through a call to :py:func:twitter.api.Api.VerifyCredentials(). If your app isn't whitelisted, no error is returned. PR #376 <https://github.com/bear/python-twitter/pull/376>_.
  • Google App Engine support has been reintegrated into the library. Check out PR #383 <https://github.com/bear/python-twitter/pull/383>_.
  • video_info is now available on a twitter.models.Media object, which allows access to video urls/bitrates/etc. in the extended_entities node of a tweet.

What's Changed

  • :py:class:twitter.models.Trend's volume attribute has been renamed tweet_volume in line with Twitter's naming convention. This change should allow users to access the number of tweets being tweeted for a given Trend. PR #375 <https://github.com/bear/python-twitter/pull/375>_
  • :py:class:twitter.ratelimit.RateLimit should behave better now and adds a 1-second padding to requests after sleeping.
  • :py:class:twitter.ratelimit.RateLimit now keeps track of your rate limit status even if you don't have sleep_on_rate_limit set to True when instatiating the API. If you want to add different behavior on hitting a rate limit, you should be able to now by querying the rate limit object. See PR #370 <https://github.com/bear/python-twitter/pull/370>_ for the technical details of the change. There should be no difference in behavior for the defaults, but let us know.

Bugfixes

  • :py:class:twitter.models.Media again contains a sizes attribute, which was missed back in the Version 3.0 release. PR #360 <https://github.com/bear/python-twitter/pull/360>_
  • The previously bloated :py:func:twitter.api.Api.UploadMediaChunked() function has been broken out into three related functions and fixes two an incompatibility with python 2.7. Behavior remains the same, but this should simplify matters. PR #347 <https://github.com/bear/python-twitter/pull/347>_
  • Fix for :py:func:twitter.api.Api.PostUpdate() where a passing an integer to the media parameter would cause an iteration error to occur. PR #347 <https://github.com/bear/python-twitter/pull/347>_
  • Fix for 401 errors that were occuring in the Streaming Endpoints. PR #364 <https://github.com/bear/python-twitter/pull/364>_

v3.1

26 May 07:04
Compare
Choose a tag to compare

See what is new and changed in the new docs section \o/ -- https://github.com/bear/python-twitter/blob/master/doc/changelog.rst

Python v3 support

29 Dec 10:17
Compare
Choose a tag to compare
Python v3 support Pre-release
Pre-release

Large number of changes related to making the code Python v3 compatible.
See the messy details at #251

Pull Requests

  • #267 initialize Api.__auth fixes #119 by rbpasker
  • #266 Add full_text and page options in GetDirectMessages function by mistersalmon
  • #264 Updates Media object with new methods, adds id param, adds tests by jeremylow
  • #262 Update get_access_token.py by lababidi
  • #261 Adding Collections by ryankicks
  • #260 Added UpdateBackgroundImage method and added profile_link_color argument to UpdateProfile by BrandonBielicki
  • #259 Added GetFriendIDsPaged by RockHoward
  • #254 Adding api methods for suggestions and suggestions/:slug by trentstollery
  • #253 Added who parameter to api.GetSearch by wilsonand1
  • #250 adds UpdateFriendship (shared Add/Edit friendship) by jheld
  • #249 Fixed Non-ASCII printable representation in Trend by der-Daniel
  • #246 Add repr for status by era
  • #245 Python-3 Fix: decode bytestreams for json load by ligthyear
  • #243 Remove references to outdated API functionality: GetUserByEmail by Vector919
  • #239 Correct GetListsList docstring by tedmiston

v2.2 - django template tags

24 Dec 19:18
Compare
Choose a tag to compare