Metadata-Version: 2.1
Name: pathsolver
Version: 1.0.1
Summary: A package to solve maze problem using A-star Algorithm.
Home-page: https://github.com/toshihiroryuu/
Author: Athul Mathew Konoor
Author-email: athulmathewkonoor@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Usage

To Install this package. Use :
```
  pip install pathsolver
```
To launch the application :
```
  from pathsolver import solve

  maze = [[0, 0, 0, 0, 0, 0, 0, 0],
        [0, 0, 0, 0, 0, 0, 0, 0],
        [0, 0, 0, 0, 0, 0, 0, 0],
        [0, 0, 1, 1, 1, 1, 1, 0],
        [0, 1, 0, 0, 0, 0, 0, 0],
        [0, 0, 1, 0, 0, 0, 1, 0],
        [0, 0, 0, 0, 0, 0, 0, 0],
        [0, 0, 0, 0, 0, 0, 0, 0]]

  start = (5, 3)
  end = (2, 2)

  output, path = solve(maze, start, end)

```
<dl>Credits: Nicholas-Swift (https://gist.github.com/Nicholas-Swift/003e1932ef2804bebef2710527008f44)</dl>
<dl>Visit our GitHub Repository for more information: https://github.com/toshihiroryuu/PyPi--Package---pathsolver</dl>


