https://github.com/hamolicious/a-star-path-finding-algorithm
A* Path Finding algorithm written in Python using PyGame
https://github.com/hamolicious/a-star-path-finding-algorithm
astar-algorithm astar-pathfinding pathfinding pygame python python38 visualization
Last synced: 10 months ago
JSON representation
A* Path Finding algorithm written in Python using PyGame
- Host: GitHub
- URL: https://github.com/hamolicious/a-star-path-finding-algorithm
- Owner: hamolicious
- License: apache-2.0
- Created: 2019-10-24T05:31:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-08-14T23:04:12.000Z (over 3 years ago)
- Last Synced: 2025-01-07T05:26:14.058Z (12 months ago)
- Topics: astar-algorithm, astar-pathfinding, pathfinding, pygame, python, python38, visualization
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A-Star-Path-Finding-Algorithm
A* Path Finding algorithm written in Python using PyGame
A great explanation and pseudocode can be found here:
```
https://medium.com/@nicholas.w.swift/easy-a-star-pathfinding-7e6689c7f7b2
```
Required
Python 3.8
PyGame 2.0.0.dev6
To use this script use the following commands:
```
pip install pygame
git clone https://github.com/hamolicious/A-Path-Finding-Algorithm/
cd A-Path-Finding-Algorithm
python main.py
```
If you do not want to install any packages, you can also use repl.it to run PyGame scripts!
Please create issues to tell me what you like/don't like about this project.
If I missed anything please create an issue too!
- Hamolicious