Popularity
1.4
Stable
Activity
5.5
Declining
10
5
3

Programming language: Scala
License: Apache License 2.0
Tags: CSV    
Latest version: v0.15.0

fm-flatfile alternatives and similar packages

Based on the "CSV" category.
Alternatively, view fm-flatfile alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of fm-flatfile or a related project?

Add another 'CSV' Package

README

Frugal Mechanic Flat File Reader

Build Status

This is our TSV/CSV/Flat/Excel File Reader

Basic Usage for Reading

import fm.flatfile.{FlatFileReader, FlatFileRow}

// FlatFileReader implements LazySeq[FlatFileRow]
FlatFileReader("/path/to/input.tsv").foreach { row: FlatFileRow =>
  println("Column 1: "+row("Column 1"))
  println("Column 2: "+row("Column 2"))
}

Basic Usage for Writing

import fm.common.FileOutputStreamResource
import fm.flatfile.{FlatFileWriter, FlatFileWriterOptions}
import java.io.File

// FlatFileReader implements LazySeq[FlatFileRow]
FlatFileWriter(FileOutputStreamResource(new File("/path/to/output.tsv")), FlatFileWriterOptions.CSV) { out: FlatFileWriter =>
  out.write("Column 1" -> "Row 1 Col 1 Value", "Column 2" -> "Row 1 Col 2 Value")
  out.write("Column 1" -> "Row 2 Col 1 Value", "Column 2" -> "Row 2 Col 2 Value")
  out.write("Column 1" -> "Row 3 Col 1 Value", "Column 2" -> "Row 3 Col 2 Value")
  out.write("Column 1" -> "Row 4 Col 1 Value", "Column 2" -> "Row 4 Col 2 Value")
}

Authors

Tim Underwood (GitHub, LinkedIn, Twitter, Google Plus)

Eric Peters (GitHub, LinkedIn, Twitter, Google Plus)

Copyright

Copyright Frugal Mechanic

License

Apache License, Version 2.0


*Note that all licence references and agreements mentioned in the fm-flatfile README section above are relevant to that project's source code only.