Questions tagged [tweets]

Tweets are text-based posts of up to 280 characters, created by users of Twitter, a social networking and microblogging service.

Tweets are text-based posts of up to 280 characters, created by users of Twitter, a social networking and microblogging service. Use this tag when your question is specifically about handling tweets. See also .

700 questions
-1
votes
1 answer

Translate tweets to English

I have a few tweets in German for which I need to compute polarity. TextBlob doesn't seem to work straight away on German tweets: tweets Liebes #GameTwo Team. Ich hoffe sehr das ihr weiterhin 150 Folgen draufsetzt auf die bestehenden 150. Die…
user6016731
  • 382
  • 5
  • 18
-1
votes
1 answer

How to find the language of a Tweet using Tweepy?

I gave a stream of Tweets that I filter based on certain criteria. I do not wish to use the language criteria during streaming itself. Rather, I wish to know the language of such filtered tweets. I'm using Tweepy for streaming. Kindly suggest to me…
Sara
  • 603
  • 8
  • 19
-1
votes
1 answer

How to get the ID from user tweet that is tweeted with the "standard" tweet button

Twitter allows you to easily provide users the opportunity to share your content sharing it in a tweet. You can do this as easy as by just adding a link with this code in your HTML: Click here to…
jasper
  • 937
  • 1
  • 9
  • 22
-1
votes
1 answer

Removing a tweet/row if it contains any non-english word

I want to remove the whole tweet or a row from a data-frame if it contains any non-english word. My data-frame looks like text 1 | morning why didnt i go to sleep earlier oh well im seEING DNP TODAY!! JIP UHH…
Mahnoor
  • 45
  • 1
  • 6
-1
votes
1 answer

What is the way to extract all previous tweets about any topic from twitter?

The API search only provides previous 100 tweets. Is there a way to get all the tweets? I want to write a code in Python using AFINN library. Is there a place where I can get the code?
-1
votes
2 answers

Who will see my likes in Twitter

I don't exactly know, when I like a tweet in Twitter, who can see it. Is it all of my followers? Or just a fraction of them will see the posts I liked? For instance, in the case of "mention" all of my followers will see my mentions, or for "reply"…
amiref
  • 3,181
  • 7
  • 38
  • 62
-1
votes
1 answer

How to use Masonry grid layout in vuejs2(with bootstrap) without jquery?

I want to display tweets like card-columns in my page. I am not able to use Masonry in my vue webpack template. i have used tried it through npm & CDN but not getting grid properly. in main.js import Tweet from 'vue-tweet-embed'; import Masonry from…
-1
votes
3 answers

While converting tweets .json file into CSV how can extract some keys and ignore unnecessary data

I have shown a single tweet below, that all I need from is: text the time it was created at language and location in some cases. How can I extract just these fields? { "created_at": "Tue Dec 12 23:56:48 +0000 2017", "id":…
raza khan
  • 9
  • 1
-1
votes
2 answers

Random tweet collecting without keyword

I want a script code to collecting random tweet from Chicago without any keyword that every 30 min run automatically and collect tweet for 20 millisecond (for example) All Available codes need keywords and in most of them I can't define geographic…
SAAM1994
  • 11
  • 1
-1
votes
1 answer

Regex Python: Adding . after every 15 terms

I have a text file containing clean tweets and after every 15th term I need to insert a period. In Python how do I add a character after a specific word using regex? Right now I am parsing the line word by word and I don't understand regex enough to…
Silas
  • 179
  • 4
  • 16
-1
votes
1 answer

Tweet clustering after semantic analysis

I want to cluster a set of tweets. I have already retrieved the tweets, cleaned them up, applied a Naïve Bayes classifier to them and divided them into two files, positive and negative. Finally, I have done the following to search for similarities …
lucas rodriguez
  • 980
  • 2
  • 8
  • 20
-1
votes
1 answer

Searching for tweets with tweepy in Python

everything works fine with my code except this part:enter image description here somebody help me correct this error. Am using tweepy python module and the rest of the code is woking fine. Here is part of the code with problems: enter image…
-1
votes
1 answer

Pig script/command to filter files on specific strings

I am trying to write Hadoop Pig script which will take 2 files and filter based on string i.e words.txt google facebook twitter linkedin tweets.json {"created_time": "18:47:31 ", "text": "RT @Joey7Barton: ..give a facebook about whether the…
Mohan.V
  • 141
  • 1
  • 1
  • 10
-1
votes
1 answer

Android studio twitter check if user is logged in

I have followed twitter fabric log in and everything is working fine except for the part where i try to post a tweet. When i execute this following code i need to login again, so it seems like i have to check an access token or some, but i have no…
carlosx2
  • 1,672
  • 16
  • 23
-1
votes
1 answer

unable to import tweetTokenizer

I tried to import TweetTokenizer but it didn't happen I tried installing nltk.download(), but the list of packages didn't included any Tokenizer package. I followed this which didn't help >>> from nltk.tokenize import TweetTokenizer Traceback (most…
prashantitis
  • 1,797
  • 3
  • 23
  • 52