Skip to content

tqwewe/go-akinator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go Akinator

Play with the Akinator in your Golang program.

Installation

go get github.com/Acidic9/go-akinator

Usage

Import go-akinator

import "github.com/Acidic9/go-akinator"

Create akinator client

c, err := akinator.NewClient()
if err != nil {
    log.Fatal(err)
}

Loop over each response

for r := range c.Next() {
	if r.Status != akinator.StatusOk {
		log.Fatal("Bad Status:", r.Status)
	}

	if r.Guessed {
		// Akinator made a guess.
		// ...
		fmt.Println("I guess", r.CharacterName, "is your character.")
		continue
	}

	// Akinator asked a question.
	// ...
	// For the next response to be called,
	// you must answer the akinator's question with r.AnswerYes(), r.AnswerNo(), etc.
}

Contributing

The official guide Contributing to Open Source on GitHub explains in detail how you can contribute to a project.

A quick explination:

  1. Fork it
  2. Create your feature branch (git checkout -b new-feature)
  3. Commit your changes (git commit -am 'Some cool reflection')
  4. Push to the branch (git push origin new-feature)
  5. Create new Pull Request

About

A Golang package to play the Akinator.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages