TwitterSearch icon indicating copy to clipboard operation
TwitterSearch copied to clipboard

A Python library to easily iterate tweets found by the Twitter Search API

Results 11 TwitterSearch issues
Sort by recently updated
recently updated
newest added

Hello, It is possible to know if the post (tweet) is a reply, retweet or quote from another tweet? Thanks.

Is there anyway to search for a list of emoji? I am trying to search for all the flag emoji, but I get the error `Error 403: ('Forbidden: The request...

I would like to make a query using a geocode argument only. Just give it coordinates, radius, and date range, and have it pull up all tweets in the area....

Hi, any way to set tweet_mode to extended so I can access non-truncated tweets? Thanks.

Hello, Is it possible to get request usage ? I mean the maximum number of requests that can be done using the given credentials together with the number of requests...

Add methods to `TwitterSearchOrder` for excluding retweets and replies. There is currently a work-around for this: `tso.set_keywords(['yourKeywordHere', '-filter:retweets', '-filter:replies'])`

The method `set_include_entities()` was misspelt as `set_include_etities` 3 times in https://github.com/ckoepp/TwitterSearch/blob/master/docs/advanced_usage_tso.rst

Hello... I'm using your library and I don't know why but my program randomly freezes sometimes. My program is pretty simple and is pretty much just copying the code sample...

bug

Not sure if this is an error on my end, or something I don't understand. Background: I'm using a Ukrainian word list to mine tweets from twitter for research. I...

question

tso.set_count(5) is not working on my side: ``` try: tso = TwitterSearchOrder() tso.set_keywords(['Lucca']) tso.set_count(5) tso.set_result_type('recent') # tso.set_until(datetime.date(2016, 04, 27)) # tso.set_until(datetime.date(datetime.now())) ts = TwitterSearch( consumer_key = 'xxx', consumer_secret = 'xxx',...

enhancement