根据 twint 官方文档,从特定用户那里获取 3200 条推文应该不难。但是,我的问题是:在我运行配置代码后,我只能得到最近的 20-60 条推文。一定有问题,希望得到一些。
我安装了最新版本的 twint,这是我的配置代码
c = twint.Config()
c.Limit = 3200
c.Username = "jerallaire"
c.Pandas = True
c.Retweets = True
c.Output = "Tweets.csv"
twint.run.Search(c)