All Projects → hi5 → CSV

hi5 / CSV

Licence: other
CSV - AutoHotkey library for working with CSV Files

Programming Languages

autohotkey
350 projects

Labels

Projects that are alternatives of or similar to CSV

csv2keepassxml
Convert CSV files into KeePass 2 XML files.
Stars: ✭ 31 (-8.82%)
Mutual labels:  csv
csvy
Import and Export CSV Data With a YAML Metadata Header
Stars: ✭ 52 (+52.94%)
Mutual labels:  csv
JsObjExporter
A little JavaScript plugin to generate PDF, XLS, CSV and DOC from JavaScript Object or DOM element only from the frontend!
Stars: ✭ 58 (+70.59%)
Mutual labels:  csv
CSVLint
CSV Lint plug-in for Notepad++ for syntax highlighting, automatic column and datatype detecting, validate csv datasets, change datetime format, decimal separator, count unique values and more. A utility for data cleaning and working with messy data files.
Stars: ✭ 41 (+20.59%)
Mutual labels:  csv
gems
Ruby Football Week 2021, June 11th to June 17th - 7 Days of Ruby (Sports) Gems ++ Best of Ruby Gems Series
Stars: ✭ 76 (+123.53%)
Mutual labels:  csv
opendata
Open data of Cofacts collaborative fact-checking database
Stars: ✭ 35 (+2.94%)
Mutual labels:  csv
DeepECG
Using deep learning to detect Atrial fibrillation
Stars: ✭ 25 (-26.47%)
Mutual labels:  csv
csv2xls
Put together some CSV files into a single Excel file, in different sheets.
Stars: ✭ 14 (-58.82%)
Mutual labels:  csv
cq
Clojure Command-line Data Processor for JSON, YAML, EDN, XML and more
Stars: ✭ 111 (+226.47%)
Mutual labels:  csv
sheet2dict
Simple XLSX and CSV to dictionary converter
Stars: ✭ 206 (+505.88%)
Mutual labels:  csv
pdpcli
PdpCLI is a pandas DataFrame processing CLI tool which enables you to build a pandas pipeline from a configuration file.
Stars: ✭ 15 (-55.88%)
Mutual labels:  csv
NeoCSV
NeoCSV is an elegant and efficient standalone Smalltalk framework to read and write CSV converting to or from Smalltalk objects.
Stars: ✭ 20 (-41.18%)
Mutual labels:  csv
georef-ar-api
API del Servicio de Normalización de Datos Geográficos de Argentina.
Stars: ✭ 102 (+200%)
Mutual labels:  csv
redis-connect-dist
Real-Time Event Streaming & Change Data Capture
Stars: ✭ 21 (-38.24%)
Mutual labels:  csv
simple-search-service
A faceted search engine and content API.
Stars: ✭ 38 (+11.76%)
Mutual labels:  csv
Tensorflow-Wide-Deep-Local-Prediction
This project demonstrates how to run and save predictions locally using exported tensorflow estimator model
Stars: ✭ 28 (-17.65%)
Mutual labels:  csv
ok-file-formats
Decoders for PNG, JPEG, WAV, and a few other file formats
Stars: ✭ 72 (+111.76%)
Mutual labels:  csv
Hyde
Call of Duty XAsset compiler that transforms raw assets into digestible data.
Stars: ✭ 15 (-55.88%)
Mutual labels:  csv
CSV2RDF
Streaming, transforming, SPARQL-based CSV to RDF converter. Apache license.
Stars: ✭ 48 (+41.18%)
Mutual labels:  csv
php-csv-exporter
A fast and tiny PHP library to export data to CSV based on Generator. Export millions of data seamlessly without memory exception.
Stars: ✭ 15 (-55.88%)
Mutual labels:  csv

CSV - AutoHotkey library for working with CSV Files

This 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/ (archived forum links, the code posted there is no longer valid due to errors caused by upgrading the forum software.)

This version includes bugfixes from:

and incorporated in this library are:

CSV Functions

  • CSV_Load(FileName, CSV_Identifier, Delimiter) ; Load CSV file into memory, must complete first.
  • CSV_TotalRows(CSV_Identifier) ; Return total number of rows
  • CSV_TotalCols(CSV_Identifier) ; Return total number of columns
  • CSV_Delimiter(CSV_Identifier) ; Return the delimiter used
  • CSV_FileName(CSV_Identifier) ; Return the filename
  • CSV_Path(CSV_Identifier) ; Return the path
  • CSV_FileNamePath(CSV_Identifier) ; Return the filename with the full path
  • CSV_Save(FileName, CSV_Identifier, OverWrite?) ; Save CSV file
  • CSV_DeleteRow(CSV_Identifier, RowNumber) ; Delete a row
  • CSV_AddRow(CSV_Identifier, "Cell1,Cell2...") ; Add a row
  • CSV_DeleteColumn(CSV_Identifier, ColNumber) ; Delete a column
  • CSV_AddColumn(CSV_Identifier, "Cell1,Cell2...") ; Add a column
  • CSV_ModifyCell(CSV_Identifier, NewValue,Row, Col) ; Modify an existing cell
  • CSV_ModifyRow(CSV_Identifier, "NewValue1,NewValue2...", RowNumber) ; Modify an existing row
  • CSV_ModifyColumn(CSV_Identifier, "NewValue1,NewValue2...", ColNumber)) ; Modify an existing column
  • CSV_Search(CSV_Identifier, SearchText, Instance) ; Search for text within
  • CSV_SearchRow(CSV_Identifier, SearchText, RowNumber, Instance) ; Search for text within a cell within a specific row
  • CSV_SearchColumn(CSV_Identifier, SearchText, ColNumber, Instance) ; Search for text within a cell within a specific column
  • CSV_MatchCell(CSV_Identifier, SearchText, Instance) ; Search for a cell containing exactly the data specified
  • CSV_MatchCellColumn(CSV_Identifier, SearchText, ColNumber, Instance=1) ; Search for a cell containing exactly the data specified in a specific column
  • CSV_MatchCellRow(CSV_Identifier, SearchText, RowNumber, Instance=1) ; Search for a cell containing exactly the data specified in a specific row
  • CSV_MatchRow(CSV_Identifier, "SearchText1,SearchText2", Instance) ; Search for a row containing exactly the data specified
  • CSV_MatchCol(CSV_Identifier, "SearchText1, SearchText2", Instance) ; Search for a column containing exactly the data specified
  • CSV_ReadCell(CSV_Identifier, Row, Column) ; Read data from the specified cell
  • CSV_ReadRow(CSV_Identifier, RowNumber) ; Read data from the specified row
  • CSV_ReadCol(CSV_Identifier, ColNumber) ; Read data from the specified column
  • 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"
  • 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.

AutoHotkey forum discussion

https://autohotkey.com/boards/viewtopic.php?f=6&t=34853

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].