# maze_algo **Repository Path**: chen2bull/maze_algo ## Basic Information - **Project Name**: maze_algo - **Description**: 迷宫生成算法的python实现 - **Primary Language**: Python - **License**: AGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-19 - **Last Updated**: 2022-05-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: Algorithm ## README # mazelib ## Usage 1.install numpy first. ```bash sudo pip3 isntall numpy ``` 2.code example ```python from maze_algo.kruskal_gen import KruskalMaze as Maze maze = Maze(7, 9) print(maze) ```