Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elskow/bfsmazesolver
A BFS maze solver written in python.
https://github.com/elskow/bfsmazesolver
bfs-algorithm desktop-app python
Last synced: 7 days ago
JSON representation
A BFS maze solver written in python.
- Host: GitHub
- URL: https://github.com/elskow/bfsmazesolver
- Owner: elskow
- Created: 2023-11-28T07:33:15.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2023-12-05T14:26:47.000Z (12 months ago)
- Last Synced: 2023-12-05T17:38:08.291Z (12 months ago)
- Topics: bfs-algorithm, desktop-app, python
- Language: Python
- Homepage:
- Size: 1020 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Maze Solver - BFS on Python
A simple maze solver using BFS algorithm with GUI on Python. Made for the course of Artificial Intelligence at State University of Surabaya.
---
## How to run
1. Install Dependencies
```bash
poetry install
```
2. Run shell
```bash
poetry shell
```
3. Install pyqt5
```bash
pip install pyqt5
```
> It's not included in the poetry dependencies because it's not working on poetry shell, so you need to install it manually on venv of poetry shell.
4. Run the program
```bash
python main.py
```
---## Screenshots