AStared


NameAStared JSON
Version 0.1.1 PyPI version JSON
download
home_page
SummaryAStar python implementatino
upload_time2023-04-21 02:49:53
maintainer
docs_urlNone
author
requires_python>=3.11
licenseMIT License Copyright (c) 2023 ThunderTecke Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords python astar algorithm pathfinding
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # AStared
This package provide the A* algorithm for any type of coordinates.
You can find more information [here](https://en.wikipedia.org/wiki/A*_search_algorithm).

## Installation
```python3.11 -m pip install AStared```

## Usage
You can find examples [here](https://github.com/ThunderTecke/AStared/tree/main/examples).

In global lines, you must define 2 functions to interact with your coordinates. And then pass it to the function `AStar`

These function are :
- Heuristic estimation to the end node
- Neighbours giver, that return all valid neightbours that can be reached with only 1 step

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "AStared",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": "ThunderTecke <thunder.tecke@gmail.com>",
    "keywords": "Python,AStar,Algorithm,Pathfinding",
    "author": "",
    "author_email": "ThunderTecke <thunder.tecke@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/68/65/3d02225f47542a52c08186ce070d88d1905fda2e10e29576c758772eeb83/AStared-0.1.1.tar.gz",
    "platform": null,
    "description": "# AStared\nThis package provide the A* algorithm for any type of coordinates.\nYou can find more information [here](https://en.wikipedia.org/wiki/A*_search_algorithm).\n\n## Installation\n```python3.11 -m pip install AStared```\n\n## Usage\nYou can find examples [here](https://github.com/ThunderTecke/AStared/tree/main/examples).\n\nIn global lines, you must define 2 functions to interact with your coordinates. And then pass it to the function `AStar`\n\nThese function are :\n- Heuristic estimation to the end node\n- Neighbours giver, that return all valid neightbours that can be reached with only 1 step\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 ThunderTecke  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "AStar python implementatino",
    "version": "0.1.1",
    "split_keywords": [
        "python",
        "astar",
        "algorithm",
        "pathfinding"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b64c15244f5bce6b317bb0b98db2043580d5e4088085c7e10564c7a46078850c",
                "md5": "271c7fe99a9d0df16f6f2ecda97e7f1f",
                "sha256": "e7b5da83be26fb44f21b0b5f7bcf898868f1ff753cb7d45c02880fefa0779d25"
            },
            "downloads": -1,
            "filename": "AStared-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "271c7fe99a9d0df16f6f2ecda97e7f1f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 4822,
            "upload_time": "2023-04-21T02:49:50",
            "upload_time_iso_8601": "2023-04-21T02:49:50.373902Z",
            "url": "https://files.pythonhosted.org/packages/b6/4c/15244f5bce6b317bb0b98db2043580d5e4088085c7e10564c7a46078850c/AStared-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68653d02225f47542a52c08186ce070d88d1905fda2e10e29576c758772eeb83",
                "md5": "05bd8e31ed86489a008a72e8cab49282",
                "sha256": "ebfd1d58301d703d58ea3350a1bbc8a4f88309280fa70fba773b1c2ee08f86bd"
            },
            "downloads": -1,
            "filename": "AStared-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "05bd8e31ed86489a008a72e8cab49282",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 3974,
            "upload_time": "2023-04-21T02:49:53",
            "upload_time_iso_8601": "2023-04-21T02:49:53.700519Z",
            "url": "https://files.pythonhosted.org/packages/68/65/3d02225f47542a52c08186ce070d88d1905fda2e10e29576c758772eeb83/AStared-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-21 02:49:53",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "astared"
}
        
Elapsed time: 0.06109s