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

twistor’s picture

Title: Where is Data Processor? » Data Processor for 7.x
Version: 7.x-2.0-alpha4 » 7.x-2.x-dev
Component: User interface » Code
Category: support » feature

The 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.

SharonD214@aol.com’s picture

That would be great. I'd really like to try it out.

Thanks
Sharon

imclean’s picture

I'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.

ShawnNYC’s picture

A revival of Feeds Fast News on D7 would be great.

mikemadison’s picture

+1

chsbellboy’s picture

Agreed. +1

hyside’s picture

+1

timb’s picture

me too +1

olragon’s picture

+1

BeatnikDude’s picture

+'n

mstef’s picture

+1..

I was planning a project with data+feeds to avoid using nodes as a storage system. Mistake? Better lightweight solution out there?

mstef’s picture

Think we should close this issue and open one in the Data queue? I think it makes sense for it to exist in that module.

dayofthedave’s picture

There'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?

mstef’s picture

Not 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.

emackn’s picture

You might want to look at migrate module for your data import.

databoy’s picture

Will you be at Drupalcon 2012 Denver? I'll look to see if there is a BOF setup for Data!

SharonD214@aol.com’s picture

Does feeds work with migrate?

mmagas’s picture

+1, I'm looking for this as well.

MicS65’s picture

Are 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.

tassaf’s picture

I need to import data into db tables.. not entities
how to do that using Feeds Processor Plugin?

norgo’s picture

+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

Daniel A. Beilinson’s picture

Hi!
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

tassaf’s picture

Daniel A. Beilinson,

Thanks for your reply .. but can you explain more? I did not get it

tassaf’s picture

I 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

Pierco’s picture

I made a generic table processor for feeds: https://drupal.org/sandbox/Pierco/1885278

imclean’s picture

Status: Active » Closed (duplicate)

See 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.