Skip to content

Commit 4b4487f

Browse files
committed
rename
1 parent 2d7a166 commit 4b4487f

20 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# pythonSpider
2-
some python spiders with BeautifulSoup & requests
2+
some python spiders with BeautifulSoup & requests or scrapy
33

44
##by-bs4
55

@@ -25,6 +25,6 @@ some python spiders with BeautifulSoup & requests
2525
- 获取该支股票的所有交易数据并写入以其股票代码命名的csv中 [stock2csvALL.py](by-bs4/stock/stock2csvALL.py)
2626
- 获取该支股票的所有交易数据并写入以其股票代码和名字命名的csv中 [stock2csvALLWithName.py](by-bs4/stock/stock2csvALLWithName.py)
2727

28-
##scarpy
28+
##scrapy
2929

3030
### [wiki](by-scarpy/wikiSpider)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# scarpySpider
1+
# scrapySpider
22

33
## [wiki](wikiSpider)
File renamed without changes.
File renamed without changes.

by-scarpy/wikiSpider/wikiSpider/items.py renamed to by-scrapy/wikiSpider/wikiSpider/items.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# See documentation in:
66
# http://doc.scrapy.org/en/latest/topics/items.html
77

8-
8+
import scrapy
99
from scrapy import Item, Field
1010

1111
#
@@ -17,4 +17,4 @@
1717
class Article(Item):
1818
# define the fields for your item here like:
1919
# name = scrapy.Field()
20-
title = Field()
20+
title = scrapy.Field()

0 commit comments

Comments
 (0)