Project

bamfcsv

0.01
No commit activity in last 3 years
No release in over 3 years
BAMFCSV parses csv like a BAMF. BAMF!!
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.0.2
~> 2.5.0
 Project Readme
BAMFCSV -- Parsin' CSVs like a BAMF!

$ gem install bamfcsv
$ irb -rbamfcsv
irb> BAMFCSV.read "super_giant.csv"
===> ...large array of arrays...

BAMF!!! CSV IS PARSED IN LESS THAN ONE SECOND! GUARANTEED!*

also:
BAMFCSV.parse "csv,string,of,awesome"

AND! both #parse and #read take an optional :headers => true to generate a table!

irb(1.9.2): table = BAMFCSV.parse <<EOF, headers: true
         ?> foo,bar
         ?> 1,2
         ?> 3,4
         ?> EOF
==========> #<BAMFCSV::Table>
irb(1.9.2): table.first["foo"]
==========> "1"
irb(1.9.2): table[1]["bar"]
==========> "4"

DOUBLE-AND/ALSO it supports custom field separators!!

irb(1.9.2): BAMFCSV.parse(<<EOF, separator: '|')
         ?> foo|bar
         ?> baz|quux
         ?> EOF
==========> [["foo", "bar"], ["baz", "quux"]]


(*) Results may vary.