0
I am using the API provided by Tweeter next to python to fetch certain tweets.
The problem is that I wish view the tweets received by the person and not the tweets sent by them however, I am not succeeding, I just view the tweets of the page in question. follows code:
import tweepy
from tweepy import OAuthHandler
from tweepy.streaming import StreamListener
access_token = "minhas credenciais da API para devs do TT"
access_secret="minhas credenciais da API para devs do TT"
consumer_key="minhas credenciais da API para devs do TT"
consumer_secret="minhas credenciais da API para devs do TT"
auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)
api = tweepy.API(auth)
# The Twitter user who we want to get tweets from
name = "skyresponde"
# Number of tweets to pull
tweetCount = 5
# Calling the user_timeline function with our parameters
results = api.user_timeline(id=name, count=tweetCount)
# foreach through all tweets pulled
for tweet in results:
# printing the text stored inside the tweet object
print(tweet.text)
Perfect! Thank you !!
– HV Lopes
Can you tell me how I can format these tweets? Whether they’re for a Facebook or something? without all specifications, just the tweet itself?
– HV Lopes
api.search()
returns objects of the typeSearchResult
- to get the text of the tweet just use the attributetext
, for example:print(t.text)
– nosklo