Skip to main content

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 :

from simple_game_of_life import Map
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
from random import choice
custom_map = GameOfLife.get_MAP() # custom_map already saved in the json file
game = GameOfLife(custom_map=choice(my_custom_map))
game.start_animation()
# Note you can also import custom_map like that :
# from simple_game_of_life import custom_map 

to implement a pattern :

from simple_game_of_life import GameOfLife, Map
glider = [[0,1,0],
          [0,0,1],
          [1,1,1]]
m = Map(100)
my_map = m.my_pattern(glider)
game = GameOfLife(custom_map=my_map)
game.start_animation()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simple_game_of_life-0.0.4.2.tar.gz (6.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simple_game_of_life-0.0.4.2-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

Details for the file simple_game_of_life-0.0.4.2.tar.gz.

File metadata

  • Download URL: simple_game_of_life-0.0.4.2.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.0

File hashes

Hashes for simple_game_of_life-0.0.4.2.tar.gz
Algorithm Hash digest
SHA256 015109b0395d26c82e479e6b04a23f48534eb27fc8b092056bace492c32e2d22
MD5 44efb014c048784d65263ca798e1a1b0
BLAKE2b-256 db036e783b2f1fe2e0747bc7f496e6171ddb4872304da816c0aa9548244bc3b7

See more details on using hashes here.

File details

Details for the file simple_game_of_life-0.0.4.2-py3-none-any.whl.

File metadata

File hashes

Hashes for simple_game_of_life-0.0.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4f90c4a08eccb5e9b1d6e32224dda8f4f5d969899821ed3be319941e34fb0356
MD5 18d6753fa6325d82faec3587f1a6da57
BLAKE2b-256 6a18c8a573119054ff14ac23d4c7fa7408b4d09da261279edc04bf6b2ec37e54

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page