{"id":18864822,"url":"https://github.com/hi5/csv","last_synced_at":"2026-02-22T00:38:08.409Z","repository":{"id":150288431,"uuid":"98017356","full_name":"hi5/CSV","owner":"hi5","description":"CSV - AutoHotkey library for working with CSV Files","archived":false,"fork":false,"pushed_at":"2022-09-25T14:59:14.000Z","size":10,"stargazers_count":60,"open_issues_count":2,"forks_count":10,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-30T12:16:02.884Z","etag":null,"topics":["autohotkey","csv"],"latest_commit_sha":null,"homepage":"https://autohotkey.com/boards/viewtopic.php?f=6\u0026t=34853","language":"AutoHotkey","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/hi5.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}},"created_at":"2017-07-22T08:12:43.000Z","updated_at":"2025-05-10T00:29:36.000Z","dependencies_parsed_at":"2023-06-01T08:36:27.190Z","dependency_job_id":null,"html_url":"https://github.com/hi5/CSV","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hi5/CSV","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hi5%2FCSV","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hi5%2FCSV/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hi5%2FCSV/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hi5%2FCSV/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hi5","download_url":"https://codeload.github.com/hi5/CSV/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hi5%2FCSV/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29700884,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T23:35:04.139Z","status":"ssl_error","status_checked_at":"2026-02-21T23:35:03.832Z","response_time":107,"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":["autohotkey","csv"],"created_at":"2024-11-08T04:44:10.503Z","updated_at":"2026-02-22T00:38:08.379Z","avatar_url":"https://github.com/hi5.png","language":"AutoHotkey","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CSV - AutoHotkey library for working with CSV Files\n\nThis CSV library was developed by trueski and Kdoske - the original source can be found here http://www.autohotkey.com/forum/viewtopic.php?p=329126#329126 and https://autohotkey.com/board/topic/51681-csv-library-lib/\n(archived forum links, the code posted there is no longer valid due to errors caused by upgrading the forum software.)\n\nThis version includes bugfixes from:\n\n* http://www.autohotkey.com/forum/viewtopic.php?p=400669#400669 and other(s)\n* http://www.autohotkey.com/board/topic/51681-csv-library-lib/page-4#entry596685\n\nand incorporated in this library are:\n\n* Format4CSV by Rhys - https://autohotkey.com/board/topic/24859-function-convert-string-for-csv-format4csv-beta-1/\n* Delimiter Seperated Values by DerRaphael - https://autohotkey.com/board/topic/30102-how-can-i-parse-a-csv-file-with-multi-line-values/#entry191846\n\n## CSV Functions\n\n* CSV_Load(FileName, CSV_Identifier, Delimiter) ; Load CSV file into memory, must complete first.\n* CSV_TotalRows(CSV_Identifier) ; Return total number of rows\n* CSV_TotalCols(CSV_Identifier) ; Return total number of columns\n* CSV_Delimiter(CSV_Identifier) ; Return the delimiter used\n* CSV_FileName(CSV_Identifier) ; Return the filename\n* CSV_Path(CSV_Identifier) ; Return the path\n* CSV_FileNamePath(CSV_Identifier) ; Return the filename with the full path\n* CSV_Save(FileName, CSV_Identifier, OverWrite?) ; Save CSV file\n* CSV_DeleteRow(CSV_Identifier, RowNumber) ; Delete a row\n* CSV_AddRow(CSV_Identifier, \"Cell1,Cell2...\") ; Add a row\n* CSV_DeleteColumn(CSV_Identifier, ColNumber) ; Delete a column\n* CSV_AddColumn(CSV_Identifier, \"Cell1,Cell2...\") ; Add a column\n* CSV_ModifyCell(CSV_Identifier, NewValue,Row, Col) ; Modify an existing cell\n* CSV_ModifyRow(CSV_Identifier, \"NewValue1,NewValue2...\", RowNumber) ; Modify an existing row\n* CSV_ModifyColumn(CSV_Identifier, \"NewValue1,NewValue2...\", ColNumber)) ; Modify an existing column\n* CSV_Search(CSV_Identifier, SearchText, Instance) ; Search for text within\n* CSV_SearchRow(CSV_Identifier, SearchText, RowNumber, Instance) ; Search for text within a cell within a specific row\n* CSV_SearchColumn(CSV_Identifier, SearchText, ColNumber, Instance) ; Search for text within a cell within a specific column\n* CSV_MatchCell(CSV_Identifier, SearchText, Instance) ; Search for a cell containing exactly the data specified\n* CSV_MatchCellColumn(CSV_Identifier, SearchText, ColNumber, Instance=1) ; Search for a cell containing exactly the data specified in a specific column\n* CSV_MatchCellRow(CSV_Identifier, SearchText, RowNumber, Instance=1) ; Search for a cell containing exactly the data specified in a specific row\n* CSV_MatchRow(CSV_Identifier, \"SearchText1,SearchText2\", Instance) ; Search for a row containing exactly the data specified\n* CSV_MatchCol(CSV_Identifier, \"SearchText1, SearchText2\", Instance) ; Search for a column containing exactly the data specified\n* CSV_ReadCell(CSV_Identifier, Row, Column) ; Read data from the specified cell\n* CSV_ReadRow(CSV_Identifier, RowNumber) ; Read data from the specified row\n* CSV_ReadCol(CSV_Identifier, ColNumber) ; Read data from the specified column\n* CSV_LVLoad(CSV_Identifier, Gui, x, y, w, h, header, Sort?, RowIdentification?, AutoAdjustCol?) ; Load data into a listview in the specified gui window, listviewname variablewill equal \"CSV_Identifier\"\n* CSV_LVSave(FileName, CSV_Identifier, Delimiter, OverWrite?, Gui) ; Save the specified listview as a CSV file, CSV_Identifier is the ListView's associated variable name.\n\n### AutoHotkey forum discussion\n\nhttps://autohotkey.com/boards/viewtopic.php?f=6\u0026t=34853\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhi5%2Fcsv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhi5%2Fcsv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhi5%2Fcsv/lists"}