{"id":31637636,"url":"https://github.com/samuelstevens/elm-csv","last_synced_at":"2025-10-07T01:38:45.019Z","repository":{"id":52705740,"uuid":"278353240","full_name":"samuelstevens/elm-csv","owner":"samuelstevens","description":"CSV parsing and escaping library for Elm.","archived":false,"fork":false,"pushed_at":"2021-04-20T17:07:03.000Z","size":10,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-08-08T20:40:05.783Z","etag":null,"topics":["csv","elm"],"latest_commit_sha":null,"homepage":"","language":"Elm","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/samuelstevens.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-07-09T12:04:03.000Z","updated_at":"2023-08-08T20:40:05.784Z","dependencies_parsed_at":"2022-08-22T08:00:24.826Z","dependency_job_id":null,"html_url":"https://github.com/samuelstevens/elm-csv","commit_stats":null,"previous_names":[],"tags_count":2,"template":null,"template_full_name":null,"purl":"pkg:github/samuelstevens/elm-csv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samuelstevens%2Felm-csv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samuelstevens%2Felm-csv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samuelstevens%2Felm-csv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samuelstevens%2Felm-csv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/samuelstevens","download_url":"https://codeload.github.com/samuelstevens/elm-csv/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samuelstevens%2Felm-csv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278708073,"owners_count":26031932,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csv","elm"],"created_at":"2025-10-07T01:38:42.170Z","updated_at":"2025-10-07T01:38:45.012Z","avatar_url":"https://github.com/samuelstevens.png","language":"Elm","funding_links":[],"categories":[],"sub_categories":[],"readme":"# elm-csv\n\nParse CSV files according to [RFC 4180](https://tools.ietf.org/html/rfc4180) (including values with quoted commas).\n\n## Install\n\n```bash\nelm install samuelstevens/elm-csv\n```\n\n## Quick Start\n\nSuppose you have a file `star-wars-quotes.csv` with the following content:\n\n```csv\nquote,character\n\"Why, hello there\",Obi-Wan Kenobi\n\"General Kenobi.\",General Grievous\n```\n\nOnce this is read into an Elm string, you could parse it like this:\n```elm\nimport Csv\n\nlet\n  content = \n    \"quote,character\\n\\\"Why, hello there\\\",Obi-Wan Kenobi\\n\\\"General Kenobi.\\\",General Grievous\"\nin\nCsv.parseRows content --\u003e Ok [[ \"quote\", \"character\"],[\"Why, hello there\", \"Obi-Wan Kenobi\"],[\"General Kenobi.\", \"General Grievous\"]]\n```\n\nCalling `Csv.parseCsv` will produce a list of lists of strings, properly escaped from their CSV representation.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamuelstevens%2Felm-csv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamuelstevens%2Felm-csv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamuelstevens%2Felm-csv/lists"}