6
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CSVファイルをカラフルに表示する

Last updated at Posted at 2018-10-02

#結論
こんな感じでccsvというCUIコマンドを作りました。Linux,windows,(多分MacOSも)版があります。
キャプチャlinux.PNG

#置き場
GitHubに置いてあります。
https://github.com/nak1114/ccsv/releases

#きっかけ
VScodeのRainbow CSVという拡張を見て、CUIでもあったらいいんじゃないかという話を聞いて、Goを久しぶりに使ってみようという目的で作ってみました。

#コード
CSVファイルの操作もカラーで表示するのもLibがあるので組み合わせるだけでできてしまいました。
特に工夫は無いですが、CSVの読み込みは一行毎にすれば大きなファイルで軽くなるのでしょうか。

ccsv.go
package main

import (
  "encoding/csv"
  "flag"
  "fmt"
  "log"
  "os"

  "github.com/fatih/color"
)

//Version is app versioin
var Version = "0.0.1"

var (
  isVersion = flag.Bool("version", false, "Display version")
)

func main() {
  flag.Parse()
  if *isVersion {
    fmt.Println("ccsv Version " + Version)
    os.Exit(0)
  }

  colors := []color.Attribute{color.FgRed,
    color.FgGreen,
    color.FgYellow,
    color.FgBlue,
    color.FgMagenta,
    color.FgCyan,
  }

  fr, err := os.Open(flag.Arg(0))
  if err != nil {
    log.Fatal("Error:", err)
  }
  defer fr.Close()

  r := csv.NewReader(fr)
  rows, err := r.ReadAll()
  if err != nil {
    log.Fatal("Error:", err)
  }

  csize := len(colors)
  for _, cells := range rows {
    size := len(cells) - 1
    for i, value := range cells {
      cc := color.New(colors[i%csize])
      cc.Print(value)
      if i < size {
        cc.Print(",")
      }
    }
    fmt.Println("")
  }
}

6
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?