How to seed data from crawling in Magento application database?

490 Views Asked by At

I am building an eCommerce website. I am new to Magento as well.

I am required to crawl data from a website and seed the same data in my upcoming website. How to save the data in tables. How to organize the data?

Edit
For me the major challenge is database structure. I saw database table. And the information is spread-ed over the tables. I can put data in database by any technology, BUT how to ensure, right data going in right column?

1

There are 1 best solutions below

3
On BEST ANSWER

You can list items from magento database by Magento SOAP API, or by the programming way. Those data you can set to array and save to your new database.

You can make script for export data as XML as well.

Last way is to export them by Magento Admin.

Priority will be, i think, the simplest way, you saving data to your new system.