No commit activity in last 3 years
No release in over 3 years
redshift_csv_file is a Redshift-specific CSV file parser. Amazon Redshift generates non-standard CSV format, special handling is required.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

redshift_csv_file library

redshift_csv_file is a Redshift-specific CSV file parser in Ruby. Amazon Redshift generates non-standard CSV format, special handling is required.

Usage

require 'redshift_csv_file'

File.open('unloaded_file.csv') {|f|
  RedshiftCsvFile.new(f).each_row do |col1, col2, col3|
    p [col1, col2, col3]   # => ["value1", "value2", "value3"]
  end
}

License

MIT license. See LICENSE file for details.

Author

Minero Aoki