{"id":1703,"url":"https://github.com/Daniel1of1/CSwiftV","last_synced_at":"2025-08-02T04:32:21.378Z","repository":{"id":20248853,"uuid":"23521407","full_name":"Daniel1of1/CSwiftV","owner":"Daniel1of1","description":"A csv parser written in swift conforming to rfc4180","archived":false,"fork":false,"pushed_at":"2023-03-14T03:41:33.000Z","size":92,"stargazers_count":171,"open_issues_count":10,"forks_count":46,"subscribers_count":9,"default_branch":"develop","last_synced_at":"2025-07-14T23:23:02.357Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"geerlingguy/macos-virtualbox-vm","license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Daniel1of1.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}},"created_at":"2014-08-31T19:34:35.000Z","updated_at":"2024-07-31T18:58:51.000Z","dependencies_parsed_at":"2024-01-07T22:23:29.081Z","dependency_job_id":"7f45f0bd-44c8-4c1c-85a4-b13683656c00","html_url":"https://github.com/Daniel1of1/CSwiftV","commit_stats":{"total_commits":68,"total_committers":15,"mean_commits":4.533333333333333,"dds":0.5882352941176471,"last_synced_commit":"8179de07cd3c761072261d068e0ed3b65fef1a48"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/Daniel1of1/CSwiftV","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Daniel1of1%2FCSwiftV","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Daniel1of1%2FCSwiftV/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Daniel1of1%2FCSwiftV/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Daniel1of1%2FCSwiftV/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Daniel1of1","download_url":"https://codeload.github.com/Daniel1of1/CSwiftV/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Daniel1of1%2FCSwiftV/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268334615,"owners_count":24233793,"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","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-01-05T20:15:53.782Z","updated_at":"2025-08-02T04:32:21.130Z","avatar_url":"https://github.com/Daniel1of1.png","language":"Swift","funding_links":[],"categories":["Parsing"],"sub_categories":["CSV","Other free courses"],"readme":"# CSwiftV\n\nA csv parser conforming (and tested as much) to [rfc4180](http://tools.ietf.org/html/rfc4180#section-2) i.e the closest thing to a csv spec.\n\nIt is currently all in memory so not suitable for very large files.\n\n### TL;DR\n\n```swift\nlet inputString = \"Year,Make,Model,Description,Price\\r\\n1997,Ford,E350,descrition,3000.00\\r\\n1999,Chevy,Venture,another description,4900.00\\r\\n\"\n\nlet csv = CSwiftV(with: inputString)\n\nlet rows = csv.rows // [\n                    //  [\"1997\",\"Ford\",\"E350\",\"descrition\",\"3000.00\"],\n                    //  [\"1999\",\"Chevy\",\"Venture\",\"another description\",\"4900.00\"]\n                    // ]\n\nlet headers = csv.headers // [\"Year\",\"Make\",\"Model\",\"Description\",\"Price\"]\n\nlet keyedRows = csv.keyedRows // [\n                              //  [\"Year\":\"1997\",\"Make\":\"Ford\",\"Model\":\"E350\",\"Description\":\"descrition\",\"Price\":\"3000.00\"],\n                              //  [\"Year\":\"1999\",\"Make\":\"Chevy\",\"Model\":\"Venture\",\"Description\":\"another, description\",\"Price\":\"4900.00\"]\n                              // ]\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDaniel1of1%2FCSwiftV","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FDaniel1of1%2FCSwiftV","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDaniel1of1%2FCSwiftV/lists"}