{"id":16535418,"url":"https://github.com/hougesen/csvvy","last_synced_at":"2026-02-11T15:01:55.748Z","repository":{"id":223150196,"uuid":"735716376","full_name":"hougesen/csvvy","owner":"hougesen","description":"a quick and dirty csv parser","archived":false,"fork":false,"pushed_at":"2025-09-02T20:42:29.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-11T20:03:49.660Z","etag":null,"topics":["csv"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/hougesen.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}},"created_at":"2023-12-25T23:51:10.000Z","updated_at":"2025-09-02T20:42:32.000Z","dependencies_parsed_at":"2024-02-18T16:59:17.768Z","dependency_job_id":null,"html_url":"https://github.com/hougesen/csvvy","commit_stats":null,"previous_names":["hougesen/csvvy"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hougesen/csvvy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hougesen%2Fcsvvy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hougesen%2Fcsvvy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hougesen%2Fcsvvy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hougesen%2Fcsvvy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hougesen","download_url":"https://codeload.github.com/hougesen/csvvy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hougesen%2Fcsvvy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29336013,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T14:34:07.188Z","status":"ssl_error","status_checked_at":"2026-02-11T14:34:06.809Z","response_time":97,"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":["csv"],"created_at":"2024-10-11T18:27:24.807Z","updated_at":"2026-02-11T15:01:55.726Z","avatar_url":"https://github.com/hougesen.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# csvvy\n\ncsvvy is a very simple csv parser that you most likely shouldn't use.\n\nIf you for some _weird_ reason want to use it; it should be pretty straightforward:\n\n```rust\nfn do_something() {\n    let input = \"\nname, height, weight\nMads, 174, 62.5\nOliver, 195, 86.1\nTobias, 182, 90\nCasper, 170, 56\n\";\n\n    let separator = ',';\n\n    let rows: Vec\u003cstd::collections::HashMap\u003cString, CsvValue\u003e\u003e =\n        csvvy::parse_csv(\u0026input, separator);\n\n    for row in rows {\n        match row.get(\"height\") {\n            Some(CsvValue::Float(num)) =\u003e {\n                // Do something\n            }\n\n            Some(CsvValue::Integer(num)) =\u003e {\n                // Do something else\n            }\n\n            Some(CsvValue::Text(_)) | None =\u003e {\n                // ignore\n            }\n        };\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhougesen%2Fcsvvy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhougesen%2Fcsvvy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhougesen%2Fcsvvy/lists"}