如何快速建立一個爬蟲專案

reg183發表於2020-11-20

確定已經成功安裝了scrapy

進入到存放專案的目錄,執行命令

python3 -m scrapy startproject Tencent

輸出結果

New Scrapy project ‘Tencent’, using template directory ‘/usr/local/lib/python3.6/site-packages/scrapy/templates/project’, created in:
/root/Tencent

You can start your first spider with:
cd Tencent
scrapy genspider example example.com

表示建立成功,因為我同時安裝了python2和python3,如果你的只裝了python3

也可以直接執行命令

scrapy startproject Tencent

也會有相同的結果

相關文章