Skip to content

gopherzz/GoPrettyTable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GoPrettyTable

GoPrettyTable that simple golang library for pretty data visualizing like Python library "prettytable"

Import

import "github.com/KYCb2/GoPrettyTable"

TYPES

type Table struct {
 Fields    [][]string // Fields of table
 Delimeter rune       // Column and Row Delimeter symbol of table
}

FUNCTIONS

func NewTable(del rune) (t *Table) 
// Returns New Table Object

METHODS

func (t *Table) AddField(el []string)
// Add Field to Table
func (t *Table) Print()
// Print Pretty Table From Your Data

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages