Skip to content

davechops7/csv-sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

csv-sample

Example demos showing .csv generation via GO.

After some research, reading and playing around with code I think the GO standard library gives us what we need for CSV Report tasks purpose.

“The standard library is very robust. Consider standard library packages over bulky third-party frameworks” https://medium.com/@KeithAlpichi/gos-standard-library-by-example-encoding-csv-75f098169822

Some alternatives:

csvutil:

  • Based on the Reader and Writer interfaces which are implemented by std Go csv package. Offers best encoding and decoding performance of the 3.

gocsv:

  • Based on the Reader and Writer interfaces which are implemented by std Go csv package. Customisable csv Reader/Writer.

easycsv:

  • Read focused only.

About

Example demos showing .csv generation via GO.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages