yacgol
is a pure Python implementation of Conway's Game of Life using Tkinter.
The game is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. One interacts with the Game of Life by creating an initial configuration and observing how it evolves, or, for advanced players, by creating patterns with particular properties.
At each step in time, the following transitions occur:
- Any live cell with fewer than two live neighbors dies, as if by under population.
- Any live cell with two or three live neighbors lives on to the next generation.
- Any live cell with more than three live neighbors dies, as if by overpopulation.
- Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.
- Conway's Game of Life Wikipedia page
$ pip install yacgol
$ yacgol -h
Most interactions with yacgol
will take place within the Tkinter UI. So
fire up yacgol
and check it out!
First, install development packages:
$ pip install -r requirements-dev.txt
$ nose2
$ flake8
$ nose2 --with-coverage