如何在Heroku

时间:2017-01-19 23:51:20

标签: python heroku schedule

我正在Heroku上部署一个脚本(一个Scrapy python one),我想让它在早上发布4次。

我绝对可以通过连接到我的Heroku帐户(我有一个免费的计划)并在Windows命令行中键入它来运行它:

heroku run scrapy crawl sytadin

但是当我尝试通过Heroku Scheduler运行它时,我遇到了一些问题。它问我是否想写$ rake之类的东西。 我之前从未使用rake,是在run之前还是在run之后使用的? 我应该首先使用关键字heroku吗?

我不知道,我尝试的所有内容都失败了,正如我在日志中看到的那样:

2017-01-19T23:47:05.305039+00:00 heroku[scheduler.3450]: Starting process with command `python "sytadin" crawl`
2017-01-19T23:47:05.974030+00:00 heroku[scheduler.3450]: State changed from starting to up
2017-01-19T23:47:08.335845+00:00 heroku[scheduler.3450]: State changed from up to complete
2017-01-19T23:47:08.204289+00:00 app[scheduler.3450]: /app/.heroku/python/bin/python: can't find '__main__' module in 'sytadin'
2017-01-19T23:47:08.326081+00:00 heroku[scheduler.3450]: Process exited with status 1
2017-01-19T23:48:27.681890+00:00 app[api]: Starting process with command `python sytadin/sytadin.py crawl` by user scheduler@addons.heroku.com
2017-01-19T23:48:35.571615+00:00 heroku[scheduler.6352]: Starting process with command `python sytadin/sytadin.py crawl`
2017-01-19T23:48:36.156250+00:00 heroku[scheduler.6352]: State changed from starting to up
2017-01-19T23:48:37.424920+00:00 heroku[scheduler.6352]: Process exited with status 2
2017-01-19T23:48:37.360306+00:00 app[scheduler.6352]: python: can't open file 'sytadin/sytadin.py': [Errno 2] No such file or directory
2017-01-19T23:48:37.445476+00:00 heroku[scheduler.6352]: State changed from up to complete

正如您所看到的,我尝试了在网络上找到的不同可能性,但它无法正常工作:(

对我的python脚本有什么猜测? :)

1 个答案:

答案 0 :(得分:9)

Heroku调度程序基本上只是heroku run +你在那里输入的任何命令。

因此,在您的情况下,由于您的scrapy搜寻器成功运行时执行:heroku run scrapy crawl sytadin,您可以创建要运行的调度程序规则:

scrapy crawl sytadin

这就是诀窍=)