python-twitter
python-twitter copied to clipboard
A Python wrapper around the Twitter API.
Hi Guys, I "bumped" into a problem when I worked with the UserLookup method. I noted that even that "include_entities" is true, and the JSON includes entities, they are not...
The test string does not include nested objects which the twitter JSON delivers in 'entities'. The AsJsonString [via AsDict] places those aspects directly within the json dict root. AsDict automatically...
```python done = False delay = 5*60 #5 minutes delay tweet_id = {} retweeted = [] class dummy: def __init__(self): self.id = None def mostPopularTweet(tweet_list): val = 0 ret =...
It looks like rate limit is not correctly handled for method `DestroyFavorite`, for instance: ``` In [2]: api.CheckRateLimit("/favorites/destroy.json") Out[2]: EndpointRateLimit(limit=15, remaining=15, reset=0) In [3]: api.DestroyFavorite(status_id=774150870963396608) Out[3]: Status(ID=774150870963396608, ....) In [4]:...
How to your python-twitter behind proxy having and user name and password for access to the proxy?
Hi All, I am trying to use python twitter lib but not able to succeed and getting the below message. requests.exceptions.ProxyError: Cannot connect to proxy. Socket error: Tunnel connection failed:...
python-twitter uses local files (tempfile.gettempdir) for caching purposes. due to the file access restriction in google app engine this library isn't compatible and can't be run in gae. please find...
Hashtag timeline-just as we have usertimeline i am suggesting to build a GetHashtagTimeline where all the post in which a hashtag is used is displayed in a single page
are you plannoing to support https://api.twitter.com/1.1/timelines/timeline.json endpoint?
Most of the objects use getters and setters in a completely unnecessary way, adding literally 1000 lines of noise to the code. (For an explanation of why they are unnecessary,...
File cache does not work, because the parameter oauth_nonce change in every request, creating a new cache file for all requests.