{"id":20210237,"url":"https://github.com/lancelet/csvee","last_synced_at":"2025-10-29T20:10:10.214Z","repository":{"id":140792495,"uuid":"65864483","full_name":"lancelet/csvee","owner":"lancelet","description":"CSV library in Scala","archived":false,"fork":false,"pushed_at":"2016-08-22T07:42:33.000Z","size":35,"stargazers_count":0,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-13T21:27:46.368Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Scala","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/lancelet.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-08-17T01:01:22.000Z","updated_at":"2016-08-17T02:33:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"23f7db31-51d6-4a12-a882-e058203226f4","html_url":"https://github.com/lancelet/csvee","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lancelet%2Fcsvee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lancelet%2Fcsvee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lancelet%2Fcsvee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lancelet%2Fcsvee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lancelet","download_url":"https://codeload.github.com/lancelet/csvee/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241652684,"owners_count":19997571,"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","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":[],"created_at":"2024-11-14T05:47:00.361Z","updated_at":"2025-10-29T20:10:10.144Z","avatar_url":"https://github.com/lancelet.png","language":"Scala","funding_links":[],"categories":[],"sub_categories":[],"readme":"csvee\n\n\u003e CSV library in Scala\n\n`csvee` is a small, efficient library for reading and writing\n[RFC 4180](https://www.ietf.org/rfc/rfc4180.txt)-compatible CSV files in\nScala. It handles correct escaping of fields in CSV.\n\n## Getting Started\n\n`csvee` currently only encodes and decodes single lines from a CSV file (both\nassumed to be without newlines):\n\n```scala\nimport cats.Xor\nimport org.csvee.{CsvEncode, CsvDecode, CsvError}\n\nobject Example {\n  val encoder = CsvEncode()\n  val decoder = CsvDecode()\n\n  val fields = Vector(\"csvee\", \"42\", \", comma\", \"quote \\\"\")\n  val encoded: String = encoder.encodeLine(fields)\n  val decoded: Xor[CsvError, Vector[String]] = decoder.decodeLine(encoded)\n  \n  // or, with a size hint\n  val decodedSizeHint = decoder.decodeLine(encoded, Some(fields.length))\n}\n```\n\n## Why not OpenCSV?\n\n[OpenCSV](http://opencsv.sourceforge.net/) is the project which prompted the\noriginal creation of `csvee`. Deficiencies were identified because OpenCSV:\n  - was unable to round-trip a field containing a single backslash character\n    (as of version 3.8),\n  - is closely coupled to the `Reader` and `Writer` abstractions in Java,\n  - is hosted on SourceForge,\n  - is Java-based and throws exceptions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flancelet%2Fcsvee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flancelet%2Fcsvee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flancelet%2Fcsvee/lists"}