Closed (duplicate)
Project:
Feeds
Version:
7.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
29 Jan 2012 at 18:27 UTC
Updated:
10 Jan 2013 at 21:29 UTC
I'm trying to import into a data table. I have Data 7.x-1.0-alpha1+4-dev installed, but the data processor does not show up. Is this a feeds or Data issue?
Thanks
Sharon
Comments
Comment #1
twistor commentedThe Data processor was removed from Feeds in 7.x because Alex was unsure of the future of the data module. Seeing as there's a release of data for 7.x, it makes sense to revive it.
Comment #2
SharonD214@aol.com commentedThat would be great. I'd really like to try it out.
Thanks
Sharon
Comment #3
imclean commentedI've been using Data module + Feeds a fair bit in D6 projects so this would be very welcome. I'm just wondering about the direction Feeds is taking and whether this sort of integration should now be done in the supporting module.
If the Data module included its own feeds data processor this would leave Feeds a little leaner and functionally more focussed.
Comment #4
ShawnNYC commentedA revival of Feeds Fast News on D7 would be great.
Comment #5
mikemadison commented+1
Comment #6
chsbellboy commentedAgreed. +1
Comment #7
hyside commented+1
Comment #8
timb commentedme too +1
Comment #9
olragon commented+1
Comment #10
beatnikdude commented+'n
Comment #11
mstef commented+1..
I was planning a project with data+feeds to avoid using nodes as a storage system. Mistake? Better lightweight solution out there?
Comment #12
mstef commentedThink we should close this issue and open one in the Data queue? I think it makes sense for it to exist in that module.
Comment #13
dayofthedave commentedThere's already an issue in the Data queue for this.
#1395778: Data processor does not show up in feeds to import RSS feeds
Would work be required in both modules to support this feature?
Comment #14
mstef commentedNot in both.. no.. either one will suffice. I started looking at it, but it's not as easy to port as I though. I'll see if I can find some time to help out more.
Comment #15
emackn commentedYou might want to look at migrate module for your data import.
Comment #16
databoy commentedWill you be at Drupalcon 2012 Denver? I'll look to see if there is a BOF setup for Data!
Comment #17
SharonD214@aol.com commentedDoes feeds work with migrate?
Comment #18
mmagas commented+1, I'm looking for this as well.
Comment #19
MicS65 commentedAre there any news about the Data Processor for 7.x?
Will there be one? When can we expect it?
I have been using Feeds + Data with D6 and it really was a great combination.
Comment #20
tassaf commentedI need to import data into db tables.. not entities
how to do that using Feeds Processor Plugin?
Comment #21
norgo commented+1
Looking to use this to get stock quotes from yahoo finance since Stock API has not been updated in a while
http://finance.yahoo.com/d/quotes.csv?s=
I have not tried this method with D6 since Stock API v6 works well
Comment #22
Daniel A. Beilinson commentedHi!
You can use latest dev version of feeds with patch from this issue: #1033202: [Meta] Generic entity processor
Next you need to add few functions to data_entity module, you can find those functions here: #1551430: implement hook_entity_property_info for Feeds integration
Comment #23
tassaf commentedDaniel A. Beilinson,
Thanks for your reply .. but can you explain more? I did not get it
Comment #24
tassaf commentedI need to create processor to feed data into this database table :
$schema['egroups_user_term'] = array(
'description' => 'TODO: please describe this table!',
'fields' => array(
'uid' => array(
'description' => 'TODO: please describe this field!',
'type' => 'int',
'not null' => TRUE,
),
'tid' => array(
'description' => 'TODO: please describe this field!',
'type' => 'int',
'not null' => TRUE,
),
),
'primary key' => array('uid', 'tid'),
);
which is a normal database table .. not entity
Comment #25
Pierco commentedI made a generic table processor for feeds: https://drupal.org/sandbox/Pierco/1885278
Comment #26
imclean commentedSee issues linked to in #22.
This has been implemented through entities. Grab the latest version of Data and Feeds and the patch from #116
I've posted some basic instructions in the same issue.