{"id":47842552,"url":"https://github.com/abbgrade/csv-dotnet","last_synced_at":"2026-04-03T21:01:26.693Z","repository":{"id":56430545,"uuid":"54318871","full_name":"abbgrade/csv-dotnet","owner":"abbgrade","description":"A simple .NET library for CSV file access.","archived":false,"fork":false,"pushed_at":"2020-11-08T13:27:48.000Z","size":181,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-04-03T17:29:04.504Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abbgrade.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":"2016-03-20T13:26:02.000Z","updated_at":"2026-02-05T21:06:35.000Z","dependencies_parsed_at":"2022-08-15T18:31:31.998Z","dependency_job_id":null,"html_url":"https://github.com/abbgrade/csv-dotnet","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/abbgrade/csv-dotnet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abbgrade%2Fcsv-dotnet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abbgrade%2Fcsv-dotnet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abbgrade%2Fcsv-dotnet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abbgrade%2Fcsv-dotnet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abbgrade","download_url":"https://codeload.github.com/abbgrade/csv-dotnet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abbgrade%2Fcsv-dotnet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31377114,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T17:53:18.093Z","status":"ssl_error","status_checked_at":"2026-04-03T17:53:17.617Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-04-03T21:01:26.610Z","updated_at":"2026-04-03T21:01:26.687Z","avatar_url":"https://github.com/abbgrade.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# csv-dotnet\nWindows: [![Build status](https://ci.appveyor.com/api/projects/status/awu41w2ree3vy8ro/branch/master?svg=true)](https://ci.appveyor.com/project/abbgrade/csv-dotnet/branch/master)\nLinux: [![Build Status](https://travis-ci.org/abbgrade/csv-dotnet.svg?branch=master)](https://travis-ci.org/abbgrade/csv-dotnet)\n\nA simple .NET library for CSV file access.\nIt's inspired by the Python csv module.\n\n## Changelog \n\n- [x] CSV Reader\n- [ ] CSV Writer\n\n## Usage\n\n### StreamReader Extension Example\n\nImport the CSV library to extend the StreamReader class.\n\n\tuse CSV;\n\nUse the StreamReader.ReadRows enumerator to get the rows.\n\n\tusing (var reader = new StreamReader(\"logfile.csv\", Encoding.Default))\n\t{\n\t\tforeach (var line in reader.ReadRows('\\n', ',', 1))\n\t\t{\n\t\t\tConsole.WriteLine(string.Join(\"\\t\", line));\n\t\t}\n\t}\n\n### CsvReader Example\n\nImport the CSV library to get access to the CsvReader class.\n\n\tuse CSV;\n\nUse the CsvReader to get stateful access to the CSV file.\n\n    using (var reader = new CsvReader(\"logfile.csv\", Encoding.Default, '\\n', ',', 1))\n    {\n        Console.WriteLine(string.Join(\"\\t\", reader.Header));\n\n        foreach(var row in reader.Rows)\n            Console.WriteLine(string.Join(\"\\t\", row));\n    }\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabbgrade%2Fcsv-dotnet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabbgrade%2Fcsv-dotnet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabbgrade%2Fcsv-dotnet/lists"}