Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tpunder/fm-flatfile
Scala Library for Reading Flat File Data (CSV/TSV/XLS/XLSX)
https://github.com/tpunder/fm-flatfile
Last synced: 25 days ago
JSON representation
Scala Library for Reading Flat File Data (CSV/TSV/XLS/XLSX)
- Host: GitHub
- URL: https://github.com/tpunder/fm-flatfile
- Owner: frugalmechanic
- License: apache-2.0
- Created: 2014-04-23T20:49:52.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-07-13T23:54:52.000Z (over 1 year ago)
- Last Synced: 2024-06-19T03:02:40.880Z (6 months ago)
- Language: Scala
- Homepage:
- Size: 145 KB
- Stars: 11
- Watchers: 5
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-scala - fm-flatfile - flatfile) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/frugalmechanic/fm-flatfile) (Table of Contents / CSV)
README
Frugal Mechanic Flat File Reader
================================[![Build Status](https://travis-ci.org/frugalmechanic/fm-flatfile.svg?branch=master)](https://travis-ci.org/frugalmechanic/fm-flatfile)
This is our TSV/CSV/Flat/Excel File Reader
Basic Usage for Reading
-----------------------```scala
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
-----------------------```scala
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](http://frugalmechanic.com)
License
-------[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt)