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
-2
votes
3 answers

I have to make a tweet tester in java, but can't figure out how to count the amount of times a character shows up in the tweet

Alright, so for a class I am taking I have to make a program that tests tweets. It asks you to input a tweet, then tells you if the tweet is valid (less than 140 characters), tells you the amount of mentions (indicated by the character @) and the…
-2
votes
1 answer

Get tweets from a keyword without any api as there is a restiction of 450

Using the url I am getting the tweets for the keywords I want a search in the tweeter https://twitter.com/search-home Now is there any url which I can call which will return me the json so that I can parse it and display the tweets to the user in…
hemant
  • 564
  • 2
  • 13
  • 37
-3
votes
1 answer

Python | Twitter API | how do I get latest tweets from a particular person imediatly

im wondering how do i read tweets live from a particular person using python and twitter API please help me with this
-3
votes
1 answer

Why i can't get two specifics texts from CSV file and make a dataframe with this?

I have a csv file with many tweets. I trying to get two specifics texts and make a dataframe with this information: date, hashtag Created At,Text Fri Jan 06 11:02:14 +0000 2017, #beta #betalab #mg Afiliada da Globo: Apresentador no AM é demitido…
Gizelly
  • 417
  • 2
  • 10
  • 24
-3
votes
1 answer

How to remove special chars like ன from string in R using regex

How do I remove the below chars from tweets in a R dataframe using regex அனà¯à®ªà¯à®®à¯ பாசமà¯à®®à¯ நிறைநà¯à®¤ இஸà¯à®²à®¾à®®à®¿à®¯ சகோதர சகோதரிகள௠கà¯à®•௠ரமà¯à®œà®¾à®©à¯…
Sree51
  • 149
  • 1
  • 1
  • 12
-3
votes
1 answer

classifying tweets if fitness related or not

For a school project we have to find out if a tweet is related to fitness / physical activity or not. The whole dataset contains 50 million unlabeled tweets. What are possible classifications for this undertaking?
-3
votes
1 answer

Retrieve specific number of tweets using search keyword

from tweepy import Stream from tweepy import OAuthHandler from tweepy.streaming import StreamListener import time s=raw_input('string'); try: file = open('keyword.txt', 'r') keyword=file.read() ckey ='CONSUMER KEY' csecret…
-3
votes
1 answer

Collecting tweets

Possible Duplicate: How can I collect real-time tweets? I want to collect random tweets via Streaming API using RuBY and store them in MongoDB. So I've tried to use this code Dakatsuka code but it's not working. I'm getting this one…
Dulos Adam
  • 13
  • 1
  • 3
-4
votes
1 answer

Compare strings of a column in a dataframe with a set of words in a list

I have a dataframe with a single column full_text containing tweets and there is a list negative containing negative words. I want to create a new column that returns a boolean value if the negative words are found in the tweets as 1 and 0 if not…
1 2 3
46
47