Joao-1 / Animechan-go

A Golang wrapper for the Animechan API.

Home Page:https://animechan.xyz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Animechan + Golang

Animechan, as stated on its own website, is a free RESTful API that provides quality quotes. For greater ease of use of this API in multiple projects, this wrapper has been written.

Installation

To install, use go get:

go get github.com/Joao-1/animechan-go

Examples

  • Initialization
	client := &http.Client{}
	animechan := Animechan{Client: client, BaseURL: "https://animechan.app/api/"}

  • Random endpoint

Random quote

	res, err := animechan.Random().Only()
	if err != nil { panic(err) }

	fmt.Printf("Anime: %q, Character: %q, Quote: %q", res.Anime, res.Character, res.Quote)

Random quote from a specific character

	res, err := animechan.Random().Character("Madara Uchiha")
	if err != nil { panic(err) }

	fmt.Printf("Anime: %q, Character: %q, Quote: %q", res.Anime, res.Character, res.Quote)

Random quote from a specific anime

	res, err := animechan.Random().Anime("Naruto")
	if err != nil { panic(err) }

	fmt.Printf("Anime: %q, Character: %q, Quote: %q", res.Anime, res.Character, res.Quote)

  • Quotes endpoint

10 random quotes

	res, err := animechan.Quotes().Only()
	if err != nil { panic(err) }

	fmt.Printf("all quotes: %v", res)

10 random quotes from the anime "Naruto"

	page := 3
	res, err := animechan.Quotes().Anime("Naruto", &page)
	if err != nil { panic(err) }

	fmt.Printf("all quotes: %v", res)

10 random quotes from the character "Madara Uchiha"

	page := 3
	res, err := animechan.Quotes().Character("Madara Uchiha", &page)
	if err != nil { panic(err) }

	fmt.Printf("all quotes: %v", res)

If you want to support me in any way:


About

A Golang wrapper for the Animechan API.

https://animechan.xyz


Languages

Language:Go 100.0%