From 94fe2be88d63fa87018c461d1dfa5b189032534c Mon Sep 17 00:00:00 2001 From: "Stephen M. Coakley" Date: Mon, 22 May 2017 13:53:07 -0500 Subject: [PATCH] Add Waffle badge and feature list --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 0f3e716..8fd7fa5 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,18 @@ # Tabitha [![Build Status](https://img.shields.io/travis/Widen/tabitha.svg)](https://travis-ci.org/Widen/tabitha) +[![Waffle.io](https://img.shields.io/waffle/label/Widen/tabitha/in%20progress.svg)](https://waffle.io/Widen/tabitha) Tabular data reading, writing, and processing library for JVM languages. This library is currently under active development and is pre-release. +## Features +- **Immutable data types:** Data is always immutable, which allows methods to be zero-copy operations. +- **Lazy evaluation:** Data is streamed lazily, allowing for complex data processing and producing while using constant memory. +- **Multi-threaded processing:** Input data can be consumed and processed fast and efficiently using a parallel executor. +- **Multiple formats:** Tabitha supports input and output in multiple formats, including CSV, TSV, XLSX, and XLS. + ## Documentation Documentation will be available in this repository, but is not yet written. For now, check the source for interesting comments that may help explain usage. Ideally, the class and method names should be pretty clear as to what they do.