Skip to main content

Implementation of maze-related algorithms

Project description

Mazely

Solved 32x128 maze

PyPI version MIT License Read the Docs GitHub workflow status

An API for solving and generating mazes, written in Python.

Installation

Install mazely with pip:

pip install mazely

Documentation

A library reference can be found here.

Usage examples

Also, see the examples folder.

Load and display a maze

Create an instance of Maze and pass a path to a maze file to load an existing maze. Use the show_grid() method from Utilities to display a grid of the maze.

from mazely import Maze, Utilities

maze = Maze(path="resources/2015apec.maze")
utils = Utilities()
utils.show_grid(maze.grid)

APEC 2015

Solve a maze and display its solution

A solution is always made when you create an instance of Maze. To display the solution, use the show_solution() method from Utilities.

from mazely import Maze, Utilities

maze = Maze(path="resources/2019japan.maze")
utils = Utilities()
utils.show_solution()

Japan 2019

Generate a maze and display its solution

To generate a maze, pass the row and column counts as you create a Maze instance. Refer to the previous section to display its solution.

from mazely import Maze, Utilities

maze = Maze(32, 32)
utils = Utilities()
utils.show_solution()

Solved 32x32 maze

Maze files

The library only supports a single maze format, as specified below.

File format

Each cell is 3 characters wide and 3 characters tall.

+---+
|   |
+---+

To specify the goal cell, replace the center with G.

+---+
| G |
+---+

And replace with S for the start cell.

+---+
| S |
+---+

Here is an example of a 3x3 maze.

+---+---+---+
|           |
+   +---+   +
|     G |   |
+---+---+   +
| S         |
+---+---+---+

Links

Here are a couple links to collections of maze files (format may not be supported):

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

mazely-0.2.0.tar.gz (1.0 MB view details)

Uploaded Source

Built Distribution

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

mazely-0.2.0-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

File details

Details for the file mazely-0.2.0.tar.gz.

File metadata

  • Download URL: mazely-0.2.0.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for mazely-0.2.0.tar.gz
Algorithm Hash digest
SHA256 18c871d8a54a7ec6258c1a6f4ed8cdc91bed9ae0e6f3c3446d18c8ad072cbd4e
MD5 1ebb6018479877e9087b50b3847d618e
BLAKE2b-256 0ed35a9396e6efef7e833c329049a34826978e5a094add6fda585d9eeaa662ef

See more details on using hashes here.

File details

Details for the file mazely-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: mazely-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 12.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for mazely-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a21b1c7310e5bcb5e8cff64a70ae862b4a7057c9a5bcfac268d0d855cc144abc
MD5 379b1f6a71ace0c3b7a12a6b796f379a
BLAKE2b-256 cf56be4b4164032381088987256481ee1047ff1abccdf83ea6901fa4a0952d45

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