Skip to main content

A Python package for simulation of the MasterMind game.

Project description

pymastermind

Description

pymastermind is a package designed to make it easy to emulate the MasterMind game in Python. It also includes a functioning, text-based implementation of MasterMind! This lets you play games against your computer or even have your computer play itself.

Installation

The source code for pymastermind is hosted here, at https://github.com/thomasbreydo/pymastermind. You can install matermind through PyPI, with pip:

pip install pymastermind

Requirements

pymastermind requires the following libraries:

  • pandas, used by the SelfGame object
  • tqdm, used to display progress bars when finding next guess. Note: only some algorithms support progress bars. See "Algorithms" below

Documentation

Read The Docs

Example Usage

Play

Play a game against your computer, or have your computer play itself, by running pymastermind.main() and following text-based instructions.

>>> import pymastermind as pmm
>>> pmm.main() # initiate the game; print instructions & wait for inputs

Using Definitions

Several useful classes are defined in the pymastermind module.

Code

Code objects are list instances designed to store a MasterMind codes. You can compare two codes by using the .compare() method. What's comparing?

>>> import pymastermind as pmm
>>> secret_code = pmm.Code(['a', 'b', 'c', 'd'])
>>> guess = pmm.Code(['b', 'c', 'j', 'd'])
>>> len(secret_code) == len(guess)
True
>>> secret_code.compare(guess)
(1, 2)

Note: code objects must be of the same length to comapre.

Game

Game objects are used to immitate gameplay.

>>> import pymastermind as pmm
>>> my_game = pmm.Game() # default: slots == 4, colors == ['a', 'b', 'c', 'd', 'e', 'f']
>>> secret_code = pmm.Code(['e', 'a', 'f', 'f'])
>>> my_game.guess # always the same for given setup; see Wikipedia article
['a', 'a', 'b', 'b']
>>> blacks_and_whites = secret_code.compare(my_game.guess)
>>> blacks_and_whites
(1, 0)
>>> my_game.new_guess(response, algorithm='minmax') # new guess using minmax algorithm (see below)
>>> my_game.guess
['a', 'c', 'c', 'd']
>>> my_game.back() # go back one turn
>>> my_game.guess
['a', 'a', 'b', 'b']

Read the documentation for an in-depth look at all the attributes and methods of a pymastermind.Game.

Algorithms

A new guess can be generated using several different algorithms. Currently, pymastermind has two algorithms implemented:

  • random (default algorithm)
    • Set the guess to a random secret code possibility
    • No progress bar support yet
  • minmax
    • Set the guess to the guess that has the highest min-max score of all guesses. Read more here.
    • Supports progress bars

SelfGame

SelfGame is a subclass of Game that is used to "play" games with specified algorithms and obtain a pandas DataFrame full of information about the games played.

>>> import pymastermind as pmm
>>> my_self_game = pmm.SelfGame() # same defaults i.e. slots == 4, colors == ['a', 'b', 'c', 'd', 'e', 'f']
>>> df = my_self_game.play() # default: games == 10, algorithm == 'random'
>>> type(df)
<class 'pandas.core.frame.DataFrame'>
>>> df.loc['Game 3', 'Turn 2'] # example query
Time                   0 days 00:00:00.000610
Start Possibilities                        23
End Possibilities                           4
Name: Game 3, dtype: object

To-Do

  • Add a .rst docs file for read the docs support

License

MIT

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

pymastermind-1.0.tar.gz (7.5 kB view hashes)

Uploaded Source

Supported by

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