如何从scrape文件夹外部执行python scrapy

时间:2019-01-28 19:50:45

标签: python scrapy

我希望能够从app.py文件运行python scrapy,而没有cd ..进入scrape文件夹以运行应用程序。

这是我当前目录的样子

enter image description here

这是我必须执行的步骤

enter image description here

我希望能够仅使用python app.py即可运行该应用程序,并且可能无需使用virutalenv就可以执行此操作。

我的app.py为空白,导致我不确定如何从应用程序文件中告诉python如何运行应用程序。

1 个答案:

答案 0 :(得分:0)

想通了

App.py

import os
import subprocess 

cw = os.getcwd()
path = '/scrape'
ourPath = cw + os.path.join(path)

if(ourPath):
    os.chdir(ourPath)
    os.system('scrapy crawl yellow')