Skip to content

Commit 17be72e

Browse files
Update README.md (#4)
* Fix indentation of paragraphs within bullet points * Add reference to keyPath-based column definition * Correct line break definition * Improve wording in a couple of places
1 parent de3b220 commit 17be72e

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

README.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# SwiftCSVEncoder
22

3-
A Swift package that allows for creation of CSV files.
3+
A Swift package that allows for the creation of CSV files.
44

55
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fscottmatthewman%2Fswiftcsvencoder%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/scottmatthewman/swiftcsvencoder) [![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fscottmatthewman%2Fswiftcsvencoder%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/scottmatthewman/swiftcsvencoder)
66

77
## Rationale
88

9-
Neither Swift nor Apple's application libraries contain a standardised method of converting data to CSV format for export. A number of packages already exist, but I wanted to build my own minimal-but-reusable library.
9+
Neither Swift nor Apple's application libraries contain a standardised method of converting data to CSV format for export. A number of packages already exist, but I wanted to build my own minimal, reusable library.
1010

1111
## Features
1212

1313
1. **Not coupled to root object structure.**
1414

15-
`Codable` is great, but is limited to a single coding representation per object. It's also created with hierarchical representations – dictionaries and arrays inside other dictionaries or arries - in mind, whereas CSV is by its nature flat in structure.
15+
`Codable` is great but is limited to a single coding representation per object. It's also created with hierarchical representations – dictionaries and arrays inside other dictionaries or arries - in mind, whereas CSV is by its nature flat in structure.
1616

17-
I also need CSV outputs with different columns for different purposes, so SwiftCSVEncoder provides a `CSVTable` object that defines which columns to use:
17+
I also need CSV outputs with different columns for different purposes, but which might each serialize the same object with different columns. So SwiftCSVEncoder provides a `CSVTable` object that defines which columns to use:
1818

1919
```swift
2020
let table: CSVTable<Customer> = CSVTable(
@@ -26,22 +26,28 @@ Neither Swift nor Apple's application libraries contain a standardised method of
2626
)
2727
```
2828

29+
Where a column's attribute block does nothing but access a property, a keyPath-based shortcut may be used.
30+
31+
```swift
32+
CSVColumn("Name", \.name)
33+
```
34+
2935
2. **Always include column headers as the first row.**
3036

3137
3. **Automatic quoting of strings, but only when needed.**
3238

33-
Including freeform text in CSVs is fraught with difficulties, because not all CSV importers handle things like new lines or embedded special characters (`"`, `,`) in the same way. SwiftCSVEncoder currently supports only one set of encoding rules for strings:
39+
Including freeform text in CSVs is fraught with difficulties because not all CSV importers handle things like new lines or embedded special characters (`"`, `,`) in the same way. SwiftCSVEncoder currently supports only one set of encoding rules for strings:
3440

3541
* If the text includes a comma (`,`), a newline (`\n`) or double quotes (`"`), or if it has leading or trailing whitespace, then the whole string is enclosed in double quotation marks.
3642
* Any double quotes within the text are escaped by being doubled, so the text `This is C.S.Lewis's sequel to "The Lion, The Witch and the Wardrobe"` would be emitted as `"This is C.S.Lewis's sequel to ""The Lion, The Witch and the Wardrobe"""`.
3743

3844
4. **Default delimiter and line-ending**
3945

40-
The CSVs emitted by SwiftCSVEncoder separate fields only by commas. Each line is terminated by a `\n` character. If you want different options, then (for now) look elsewhere.
46+
The CSVs emitted by SwiftCSVEncoder separate fields only by commas. Each line is terminated by the `\r\n` character. If you want different options, then (for now) look elsewhere.
4147

4248
5. **Optional control over `Date` format**
4349

44-
`Date` objects are natively handled, but the format in which they are converted to strings might vary. Each `CSVTable` supports a configuration object that includes a `dateEncodingStrategy`. The default is to use a full date/time ISO 8601-compliant format.
50+
`Date` objects are natively handled, but the format in which they are converted to strings might vary. Each `CSVTable` supports a configuration object that includes a `dateEncodingStrategy`. The default is to use a full date/time ISO 8601-compliant format.
4551

4652
6. **Only support in-memory data creation**
4753

0 commit comments

Comments
 (0)