Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bcpeinhardt/gsv
A simple csv parser and encoder written in gleam
https://github.com/bcpeinhardt/gsv
Last synced: 7 days ago
JSON representation
A simple csv parser and encoder written in gleam
- Host: GitHub
- URL: https://github.com/bcpeinhardt/gsv
- Owner: bcpeinhardt
- Created: 2023-05-24T02:54:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-01T17:44:26.000Z (10 months ago)
- Last Synced: 2024-03-15T00:49:46.406Z (8 months ago)
- Language: Gleam
- Homepage:
- Size: 33.2 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- awesome-gleam - gsv - [📚](https://hexdocs.pm/gsv/) - A simple csv parser and generator written in gleam (Packages / Formats)
README
# gsv
[![Package Version](https://img.shields.io/hexpm/v/gsv)](https://hex.pm/packages/gsv)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/gsv/)A simple csv parser and serialiser for Gleam.
```gleam
import gsv.{Unix, Windows}pub fn main() {
let csv =
"name,loves
lucy,gleam"// Parse a csv string into a list of rows.
let assert Ok(rows) = gsv.to_lists(csv)
// -> [["name", "loves"], ["lucy", "gleam"]]// If your csv has headers you can also parse it into a list of dictionaries.
let assert Ok(rows) = gsv.to_dicts(csv_str)
// -> dict.from_list([#("name", "lucy"), #("loves", "gleam")])
}
```## Installation
To add this package to your Gleam project:
```sh
gleam add gsv@3
```