Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.
/ jikan-go Public archive
forked from darenliang/jikan-go

Unofficial Jikan API bindings for Golang

Notifications You must be signed in to change notification settings

tritonmedia/jikan-go

 
 

Repository files navigation

Jikan Go

These bindings are currently are not stable and will most likely encounter errors, I will hopefully update these bindings to be more stable.

These Golang API bindings are for Jikan's REST API v3.

Almost all of the Jikan's API can be accessed through these bindings except the API's metadata reference.

To install: go get github.com/tritonmedia/jikan-go

To import: import "github.com/tritonmedia/jikan-go" and use as jikan

Sample usage:

package main

import (
	"fmt"
	"github.com/tritonmedia/jikan-go"
)

func main() {
	anime, _ := jikan.GetAnimeInfo(1)
	fmt.Println(anime.Title)
}
Output:
Cowboy Bebop

About

Unofficial Jikan API bindings for Golang

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%