Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alekcz/csv-pixie
CSV library for pixie
https://github.com/alekcz/csv-pixie
Last synced: about 1 month ago
JSON representation
CSV library for pixie
- Host: GitHub
- URL: https://github.com/alekcz/csv-pixie
- Owner: alekcz
- License: epl-1.0
- Created: 2016-06-25T21:21:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-06-29T18:05:06.000Z (over 8 years ago)
- Last Synced: 2024-04-14T01:05:59.711Z (8 months ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# csv-pixie
csv-pixie is a library for working with CSV files in [Pixie](https://github.com/pixie-lang/pixie).
## Install
Add the following dependency to your `project.edn` file:
[alekcz/csv-pixie "0.0.1-alpha"]
## Documentation
### read-csv
Reads data from csv and returns sequence of maps with the header row as keys
```clojure
user=> (read-csv "./lisp.csv" ",")
({:name pixie, :interop c} {:name hy, :interop python})
```