File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ Default values
146
146
147
147
p['numbers'] # returns []
148
148
149
- Accesing and changing nested item values
149
+ Accessing and changing nested item values
150
150
----------------------------------------
151
151
152
152
::
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ Request Extractors
54
54
55
55
Request Extractors takes response object and determines which requests follow.
56
56
57
- This is an enhancemente to ``LinkExtractors `` which returns urls (links),
57
+ This is an enhancement to ``LinkExtractors `` which returns urls (links),
58
58
Request Extractors return Request objects.
59
59
60
60
Request Processors
Original file line number Diff line number Diff line change @@ -477,7 +477,7 @@ This is a port of the Offsite middleware to the new spider middleware API:
477
477
478
478
def should_follow(self, request, spider):
479
479
info = self.spiders[spider]
480
- # hostanme can be None for wrong urls (like javascript links)
480
+ # hostname can be None for wrong urls (like javascript links)
481
481
host = urlparse_cached(request).hostname or ''
482
482
return bool(info.regex.search(host))
483
483
Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ Rationale
23
23
=========
24
24
25
25
There are certain markup patterns that lend themselves quite nicely to
26
- automated parsing, for example the ``<table> `` tag outlilnes such a pattern
26
+ automated parsing, for example the ``<table> `` tag outlines such a pattern
27
27
for populating a database table with the embedded ``<tr> `` elements denoting
28
- the rows and the furthur embedded ``<td> `` elements denoting the individual
28
+ the rows and the further embedded ``<td> `` elements denoting the individual
29
29
fields.
30
30
31
31
One pattern that is particularly well suited for auto-populating an Item Loader
You can’t perform that action at this time.
0 commit comments