CSV utility library for Go
Go to file
Mirko Di 823796c914 Fixed empty element being added at the beginning of arrays in CSVToMapMulti() 2023-10-10 19:21:44 +02:00
LICENSE Initial commit 2023-10-08 12:48:50 +00:00
README.md Update README.md 2023-10-08 13:14:05 +00:00
csvutils.go Fixed empty element being added at the beginning of arrays in CSVToMapMulti() 2023-10-10 19:21:44 +02:00
go.mod Made mirk0dex/logs dep direct 2023-10-10 19:04:39 +02:00
go.sum Added sauce 2023-10-08 14:49:27 +02:00

README.md

csvutils

Go Reference

CSV utility library for Go.

Installation

  1. Run go get git.mirkodi.eu/mirk0dex/csvutils in your terminal emulator of choice, inside the directory your Go source code is;

  2. add the following to your imports:

    csvutils "git.mirkodi.eu/mirk0dex/csvutils"

    .

    So, for instance, if the top of your source file looked like this:

        import (
            "fmt"
        )
    

    it would now look like this:

    import (
        "fmt"
    
        csvutils "git.mirkodi.eu/mirk0dex/csvutils"
    )
    

    .