Skip to content

Latest commit

 

History

History
33 lines (17 loc) · 762 Bytes

README.md

File metadata and controls

33 lines (17 loc) · 762 Bytes

Magento 2 product CSV export

Command line tool to export product CSV data in logical format. Useful for dumping large product collections.

Install instructions

composer require dominicwatts/productcsvexport

php bin/magento setup:upgrade

php bin/magento setup:di:compile

Usage instructions

xigen:export:product [-s|--store STORE] [-l|--limit [LIMIT]]

php bin/magento xigen:export:product 

php bin/magento xigen:export:product -l 10

php bin/magento xigen:export:product -s 1 -l 10    

Check ./pub/media/xigen/product-export.csv

Create ./pub/media/xigen if not exist

Notes

Version 1.0.2 uses iterator

Version < 1.0.2 uses product collection

Iterator should handle much larger collections but is much slower