python-twitter icon indicating copy to clipboard operation
python-twitter copied to clipboard

A Python wrapper around the Twitter API.

Results 100 python-twitter issues
Sort by recently updated
recently updated
newest added

i know twitter will support max 15mb mp4 file(PostUpdates) to upload but i need to upload 44mb video file so i choose UploadMediaChunked but i am getting error link video...

I have both python 2.7 and 3.6 but I can't run `make dev` without seeing this error: ``` for version in 2.7.15 3.6.5 pypy-5.7.1 pypy3.5-6.0.0 ; do \ pyenv install...

Both the deprecated PostMedia() and the preferred PostUpdate() methods of the API say they can post media taken from "file like objects (something with a read() method)". In my case,...

I've tried: api.PostDestroy(id=id) api.DestoryStatus(id=id) And none have worked. Any idea what it is since there's no documentation for it?

Twitter deprecated the old direct message endpoints on September 17, 2018 (3 days ago) after warning about it in July. (see this link: https://twittercommunity.com/t/details-and-what-to-expect-from-the-api-deprecations-this-week-on-august-16-2018/110746) Does Python Twitter yet support the...

Hi, python-twitter seems pretty comprehensive from a code standpoint, but the docs leave out a bunch of key details. In particular, how to actually provide a login flow for a...

I'm using the stream filter like this: `for line in api.GetStreamFilter(track=expressions, languages=LANGUAGES, stall_warnings=True): #something...` But I'm having trouble getting the full text of tweets. Where do I put the parameter...

IS it possible for the oauth_nonce/signature that is sent along with the request to be made available to the app? or perhaps some way to generate the nonce manually, just...

When i try to fetch a timeline of a user that has marked the timeline private, i get a TwitterError with no status code, just a message String "Not authorized."....

enhancement
question