update_csv
Modify specific cell values in CSV files by specifying row index and column name to update data precisely where needed.
Instructions
Update a specific cell in the CSV file.
Args:
filename: Name of the CSV file to update
row_index: Zero-based index of the row to update
column: Name of the column to update
value: New value for the cell
Returns:
Dictionary with update results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
column | Yes | ||
filename | Yes | ||
row_index | Yes | ||
value | Yes |
Input Schema (JSON Schema)
{
"properties": {
"column": {
"title": "Column",
"type": "string"
},
"filename": {
"title": "Filename",
"type": "string"
},
"row_index": {
"title": "Row Index",
"type": "integer"
},
"value": {
"title": "Value"
}
},
"required": [
"filename",
"row_index",
"column",
"value"
],
"type": "object"
}