svenvc / NeoCSV

NeoCSV is an elegant and efficient standalone Smalltalk framework to read and write CSV converting to or from Smalltalk objects.
MIT License
29 stars 12 forks source link
csv data-interchange mapping pharo smalltalk

NeoCSV

NeoCSV is an elegant and efficient standalone Smalltalk framework to read and write CSV converting to or from Smalltalk objects.

CI

MIT Licensed.

A chapter in the Enterprise Pharo book is a good introduction to NeoCSV.

Go ahead and read the NeoCSV paper.

Basically, NeoCSV deals with a format that

https://en.wikipedia.org/wiki/Comma-separated_values

Installation

You can load NeoCSV using Metacello

Metacello new
  repository: 'github://svenvc/NeoCSV/repository';
  baseline: 'NeoCSV';
  load.

You can use the following dependency from your own Metacello configuration or baseline

spec baseline: 'NeoCSV' with: [ spec repository: 'github://svenvc/NeoCSV/repository' ].