https://github.com/zietzm/annotate
CLI tool for text annotation
https://github.com/zietzm/annotate
Last synced: 3 months ago
JSON representation
CLI tool for text annotation
- Host: GitHub
- URL: https://github.com/zietzm/annotate
- Owner: zietzm
- Created: 2024-06-29T15:59:08.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-29T17:21:06.000Z (11 months ago)
- Last Synced: 2025-01-13T01:34:37.162Z (4 months ago)
- Language: Go
- Homepage:
- Size: 1.05 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Annotate
A simple text-based tool for annotating documents in the command line.
## Usage
To annotate a CSV file called `to_annotate.csv`, with a column called `text-column-name` run
```bash
annotate -i to_annotate.csv -o annotated.csv -t text-column-name -a annotation
```This will open the terminal user interface allowing you to annotate each row of the file.
The resulting annotations will be written as a CSV file to `annotated.csv`, with the title of each item being the first column in the original file, the second column being the text column, and the third column being the manual annotation.## Installation
To install using go, run
```bash
go install github.com/zietzm/annotate@latest
```