Scrapy is indeed powerful. But it lakes a basic feature. When exporting to csv there is not way to change column name. By default it outputs the field name defined in Item. The item name should be python variables.
However, at times we need to output with human readable cloumn names like person_name
to Person Name
Is there any solution/setting exists. I tried with FEED
in the settings but it simply takes which field to output.
Current Output:
id,person_name,uniq_code
D32,John Smith,8923
D89,Sleim,2343
Required Output:
ID,Person Name,Person Code
D32,John Smith,8923
D89,Sleim,2343