Giter Site home page Giter Site logo

animechan-go's Introduction

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:


animechan-go's People

Contributors

joao-1 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.