Files
python/python爬虫/python爬虫练习/scrapy_practise/scrapy_practise/items.py
T
2025-08-05 09:19:34 +08:00

15 lines
313 B
Python

# Define here the models for your scraped items
#
# See documentation in:
# https://docs.scrapy.org/en/latest/topics/items.html
import scrapy
class ScrapyPractiseItem(scrapy.Item):
# define the fields for your item here like:
name = scrapy.Field()
title = scrapy.Field()
info = scrapy.Field()