Skip to content

vially/seomoz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

seomoz

SEOmoz golang client

Usage

package main

import (
	"fmt"
	"github.com/vially/seomoz"
	"log"
)

func main() {
    client := seomoz.NewEnvClient()
    metrics, err := client.GetURLMetrics(queryURL, seomoz.DefaultCols)
    if err != nil {
        log.Fatalln(err)
    }
    fmt.Printf("Page Authority: %.0f\n", metrics.PageAuthority)
}

Command Line Tool

$ seomoz wikipedia.org
URL: wikipedia.org/
Links: 1064773
Page Authority: 94
Domain Authority: 100

License

The MIT License (MIT)

Releases

No releases published

Packages

No packages published

Languages