我想知道是否有一种类似于this的推文bot的创建方法,除了我不想从另一个Twitter帐户中提取,而是希望它从一个文本文档中提取。
答案 0 :(得分:-1)
从文本文档读取和鸣叫文本的简单方法是:
with open('insert name of text document here', 'r') as file:
line = file.read()
for text in line:
api.update_status(line)
break