-
Notifications
You must be signed in to change notification settings - Fork 1
/
items.py
33 lines (29 loc) · 892 Bytes
/
items.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- coding: utf-8 -*-
# Define here the models for your scraped items
#
# See documentation in:
# http://doc.scrapy.org/en/latest/topics/items.html
import scrapy
class Horses2Item(scrapy.Item):
HorseCode = scrapy.Field()
HorseName = scrapy.Field()
EventDate = scrapy.Field()
EventType = scrapy.Field()
EventVenue = scrapy.Field()
EventDescription = scrapy.Field()
Gear = scrapy.Field()
SireName = scrapy.Field()
DamName = scrapy.Field()
DamSireName = scrapy.Field()
ImportType = scrapy.Field()
Owner = scrapy.Field()
Homecountry = scrapy.Field()
CountryofOrigin = scrapy.Field()
YearofBirth = scrapy.Field()
class VetItem(scrapy.Item):
HorseCode = scrapy.Field()
HorseName = scrapy.Field()
Homecountry = scrapy.Field()
VetDate = scrapy.Field()
VetDetails = scrapy.Field()
VetPassedDate = scrapy.Field()