Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.23 KB

README.md

File metadata and controls

38 lines (30 loc) · 1.23 KB

MarjaPussi

Python implementation of MarjaPussi, mostly following the rules from Wurzel e. V., exactly following the rules on marjapussi.de.

This package is used by the backend of marjapussi.de.

Installation

Pip

python -m pip install git+https://github.com/SamuelLess/marjapussi.git

Installation inside docker containers will not work with the slim tag due to missing git support.

Usage

Import

from marjapussi.game import MarjaPussi

game = MarjaPussi(['Name1', 'Name2', 'Name3', 'Name4'])

Keyword Arguments

  • log = [True | False | 'DEBUG'): sets printlevel for game.logger.
  • fancy = [True | False]: enable color output using ANSI escape sequences
  • override_rules: dict overriding entries in MarjaPussi.DEFAULT_RULES

Example Game Loop

while not game.phase == "DONE":
    legal_actions = game.legal_actions()
    #choosing an action
    action = random.choice(legal_actions)
    #returns True at success
    game.act_action(action)

Contributing

You are more than welcome to send pull requests or simply talk to me if you think something is wrong or could be done more pythonic.