Categorygithub.com/rslhdyt/sheetdb-go
repositorypackage
0.0.0-20240116152438-8d6de6b41ad1
Repository: https://github.com/rslhdyt/sheetdb-go.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

SheetDB GO Client

The Unoficial SheetDB client written in go

Documentation

For the API documentation, check SheetDB API Docs.

Installation

Install sheetDB go with

go get -u github.com/rslhdyt/sheetdb-go

Import using

import (
    "github.com/rslhdyt/sheetdb-go"
    "github.com/rslhdyt/sheetdb-go/client"
)

Usage

Create a client

package main

import (
    "github.com/rslhdyt/sheetdb-go"
    "github.com/rslhdyt/sheetdb-go/client"
)

func main() {
    ...

    // Basic setup
    sheetDB := client.New(sheetDBUsername, sheetDBPassword, sheetDBDocumentId)

    // Set params
    getContentParams := sheetdb.GetContentParams{}

    contents, err := sheetDB.Read.GetContent(&getContentParams)

    ...
}

Examples

For more examples, please check example directory.

Todo

  • Read
  • Search
  • Create
  • Update
  • Delete
  • Unit Test