{"id":18207652,"url":"https://github.com/d-markey/csvwriter","last_synced_at":"2025-04-07T19:52:52.292Z","repository":{"id":56827469,"uuid":"468509280","full_name":"d-markey/csvwriter","owner":"d-markey","description":"Simple, cross-platform Dart class to write CSV data to a StringSink ","archived":false,"fork":false,"pushed_at":"2023-05-20T16:43:00.000Z","size":33,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T21:33:26.719Z","etag":null,"topics":["csv","csv-export","dart","flutter"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/csvwriter","language":"Dart","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/d-markey.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"publiccode":null,"codemeta":null}},"created_at":"2022-03-10T21:01:39.000Z","updated_at":"2024-05-18T14:54:22.000Z","dependencies_parsed_at":"2025-02-13T21:39:43.710Z","dependency_job_id":null,"html_url":"https://github.com/d-markey/csvwriter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-markey%2Fcsvwriter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-markey%2Fcsvwriter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-markey%2Fcsvwriter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d-markey%2Fcsvwriter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/d-markey","download_url":"https://codeload.github.com/d-markey/csvwriter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247721928,"owners_count":20985083,"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":["csv","csv-export","dart","flutter"],"created_at":"2024-11-03T13:03:49.653Z","updated_at":"2025-04-07T19:52:52.273Z","avatar_url":"https://github.com/d-markey.png","language":"Dart","readme":"# csvwriter\n\nLightweight, cross-platform Dart package to write CSV data to a `StringSink`. Supports and extends RFC 4180.\n\n# Usage\n\n```dart\nimport 'dart:io';\n\nimport 'package:csvwriter/csvwriter.dart';\n\nvoid main() async {\n  var numbersFile = File('number_props.csv');\n  var numbersCsv = CsvWriter.withHeaders(numbersFile.openWrite(), ['Number', 'Odd?', 'Even?']);\n\n  try {\n    for (var i = 0; i \u003c 100; i++) {\n      numbersCsv.writeData(data: {'Number': i, 'Odd?': (i % 2) != 0, 'Even?': (i % 2) == 0});\n    }\n  } finally {\n      await numbersCsv.close();\n  }\n}\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd-markey%2Fcsvwriter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fd-markey%2Fcsvwriter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd-markey%2Fcsvwriter/lists"}