{"id":22666685,"url":"https://github.com/f0903/csv_parsing","last_synced_at":"2025-10-29T15:36:57.927Z","repository":{"id":267048161,"uuid":"900121293","full_name":"F0903/csv_parsing","owner":"F0903","description":"A basic CSV parser written in Python in less than a day for fun and learning purposes.","archived":false,"fork":false,"pushed_at":"2025-05-05T21:52:49.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-05T22:39:53.584Z","etag":null,"topics":["csv","csv-parser"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/F0903.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-12-07T23:11:33.000Z","updated_at":"2025-05-05T21:52:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"882e3f90-d9e4-4861-a6f1-9783f6bfdd9a","html_url":"https://github.com/F0903/csv_parsing","commit_stats":null,"previous_names":["f0903/csv_parsing"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/F0903/csv_parsing","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/F0903%2Fcsv_parsing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/F0903%2Fcsv_parsing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/F0903%2Fcsv_parsing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/F0903%2Fcsv_parsing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/F0903","download_url":"https://codeload.github.com/F0903/csv_parsing/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/F0903%2Fcsv_parsing/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271588743,"owners_count":24785751,"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-22T02:00:08.480Z","response_time":65,"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":["csv","csv-parser"],"created_at":"2024-12-09T14:18:01.344Z","updated_at":"2025-10-29T15:36:52.892Z","avatar_url":"https://github.com/F0903.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# csv_parsing\n\nA basic CSV parser written in Python in less than a day for fun and learning purposes. Originally written for another project.\n\nObviously not recommended for use in any serious capacity.\n\n## Usage\n\nTo use the parser, you can follow the example below:\n\n```py\nfrom .parsing.parser import CsvParser, BadLineMode\n\nfile = open(\"csv_file.csv\", encoding=\"utf-8\")\n\nparser = CsvParser(\n    file,\n    BadLineMode.ERROR,\n    print_error_to=None,\n    allow_multiline_strings=True,\n)\n\n# parse() is a generator that parses a line and returns a CsvRow per iteration\nfor row in parser.parse():\n    # returns a CsvRow\n    value = row.get_value(\"column_name\")\n\n    # Extracts string value from CsvRow\n    value_string = value.get_value()\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff0903%2Fcsv_parsing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ff0903%2Fcsv_parsing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff0903%2Fcsv_parsing/lists"}