Skip to content

JohnCoene/go-sharedcount

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Go Report Card

sharedcount

Go interface to the SharedCount API.

Docs

Documentation is on Godoc.

Examples

API key available for free on the website. Set yourself up with a key then call methods to get data.

package main

import (
	"fmt"
	"go-sharedcount/sharedcount"
)

func main() {

	key := &sharedcount.APIKey{Key: "myKeyGoesHere"} // setup

        // Get API usage
	quota := key.GetURL("https://golang.org")
	fmt.Println(quota)
}

Releases

No releases published

Packages

No packages published

Languages