Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kovart/seoterminal

🔬 SEO Keyword Explorer written in Go
https://github.com/kovart/seoterminal

application golang keyword seo terminal

Last synced: about 1 month ago
JSON representation

🔬 SEO Keyword Explorer written in Go

Awesome Lists containing this project

README

        

# Seoterminal

This app helps to work with very large CSV-files of **SEO keywords**.
It's fully written on GoLang so it gives the maximum of possible performance.
The user interface is terminal-based so you won't feel any lags or freezing.

> It was my first GoLang experience. The project is currently not maintained.


Demonstration

## Features
- Search by keyword
- Grouping by lemmatized words
- Various types of sorting
- Cut groups into separeted files
- Expand nested groups as deep as you want
- History with the ability to restore states

## How to run
To create a new project:
```sh
$ ./tool -p -f
```
To load existing project:
```sh
$ ./tool -p
```

## Hotkeys
* + : Save cluster into separeted file
* - : Save cluster into separeted file in `removed` folder
* Ctrl + A : Reset root cluster
* Ctrl + K : Set the current cluster as root
* Ctrl + D : Remove the current cluster as root
* Ctrl + S : Save the current cluster as root
* Alt + H and Esc : Open and Close history
* Tab and Shift + Tab : Nivagation

## How to build
The first you need to install all dependencies:
```sh
$ go get .
```
Then build the runnable file:
```sh
# For windows:
$ go build -o tool.exe
# For Linux/MacOS:
$ go build -o tool
```

## Dependencies
* [tview](https://github.com/rivo/tview)
* [csvutil](https://github.com/jszwec/csvutil)