Skip to content
forked from Widen/tabitha

Tabular data reading, writing, and processing library for JVM languages.

License

Notifications You must be signed in to change notification settings

isabella232/tabitha

 
 

Repository files navigation

Tabitha

Build Status Maven Central

Tabular data reading, writing, and processing library for JVM languages.

This library is currently under active development and is pre-release.

Made with ❤️ by Widen.

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.

Installation

Tabitha comes in several modules; a core module, which provides the API, and plugin modules that provide specific file format support. The core module provides no format support out of the box, so you'll likely want to include at least one plugin.

With Gradle:

// Tabitha API
compile 'com.widen:tabitha-core:{version}'
// Support for CSV, TSV, etc
compile 'com.widen:tabitha-delimited:{version}'
// Support for XLSX and XLS
compile 'com.widen:tabitha-excel:{version}'
// Support for reading line-separated JSON objects
compile 'com.widen:tabitha-json:{version}'

Other dependency managers should be similar.

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.

Examples

Check out the examples directory for some simple examples of how you can use Tabitha.

License

Available under the MIT license. See the license file for details.

About

Tabular data reading, writing, and processing library for JVM languages.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 85.1%
  • Groovy 14.9%