Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yaslab/CSV.swift
CSV reading and writing library written in Swift.
https://github.com/yaslab/CSV.swift
csv swift
Last synced: 3 months ago
JSON representation
CSV reading and writing library written in Swift.
- Host: GitHub
- URL: https://github.com/yaslab/CSV.swift
- Owner: yaslab
- License: mit
- Created: 2016-06-10T17:10:57.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-08-11T15:23:03.000Z (3 months ago)
- Last Synced: 2024-08-12T14:37:59.956Z (3 months ago)
- Topics: csv, swift
- Language: Swift
- Homepage:
- Size: 316 KB
- Stars: 639
- Watchers: 18
- Forks: 78
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - CSV.swift - CSV reading and writing library written in Swift. (Parsing / CSV)
- awesome-ios-star - CSV.swift - CSV reading and writing library written in Swift. (Parsing / CSV)
README
# CSV.swift
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fyaslab%2FCSV.swift%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/yaslab/CSV.swift)
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fyaslab%2FCSV.swift%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/yaslab/CSV.swift)
[![Open Source Helpers](https://www.codetriage.com/yaslab/csv.swift/badges/users.svg)](https://www.codetriage.com/yaslab/csv.swift)CSV reading and writing library written in Swift.
## Usage for reading CSV
### From string
```swift
import CSVlet csvString = "1,foo\n2,bar"
let csv = try! CSVReader(string: csvString)
while let row = csv.next() {
print("\(row)")
}
// => ["1", "foo"]
// => ["2", "bar"]
```### From file
NOTE: The default character encoding is `UTF8`.
```swift
import Foundation
import CSVlet stream = InputStream(fileAtPath: "/path/to/file.csv")!
let csv = try! CSVReader(stream: stream)
while let row = csv.next() {
print("\(row)")
}
```### Getting the header row
```swift
import CSVlet csvString = "id,name\n1,foo\n2,bar"
let csv = try! CSVReader(string: csvString,
hasHeaderRow: true) // It must be true.let headerRow = csv.headerRow!
print("\(headerRow)") // => ["id", "name"]while let row = csv.next() {
print("\(row)")
}
// => ["1", "foo"]
// => ["2", "bar"]
```### Get the field value using subscript
```swift
import CSVlet csvString = "id,name\n1,foo"
let csv = try! CSVReader(string: csvString,
hasHeaderRow: true) // It must be true.while csv.next() != nil {
print("\(csv["id"]!)") // => "1"
print("\(csv["name"]!)") // => "foo"
}
```### Provide the character encoding
If you use a file path, you can provide the character encoding to initializer.
```swift
import Foundation
import CSVlet stream = InputStream(fileAtPath: "/path/to/file.csv")!
let csv = try! CSVReader(stream: stream,
codecType: UTF16.self,
endian: .big)
```### Reading a row into a Decodable object
If you have a destination object that conforms to the `Decodable` protocol, you can serialize a row with a new instances of the object.
```swift
struct DecodableExample: Decodable {
let intKey: Int
let stringKey: String
let optionalStringKey: String?
}let csv = """
intKey,stringKey,optionalStringKey
1234,abcd,
"""var records = [DecodableExample]()
do {
let reader = try CSVReader(string: csv, hasHeaderRow: true)
let decoder = CSVRowDecoder()
while reader.next() != nil {
let row = try decoder.decode(DecodableExample.self, from: reader)
records.append(row)
}
} catch {
// Invalid row format
}
```## Usage for writing CSV
### Write to memory and get a CSV String
NOTE: The default character encoding is `UTF8`.
```swift
import Foundation
import CSVlet csv = try! CSVWriter(stream: .toMemory())
// Write a row
try! csv.write(row: ["id", "name"])// Write fields separately
csv.beginNewRow()
try! csv.write(field: "1")
try! csv.write(field: "foo")
csv.beginNewRow()
try! csv.write(field: "2")
try! csv.write(field: "bar")csv.stream.close()
// Get a String
let csvData = csv.stream.property(forKey: .dataWrittenToMemoryStreamKey) as! Data
let csvString = String(data: csvData, encoding: .utf8)!
print(csvString)
// => "id,name\n1,foo\n2,bar"
```### Write to file
NOTE: The default character encoding is `UTF8`.
```swift
import Foundation
import CSVlet stream = OutputStream(toFileAtPath: "/path/to/file.csv", append: false)!
let csv = try! CSVWriter(stream: stream)try! csv.write(row: ["id", "name"])
try! csv.write(row: ["1", "foo"])
try! csv.write(row: ["1", "bar"])csv.stream.close()
```## Installation
### Swift Package Manager
Add the dependency to your `Package.swift`. For example:
```swift
// swift-tools-version: 5.9import PackageDescription
let package = Package(
name: "MyPackage",
dependencies: [
// Add `CSV.swift` package here.
.package(url: "https://github.com/yaslab/CSV.swift.git", from: "2.5.0")
],
targets: [
.executableTarget(
name: "MyCommand",
dependencies: [
// Then add it to your module's dependencies.
.product(name: "CSV", package: "CSV.swift")
]
)
]
)
```### CocoaPods
```ruby
pod 'CSV.swift', '~> 2.5.0'
```## Reference specification
- [RFC4180](http://www.ietf.org/rfc/rfc4180.txt) ([en](http://www.ietf.org/rfc/rfc4180.txt), [ja](http://www.kasai.fm/wiki/rfc4180jp))
## License
CSV.swift is released under the MIT license. See the [LICENSE](https://github.com/yaslab/CSV.swift/blob/master/LICENSE) file for more info.