HI Michael, can you elaborate a bit more on your project and maybe share the link to the website? Basically what's your input and what's your expected output. A bit of scrapy code maybe if you can?
With the default CSV output, scrapy outputs 1 line per scraped item and 1st line contains field names (header line) To customize how scrapy outputs data you'll probably need to write a custom item exporter[1] Hope it helps. Paul. [1] http://doc.scrapy.org/en/latest/topics/exporters.html On Tuesday, June 10, 2014 9:23:43 PM UTC+2, Michael Jackson wrote: > > I am scraping a web page for a school project and and getting data in a > csv file like this "2,4,32,3,8" but this is just one cell in excel. I am > also gathering names and several other things, but they are all separated > by commas. Is there a way to have scrapy store the data differently when > it dumps to the csv? I have been told that MySQL will be able to fix this, > but I would like to do it without having to learn MySQL too if possible. > -- You received this message because you are subscribed to the Google Groups "scrapy-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/scrapy-users. For more options, visit https://groups.google.com/d/optout.
