scrapy框架spider文件中的item类从哪导入
spider文件中 item 的类应该从哪里导入?#tx.py spider文件
# -*- coding: utf-8 -*-
import scrapy
from ***.items import TencentItem #此处的item的类应该从哪里导入?或者说要导入 item 的类此处应该怎么写
class TxSpider(scrapy.Spider):
name = 'tx'
allowed_domains = ['https://careers.,ot_40001002,ot_40001003,ot_40001004,ot_40001005,ot_40001006&index=']
start_urls = ['http://https://careers.,ot_40001002,ot_40001003,ot_40001004,ot_40001005,ot_40001006&index=1']
def parse(self, response):
pass
'''
在 cmd 中创建项目命令为
scrapy startproject tencent
(
创建出的项目中的 items.py 文件中有
class TencentItem(scrapy.Item):
pass
)
创建spider 命令为
scrapy genspider tx "https://careers.
求助:在spider文件中如何导入 TencentItem
'''