Skip to main content

An easy way to simulate and automize go-like programs.

Project description

An easy way to simulate and automize go-like programs.

Installing

To install the library from PyPi, you can just run the following command:

# Linux/macOS
python3 -m pip install -U gogame

# Windows
py -3 -m pip install -U gogame

To install from the development sources, do the following:

$ git clone https://github.com/BlackRaven0405/gogame
$ cd gogame
$ python3 -m pip install -U .

Quick Example

import gogame


class RandomPlayer(gogame.Player):
    def play(self):
        return self.playable_moves()[0]


b = gogame.Board()
p1 = RandomPlayer(name="John")
p2 = RandomPlayer(name="Smith")
b.join(p1)
b.join(p2)
winner = b.run_game()
print(winner)

You can find more examples in the example directory.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gogame-1.0.0.tar.gz (10.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page