{"id":16122133,"url":"https://github.com/foxcapades/d-dsv","last_synced_at":"2026-01-21T17:03:17.574Z","repository":{"id":90410996,"uuid":"126634756","full_name":"Foxcapades/d-dsv","owner":"Foxcapades","description":"Toy delimiter separated values parser in D","archived":false,"fork":false,"pushed_at":"2018-04-21T13:18:24.000Z","size":23,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-06T11:48:42.082Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"D","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/Foxcapades.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2018-03-24T19:48:14.000Z","updated_at":"2018-04-21T13:18:25.000Z","dependencies_parsed_at":"2023-05-12T16:00:48.813Z","dependency_job_id":null,"html_url":"https://github.com/Foxcapades/d-dsv","commit_stats":{"total_commits":22,"total_committers":2,"mean_commits":11.0,"dds":0.09090909090909094,"last_synced_commit":"069de1805ee693da5bae7e210891164158e671c0"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/Foxcapades/d-dsv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fd-dsv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fd-dsv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fd-dsv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fd-dsv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Foxcapades","download_url":"https://codeload.github.com/Foxcapades/d-dsv/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fd-dsv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28636661,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T15:01:31.228Z","status":"ssl_error","status_checked_at":"2026-01-21T14:42:58.942Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":"2024-10-09T21:09:37.904Z","updated_at":"2026-01-21T17:03:17.559Z","avatar_url":"https://github.com/Foxcapades.png","language":"D","funding_links":[],"categories":[],"sub_categories":[],"readme":"# D-DSV\n\nToy implementation of a simplistic csv/tsv/*sv separated value parser library in\nD.  Made for the purpose of getting familiar with D as a language.\n\n## Usage\n\n### Sample Input\n\n_test.tsv_\n```csv\n\n\"hello\"\tgoodbye\n\"line\n\t\"\"breaks\"\"\"\n\nfoo\tbar\n\t\"fizz\"\n\n```\n\n_test.d_\n```d\nimport std.stdio;\nimport dsv;\n\nvoid main(string[] args) {\n  char[5] buffer;\n  HeadlessParser tsv = new HeadlessParser('\\t', '\"', 100);\n  char[] tmp;\n\n  do {\n    tmp = stdin.rawRead(buffer);\n    tsv.write(tmp);\n  } while (tmp.length == buffer.length);\n\n  writeln(tsv.read);\n}\n```\n\n```bash\n$ cat test.csv | dub run\n[[\"hello\", \"goodbye\"], [\"line\\n\\t\\\"breaks\\\"\", \"\"], [\"foo\", \"bar\"], [\"\", \"fizz\"]]\n```\n\n### TODO\n\n* Handle headers","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoxcapades%2Fd-dsv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffoxcapades%2Fd-dsv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoxcapades%2Fd-dsv/lists"}