Archived
1
0

Optimized imports

This commit is contained in:
Jip J. Dekker 2014-06-04 12:01:05 +02:00
parent ecee4a5f45
commit d4a0ffdff3
3 changed files with 14 additions and 6 deletions

View File

@ -1,9 +1,12 @@
from source import Source
import re
from scrapy import log
from scrapy.http import Request
from scrapy.selector import Selector
from source import Source
from FourmiCrawler.items import Result
import re
# [TODO] - Maybe clean up usage of '.extract()[0]', because of possible IndexError exception.

View File

@ -1,9 +1,12 @@
from source import Source
import re
from scrapy import log
from scrapy.http import Request
from scrapy.selector import Selector
from source import Source
from FourmiCrawler.items import Result
import re
# [TODO]: values can be '128.', perhaps remove the dot in that case?
# [TODO]: properties have references and comments which do not exist in the

View File

@ -1,9 +1,11 @@
import re
from scrapy.http import Request
from scrapy import log
from source import Source
from scrapy.selector import Selector
from source import Source
from FourmiCrawler.items import Result
import re
class WikipediaParser(Source):