# pythonCrawler **Repository Path**: BTailCat/pythonCrawler ## Basic Information - **Project Name**: pythonCrawler - **Description**: DC学院爬虫笔记 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-11-15 - **Last Updated**: 2023-08-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # pythonCrawler DC学院爬虫笔记 ## 爬虫项目 ### 创建scrapy项目 * `scrapy startproject myscrapy` 创建scrapy项目 ### 创建**spider_bj_58**爬虫项目 * `cd myscrapy` * `scrapy genspider spider_bj_58 bj.58.com` 爬虫名[spider_bj_58] 爬取网址[bj.58.com] * `项目名不要和工程名重合`