autotelik / datashift_spree

Comprehensive import and export tools for Spree and Spree Products
Other
90 stars 104 forks source link

ERROR: "thor csv" was called with arguments ["-i,", "-m,"] Usage: "thor datashift:import:csv -i, --input=INPUT -m, --model=MODEL" #65

Open mices opened 6 years ago

mices commented 6 years ago

What is this? No docs? What's the right syntax please?

autotelik commented 6 years ago

what is what ?

some docs - the readme is quite extensive and there is a large wiki - but may be out of date as this is an open source project done for free in my spare time and I no longer work with Spree much

https://github.com/autotelik/datashift_spree/wiki

syntax as specified by Usage : thor datashift:import:csv -i your_csv_file.csv

autotelik commented 6 years ago

the parent project : https://github.com/autotelik/datashift is up to date and with good readme, and probably does what you need

mices commented 6 years ago

Thanks What was the idea behind building a spree specific version ? Why does datashift ask for --i and --m arguments to go with -i and -m ?

autotelik commented 6 years ago

to support non trivial processing like nested child taxons. if you really need that you can see in the code how I used to over write datashift ... there is a branch to migrate Spree loader specifics to new DataShift API - but its WIP .... https://github.com/autotelik/datashift_spree/blob/feature/update_api_latest_ds_and_spree/lib/loaders/spree/product_populator.rb

--i won't work. its -i or --input

thor help is useful, e.g

$ thor help datashift:import:csv Usage: thor datashift:import:csv -i, --input=INPUT -m, --model=MODEL

Options: -m, --model=MODEL # The related active record model -i, --input=INPUT # The input .xls file -c, [--config=CONFIG] # YAML config file with defaults, over-rides etc -a, [--assoc], [--no-assoc] # Include any associations supplied in the input -e, [--exclude=one two three] # Use with -a : Exclude association types. Any from [:assignment, :belongs_to, :has_one, :has_many] -v, [--verbose], [--no-verbose] # Verbose logging

import CSV file for specified active record model

mices commented 6 years ago

thor datashift:import:csv -i, --input=products_export.csv -m, --model=Product

ERROR: "thor csv" was called with arguments ["-i,", "-m,"] Usage: "thor datashift:import:csv -i, --input=INPUT -m, --model=MODEL"

thor datashift:import:csv -i products_export.csv
No value provided for required options '--model'

autotelik commented 6 years ago

it tells you the issue

No value provided for required options '--model'

autotelik commented 6 years ago

I think maybe reading around the basics of calling a rake or a thor task would help you. thor is nothing to do with me, it provides the task calling framework and defines how options are passed

you need to tell the task which DB model the csv file relates to

thor datashift:import:csv -i products_export.csv -m Product

mices commented 6 years ago

Well you previously said "Usage: "thor datashift:import:csv -i, --input=INPUT -m, --model=MODEL"

autotelik commented 6 years ago

I supplied you the thor help ...that's how the thor gem and most linux type command line apps decides to print out its help.