An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# Annotate

A simple text-based tool for annotating documents in the command line.

demo

## 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
```