Popular Ruby library/gem for working with CSV format files.

learn more… | top users | synonyms

0
votes
0answers
26 views

rails upload csv with FasterCSV to database IN UTF8

rails - 2.3.8 ruby - 1.8.7 I really searched old questions but found nothing. The deal is: Read from a .csv and update that info to my table in UTF8, but special chars like 'á','è','û' are changed ...
0
votes
0answers
38 views

Why do I get “FasterCSV::MalformedCSVError: Illegal quoting error”?

I'm driving myself slight crazy with this one. I am trying to import a CSV file: uploaded_io = File.read("amazon_import.csv") FasterCSV.parse(uploaded_io, {:headers => true, :quote_char => ...
0
votes
2answers
27 views

Problems with FasterCSV (Ruby)

I'm writing a program, that creates a csv-File. And I have a problem right at the beginning. So, my code is def create_csv destfile = Rails.root.join("public", "reports", ...
0
votes
2answers
71 views

How to write columns header to a csv file with Ruby?

I am having trouble writing columns to a csv file with Ruby. Below is my snippet of code. calc = numerator/denominator.to_f data_out = "#{numerator}, #{denominator}, #{calc}" ...
0
votes
1answer
48 views

open and return fastercsv object with headers

I have a data sample like following Ticker,Date/Time,Conseqhigher,Conseqlower,H,L,newHigh,newLow,Prevbarlow,Prevbarhigh,uptrend,dntrend,min15low,min15high EUR.USD-IDEALPRO-CASH,2012-02-19 ...
0
votes
1answer
68 views

What is the Ruby on Rails-way to import a structured comma delimited file and then create records Activerecord

I have a structured comma delimited file that has two record types. The different records are differentiated by a header entry: H or P. The file format follows: "H","USA","MD","20904" ...
0
votes
0answers
117 views

xsl code to convert complex XSD/XML to csv. XML have repeating parent tags.

XSl file needs to be developed for xml. below xsd code for the xml. using the xsl the xml data is transformed into csv. XSD code: <?xml version="1.0" encoding="UTF-8"?> <xs:schema ...
0
votes
2answers
96 views

No such file or directory error when loading csv file in Rails

I'm trying to load data from a csv file to my rails database. this is my rake task: namespace :db do require 'csv' desc "load user data from csv" task :load_csv_data => :environment do ...
0
votes
3answers
47 views

Ruby csv import get code smaller but equal

I'm new to rails and ruby... How can i refactor such code, which import's from csv file data? Now i have such code if row[qnt].to_s != "" eqnt = /(\d+)/.match(row[qnt])[0].to_s else eqnt ...
0
votes
1answer
104 views

MalformedCSVError with rails CSV (FasterCSV)

I'm having serious issues trying to parse some CSV in rails right now. Basically my app gets a user to upload a CSV file. The app then converts the file to ensure it is in UTF-8 format, then attempts ...
2
votes
3answers
136 views

Ruby CSV, using square brackets as row seperators

I'm trying to use square brackets '[]' as a row separator in a CSV file. I must use this exact format for this project (output needs to match LEDES98 law invoicing format exactly). I'm trying to do ...
1
vote
2answers
493 views

Ruby csv read first line in csv file [duplicate]

Possible Duplicate: Ruby view csv data In my app i'm reading csv file, but why in view i have only second,...,n records, without first line? Here is code: def common_uploader require ...
0
votes
2answers
68 views

Using Ruby to replace specific records in a CSV file with records from another CSV file

I have two large-ish CSV files. One file is just a list of records. The other file is a list of records, but the first column is the line number of the record that it modifies in the other file. It ...
0
votes
1answer
115 views

How do I create one CSV file containing two models with comma gem?

I would like to create one CSV file containing two models with comma gem in my ruby 3.2.8 application. Maybe the answer to the question is trivial, but this is the first time I use this gem. I know ...
1
vote
1answer
133 views

Rails csv quote_char set correct value [closed]

In my rails app i have different types of data value, for example in one string i have: Жидк.в боч омыв. "Призма" 1л (Бельгия) and in other: Стеклоомыватель Vitex -20 'Зима' 5л Sure it ...
3
votes
2answers
146 views

How to import CSV files in rails?

I am making an application in which it import a csv file names user.csv.But the problem i am facing is that it gives an error ArgumentError in CsvimportController#import wrong number of arguments (1 ...
0
votes
1answer
123 views

CSV file with carriage returns in a column generated using Ruby CSV returns square character in Excel

I've got a script that generates and emails a CSV file to a number of users who are on Windows. One of the columns has line breaks within it, and when I open the generated file I get square boxes ...
1
vote
1answer
801 views

Ruby CSV read multiline fields

I exported tables and queries from SQL, where some of the fields are multi-line. The Ruby (1.9+) way to read CSV appears to be: require 'csv' CSV.foreach("exported_mysql_table.csv", ...
0
votes
1answer
238 views

Ruby CSV read strings and numbers from MySQL exported csv

I exported tables and queries from SQL. The ruby (1.9+) way to read csv appears to be: require 'csv' CSV.foreach("exported_mysql_table.csv", {:headers=>true}) do |row| puts row end Which ...
0
votes
1answer
124 views

FasterCSV default options and their usage

FasterCSV has a default options hash; DEFAULT_OPTIONS = { :col_sep => ",", :row_sep => :auto, :quote_char => '"', :converters ...
0
votes
1answer
67 views

Swapping columns in FasterCSV::Table

I have almost 1000+ CSV files where I need to shuffle several columns and recreate each CSV file with the shuffled columns. As an example, initial CSV file has "H1", "H2" and "H3" columns. The new CSV ...
1
vote
1answer
84 views

Ruby parallel csv importing

I'm importing huge csv file, and i want to split it so, that importing will be faster (i didn't import directly to db, i have some calculation). code looks like this: def import_shatem require ...
1
vote
1answer
59 views

Ruby fastcsv import russian words

I'm importing big csv file into my rails app, but i have trouble with that, that in my file i have some russian words. I't throw me utf8 error, i tried write: ...
0
votes
1answer
212 views

Ruby - FasterCSV after Parsing JSON

I am trying to parse through a JSON response for customer data (names and email) and construct a csv file with column headings of the same. For some reason, every time I run this code I get a CSV ...
5
votes
4answers
695 views

Speed up csv import

I want to import big amount of cvs data (not directly to AR, but after some fetches), and my code is very slow. def csv_import require 'csv' file = ...
0
votes
1answer
301 views

Ruby csv import trouble

I tried to import data from csv in my rails app, but something went wrong: CSV::MalformedCSVError in ArticlesController#index Unclosed quoted field on line 1. My csv looks like this: "Код";"№ по ...
0
votes
1answer
514 views

JSON to CSV via FasterCSV

I'm new to Ruby and had a question. I'm trying to create a .rb file that converts JSON to CSV. I came across some disparate sources that got me to make: require "rubygems" require 'fastercsv' ...
0
votes
2answers
228 views

Parse remote file with FasterCSV

I'm trying to parse the first 5 lines of a remote CSV file. However, when I do, it raises Errno::ENOENT exception, and says: No such file or directory - [file contents] (with [file contents] being a ...
0
votes
1answer
213 views

Does FasterCSV open entire file on read?

In a situation like so: FasterCSV.parse(uploaded_file) do |row| @rows[i] = row i += 1 break row if i == 10 end Does FasterCSV read the entire file, or just the first 10 rows? I want to ...
9
votes
2answers
655 views

How do I robustly parse malformed CSV?

I'm processing data from government sources (FEC, state voter databases, etc). It's inconsistently malformed, which breaks my CSV parser in all sorts of delightful ways. It's externally sourced and ...
0
votes
1answer
2k views

CSV - Unquoted fields do not allow \r or \n (line 2)

Trying to parse a CSV file, but still getting the error message Unquoted fields do not allow \r or \n (line 2).. I found here at SO similar topic, where was a hint to do following: ...
0
votes
2answers
77 views

FasterCSV - instead of getting the content file getting the path to file

def csv_parsing require 'csv' csv_file_path = File.join(File.dirname(__FILE__), "csv_data.csv") CSV.parse(csv_file_path) do |line| puts line[0] end end This is a simple ...
2
votes
2answers
1k views

fasterCSV for ruby 1.9.3?

I'm trying to export my report in a CSV format document. For that i used fasterCSV but,i faced Please switch to Ruby 1.9's standard CSV library. It's FasterCSV plus support for Ruby 1.9's m17n ...
0
votes
3answers
266 views

This code is able to read a CSV file from file system but what about reading from a URL?

I wrote this rake task that enables me to read a csv file from a file on the local filesystem of my app, but how do I tweak this to make it read a file from a url? desc "This class will read a csv ...
0
votes
2answers
195 views

uploading and import csv to rails

i have followed this tut enter link description here, though i seem to have encountered a few issues. the problem i am getting is NameError undefined local variable or method `map' for ...
2
votes
3answers
600 views

Memory issue with huge CSV Export in Rails

I'm trying to export a large amount of data from a database to a csv file but it is taking a very long time and fear I'll have major memory issues. Does anyone know of any better way to export a ...
0
votes
1answer
70 views

Pulling a value from one CSV based on a value in another

I am trying to figure out the best way to pull a value from a CSV file called lookup.csv based on a value in master.csv, and then save the new file as output.csv. In the example below, the master ...
0
votes
1answer
121 views

Rails 3 - Importing Multiple Lines from text_area

What's the best approach to import multiple lines from a text_area in a form? I've tried a quick bodge using FasterCSV but get a NoMethodError: undefined method `pos' for ...
0
votes
2answers
205 views

merge rows csv by id ruby

I have a .csv file that, for simplicity, is two fields: ID and comments. The rows of id's are duplicated where each comment field had met max char from whatever table it was generated from and another ...
0
votes
0answers
88 views

Fastercsv check field of row for content

I'm using FasterCSV, the standard ruby library to parse a csv file. Now I want to test a field of a row to see if this is empty. But I don't now how. This is my code so far: def ...
0
votes
2answers
1k views

Ruby scraper. How to export to CSV?

I wrote this ruby script to scrape product info from the manufacturer website. The scraping and storage of the product objects in an array works, but I can't figure out how to export the array data to ...
0
votes
1answer
235 views

ror export csv bring a serious performance problems

export = FCSV.generate(:col_sep => l(:general_csv_separator)) do |csv| .. end format.csv {send_data(export), :type => 'text/csv;header=present',:filename => 'export.csv') } I want to ...
0
votes
1answer
531 views

No such file to load — FasterCSV

This problem has been bugging me for hours already. I am deploying a Rails3 App in a shared hosting site. I have been able to run the site on my local Ubuntu. It works well. But as I try to deploy ...
1
vote
1answer
385 views

remove first row from csv file and create table according to it

Hi I am trying to be at point. I am trying to upload CSV into mysql atonce by using php in windows. so I am using the query LOAD DATA INFILE 'c:/Data/mysql/transaction_upload.csv' INTO TABLE ...
0
votes
1answer
891 views

Import using FasterCSV / Rails 3.1 / Ruby 1.8.7

I'm attempting to import a tab separated file using FasterCSV. I've tried various things and get varying errors. In it's current state i'm getting a "undefined method `tempfile'" error. I've added ...
0
votes
1answer
78 views

ruby fastercsv, pre- and append identical text to every cell in file

I've read through the docs but still can't see how to target individual cells and pre- or append strings to cell content. File is fairly large, if that matters (90MBs). CSV: 2.22,3.33,4.44,5.55 ...
0
votes
3answers
984 views

encoding issue with CSV.parse

My goal is to upload a file containing rows of firstname and lastname, parse it and create Person model in db for each row. I do the following and it works fine file = CSV.parse(the_file_to_parse) ...
1
vote
1answer
1k views

Ruby CSV.parse very picky when encountering quotes

I am finding the CSV parsing in Ruby 1.9.3 to be remarkably fragile. So much so that I am wondering if I am doing something wrong If I do the following in irb I get an error: 1.9.3-p125 :011 > ...
0
votes
1answer
398 views

Surveyor Gem to Render CSV - Template is missing

I'm trying render the results of surveys from Surveryor gem as a CSV file, but get a "Template is missing" error. For example, localhost:3000/results/user-feedback-survey-1.csv results in: Template ...
0
votes
1answer
227 views

how to check the csv contain a specific column header in ruby using fastercsv

I have a csv file contains values as: "UID","NAME","USERNAME","ROLE","ADDRESS" 12,"Joe","joe_123","A","address1" 13,"Lee","lee_321","U","address2" I need to check existence of column heading "UID" ...

1 2 3