Hello
I set up dashboard - Search Tweets: 30-Days / Sandbox
which is connected to my apps
purpose is to get tweets older then 30 days by code below
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
Open/Create a file to append data
csvFile = open(‘test.csv’, ‘a’)
#Use csv Writer
csvWriter = csv.writer(csvFile)
for tweet in tweepy.Cursor(api.search
,q=“test”
,lang=“pl”
,until=“2019-10-17”).items(): # date to set up
print (tweet.created_at)
#csvWriter.writerow([tweet.created_at, tweet.text.encode('utf-8')])
when I set up date 6 days back working as expected but above 7 days im getting nothing
in this case i assume it must be issue with my account however no idea what it can be can somone could list me potential problems ?
Thank you in advance!!!
system
Closed
#4
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.