-
Notifications
You must be signed in to change notification settings - Fork 0
/
items.py
41 lines (34 loc) · 876 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
34
35
36
37
38
39
40
41
# -*- 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
from scrapy.item import Item, Field
class CordisItem(scrapy.Item):
# define the fields for your item here like:
# name = scrapy.Field()
# EU Project
Meta = Field()
Project_ACR = Field()
Project_Title = Field()
Total_Cost = Field()
EU_Contribution = Field()
Coordinated_in = Field()
Topic_s = Field()
Call_for_Proposal = Field()
Funding_scheme = Field()
Project_ID = Field()
To = Field()
From = Field()
Partners = Field()
Country = Field()
Activity = Field()
Technology_Description = Field()
# Housekeeping fields
url = Field()
project = Field()
spider = Field()
server = Field()
date = Field()
# pass