Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 943 Bytes

README.md

File metadata and controls

41 lines (31 loc) · 943 Bytes

Game Of Life

A python implementation of Conway's Game of Life using the curses module with a small evolutionary twist.

$ gol --help
  usage: gol [-h] [-f] [-x] [-t] [-r refresh_rate] [-n initial_points]

    optional arguments:
    -h, --help         show this help message and exit
    -f, --fullscreen   display fullscreen grid
    -x, --no_hud       don't display HUD
    -t, --traditional  traditional mode
    -r refresh_rate    set the refresh rate
    -n initial_points  set the number of initial points

Installation

With pip:

$ sudo pip install gol

From github:

$ git clone https://github.com/iiSeymour/game-of-life
$ cd game-of-life
$ sudo python setup.py install

Screenshot

Game Of Life