pyspider 快速删除project任务

官方文档中提示,删除project需要

How to Delete a Project?

set group to delete and status to STOP then wait 24 hours.
You can change the time before a project deleted via scheduler.DELETE_TIME.

即将左侧group设置为delete 状态status设置为stop,然后等待24小时,就会自动删除了

但是强迫症的我并不能等12小时

于是可以

vi config.json

然后插入

{   
  "scheduler":{
    "delete-time":3
  }
}

然后cd到config.json所在目录
pyspider --config config.json

最后就发现设置完group和status 三秒钟之后,终端上提示

deleting project: DoubanTest!

刷新webui,project已经删除

你可能感兴趣的:(pyspider 快速删除project任务)