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
- Host: GitHub
- URL: https://github.com/lcwheeler/pyway
- Owner: lcwheeler
- License: unlicense
- Created: 2018-04-21T16:41:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-03T16:03:53.000Z (about 6 years ago)
- Last Synced: 2025-02-08T06:12:42.011Z (4 months ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 1.82 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()```
## Install
Clone this repository and install a development version using `pip`:
```
pip install -e .
```