CTCSV

Description

Load a CSV - into a dictionary ready for use.

Details

Source
GitHub
Created
Oct. 6, 2020
Updated
Oct. 6, 2020

Categories

Serialization

README excerpt

# CTCSV
Load a CSV - into a dictionary ready for use.

Build on Pharo (SmallTalk) a small class that will enable the loading of a CSV into an image ready for processing. No special methods are supplied to enable manipulation of data - that will be down to the receiving class.

```
| csv data |
csv := CTCSV new.
data := csv loadCSV: 'test.csv'.
```
← Back to results