我如何在 python 中自动化我的情绪分析

how can i automate my sentiment analysis in python

我已经使用来自 Twitter 的实时推文预测了我的情绪分析,但我需要将其自动化,因此我不需要在每个时间间隔再次运行。

我该怎么做

请协助

您可以独立使用 schedule and tweepy to schedule your job; or use streaming with tweepy,无需安排。

使用schedule,基于schedule的pypi主页的例子:

import schedule

def job():
    print("I'm working...")
    # do you work here

schedule.every(10).seconds.do(job)

while True:
    schedule.run_pending()
    time.sleep(1)

顺便提一下,您可以调用job()中的函数或方法。您不必在那里编写所有代码。