An open API service indexing awesome lists of open source software.

https://github.com/lcwheeler/pyway

Pyway is a simple Python package for simulating Conway's Game of Life
https://github.com/lcwheeler/pyway

Last synced: 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# pyway

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

Example:

```python
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()

```
![](docs/cogl1000g10s.gif)

## Install

Clone this repository and install a development version using `pip`:
```
pip install -e .
```