How do I link a specific Spider with a specific Feed Export?
I currently have two spiders spider1 and spider2. I added the FEEDS dict to settings.py but am not sure how to associate the individual spiders to an individual feed URI / export.
I would use custom settings as noted here, but this method is deprecated in use of FEEDS.
Settings for FEEDS
FEEDS = {
'csv/<exportfilename-spider1>.csv':{
'format': 'csv',
'overwrite': True
},
'csv/<exportfilename-spider2>.csv':{
'format': 'csv',
'overwrite': True
}
}