Conway's game of life in python
Project description
Game Of Life
Simple way to play Conway's game of life in python.
You can import your own map as json file name "save.json", using get_MAP methode.
All you custom maps (in the save.json file) are available in the list custom_maps.
Other custom maps are available such as: my_map_1 and my_map_2, created using Map class :
m = Map(100)
my_map_1 = m.mini_random_MAP(25, 20)
my_map_2 = m.kind(kind="line 10")
NOTE : Two artificials borders are created for each map,
The first one is visible while playing, it's in black.
The second one is white (invisible) just after the black border, no cell can born here
Installation
Run the following command to install:
$ pip install simple-game-of-life
Usage
for a random map
from simple_game_of_life import GameOfLife
game = GameOfLife(50)
game.start_animation()
for a custom map
from simple_game_of_life import GameOfLife, maps
from random import choice
game = GameOfLife(custom_map=choice(maps))
game.start_animation()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file simple_game_of_life-0.0.4.tar.gz.
File metadata
- Download URL: simple_game_of_life-0.0.4.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f600104c639b079673882bfa161ccb26c442407489f794b3d0e3e8ba1fdad1a
|
|
| MD5 |
42f51a68bebbbc382a2c446cb6f44ec9
|
|
| BLAKE2b-256 |
3b7e861d470742f3799c18169d35e00a1d03f9546995630abfa60dd6dc23a2e2
|
File details
Details for the file simple_game_of_life-0.0.4-py3-none-any.whl.
File metadata
- Download URL: simple_game_of_life-0.0.4-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a31ab9a4731ac7e4be5f845785ad5ec510a2cab43c0392a40752fa2124272866
|
|
| MD5 |
e4bb513022d6d2553006549947a676c1
|
|
| BLAKE2b-256 |
f01e7f874be1ebb03f506e61ecec16ae2010c13a34e9573850866bbdfb6296eb
|