Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ajhenri/game-of-life
A implementation of Conway's Game of Life in Python, using Qt/PySide2.
https://github.com/ajhenri/game-of-life
Last synced: about 1 month ago
JSON representation
A implementation of Conway's Game of Life in Python, using Qt/PySide2.
- Host: GitHub
- URL: https://github.com/ajhenri/game-of-life
- Owner: ajhenri
- License: mit
- Created: 2020-10-12T02:31:05.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-20T22:54:42.000Z (about 4 years ago)
- Last Synced: 2024-10-21T19:34:58.475Z (3 months ago)
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Game of Life
This is an implementation of John Conway's [Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) in Python, using Qt/PySide2.
![Demo](https://user-images.githubusercontent.com/7053830/95794569-38b68900-0cb6-11eb-8db9-744fd761e3ed.png "Demo")
## Requirements
Python3
pipenv
Qt
PySide2 Dependencies - See [Getting Started](https://doc.qt.io/qtforpython/gettingstarted.html)## Setup & Build
1. Install the above dependencies.
2. Clone the project and activate the virtual environment.
`git clone https://github.com/ajhenri/game-of-life.git`
`cd game-of-life`
`pipenv shell`3. Install pip packages.
`pipenv install`
4. Run the application.
`python3 app.py`