{"id":15412265,"url":"https://github.com/robthree/rsv","last_synced_at":"2025-03-01T19:30:52.559Z","repository":{"id":216277795,"uuid":"740906486","full_name":"RobThree/RSV","owner":"RobThree","description":".Net library for reading / writing RSV files","archived":false,"fork":false,"pushed_at":"2024-03-07T13:03:33.000Z","size":4341,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-10T14:04:18.219Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/RobThree.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["RobThree"],"custom":["https://paypal.me/robiii"]}},"created_at":"2024-01-09T10:07:41.000Z","updated_at":"2024-01-10T06:56:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"a63242d1-e71d-4faa-9cd5-e41eb95e0609","html_url":"https://github.com/RobThree/RSV","commit_stats":null,"previous_names":["robthree/rsv"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobThree%2FRSV","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobThree%2FRSV/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobThree%2FRSV/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobThree%2FRSV/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RobThree","download_url":"https://codeload.github.com/RobThree/RSV/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241414516,"owners_count":19959228,"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-10-01T16:52:01.506Z","updated_at":"2025-03-01T19:30:51.309Z","avatar_url":"https://github.com/RobThree.png","language":"C#","readme":"# ![logo](https://raw.githubusercontent.com/RobThree/RSV/main/logo_24x24.png) RSV\n\n![Build Status](https://img.shields.io/github/actions/workflow/status/RobThree/RSV/test.yml?branch=main\u0026style=flat-square) [![Nuget version](https://img.shields.io/nuget/v/RSV.svg?style=flat-square)](https://www.nuget.org/packages/RSV/)\n\n\nThis library, [available on NuGet](https://www.nuget.org/packages/RSV), provides a simple way to parse and generate [RSV (Row of String Values) files](https://github.com/Stenway/RSV-Specification). This library reads / writes in a streaming way so memory usage is minimal.\n\n## Quickstart\n\n### Reading RSV file:\n\n```c#\nusing var stream = File.OpenRead(\"test.rsv\");\nvar reader = new RsvReader(stream);\n\n// Dump data\nforeach (var row in reader.Read()) {\n\tConsole.WriteLine(string.Join(\"\\t\", row));\n}\n```\n\n### Writing RSV file:\n\n```c#\n\nusing var stream = File.Create(\"test.rsv\");\nvar writer = new RsvWriter(stream);\nstring[][] data = [\n    [\"A\", \"B\", \"C\"],\n    [\"1\", \"2\", \"3\"]\n];\n\n// Write data\nwriter.Write(data);\n\n// ...or write data async (you can optionally pass a CancellationToken):\nawait writer.WriteAsync(data);\n```\n\n## Attibution\n\nLogo based on [CSV Icon by Freepik](https://www.freepik.com/icon/csv_6133923).","funding_links":["https://github.com/sponsors/RobThree","https://paypal.me/robiii"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobthree%2Frsv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobthree%2Frsv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobthree%2Frsv/lists"}