Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 462 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 462 Bytes

pyway

Pyway is a simple Python class for simulating Conway's Game of Life

Example:

from pyway import Game

# Instantiate a Game object
C = Game()

# Get random initial conditions on a 100 x 100 grid
C.initial_conditions(100, 100)

# Generate and save an animation using default settings
C.make_animation()

Install

Clone this repository and install a development version using pip:

pip install -e .