我在文本文件中列出了235个推特ID。 像这样:
2597319
7445591
273299750
337590061
16510947
21958717
我需要浏览每一个并获取每个ID的坐标。我编写了一个脚本来收集帐户最常用的坐标,但目前我必须手动更改ID。我是Python的新手,所以任何帮助将不胜感激。 下面是脚本的开头,'------'表示ID名称应该是。
#finds unique IDs and saves them in a separate file
lines=open("twitter.txt",'r').readlines()
uniquelines=set(lines)
open("unique.txt",'w').writelines(uniquelines)
auth = tweepy.auth.OAuthHandler('username', 'password')
auth.set_access_token('username', 'password')
api = tweepy.API(auth)
user = api.get_user('------').followers()
#gets 50 tweets from specific ID
statuses = api.user_timeline(id = '------', count = 50)