DroneNavigationGym-RL


NameDroneNavigationGym-RL JSON
Version 1.1.0 PyPI version JSON
download
home_pageNone
SummaryAutonomous Drone Navigation for Surveillance Gym Environment
upload_time2024-06-18 21:35:44
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseMIT License Copyright (c) [2024] [dtungpka] 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 drone navigation gym reinforcement-learning surveillance
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            

# Autonomus Drone Navigation for Surveillance Environment

### Environments
This repository contains the implementation of Gym environment for the drone navigation in surveillance environment by [dtungpka](https://github.com/dtungpka)


>Drone-v0

### Installation
```bash
python3 -m pip install DroneNavigationGym-RL
```

### Usage
```python

import gymnasium as gym
import Autonomus_Drones_Navigation_For_Surveillance

env = gym.make('Drone-v0',drones=2,render_mode='human',size=20,targets=2,obstacles=2,battery=100)
obs, info = env.reset()
while True:
    action = env.action_space.sample()
    obs, reward, terminated, _, info = env.step(action)
    if terminated:
        break

env.close()

```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "DroneNavigationGym-RL",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "drone, navigation, gym, reinforcement-learning, surveillance",
    "author": null,
    "author_email": "dtungpka <duongdoanbach@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/7d/45/2f5c43f6b03568031c84e0a798f10f1404fb1500ace0af8c947f4b178aa5/dronenavigationgym_rl-1.1.0.tar.gz",
    "platform": null,
    "description": "\r\n\r\n# Autonomus Drone Navigation for Surveillance Environment\r\n\r\n### Environments\r\nThis repository contains the implementation of Gym environment for the drone navigation in surveillance environment by [dtungpka](https://github.com/dtungpka)\r\n\r\n\r\n>Drone-v0\r\n\r\n### Installation\r\n```bash\r\npython3 -m pip install DroneNavigationGym-RL\r\n```\r\n\r\n### Usage\r\n```python\r\n\r\nimport gymnasium as gym\r\nimport Autonomus_Drones_Navigation_For_Surveillance\r\n\r\nenv = gym.make('Drone-v0',drones=2,render_mode='human',size=20,targets=2,obstacles=2,battery=100)\r\nobs, info = env.reset()\r\nwhile True:\r\n    action = env.action_space.sample()\r\n    obs, reward, terminated, _, info = env.step(action)\r\n    if terminated:\r\n        break\r\n\r\nenv.close()\r\n\r\n```\r\n\r\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) [2024] [dtungpka]  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": "Autonomous Drone Navigation for Surveillance Gym Environment",
    "version": "1.1.0",
    "project_urls": {
        "Homepage": "https://github.com/dtungpka/Autonomous_Drones_Navigation_For_Surveillance"
    },
    "split_keywords": [
        "drone",
        " navigation",
        " gym",
        " reinforcement-learning",
        " surveillance"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d452f5c43f6b03568031c84e0a798f10f1404fb1500ace0af8c947f4b178aa5",
                "md5": "1898a97398fd8c861a3f02a2029ef434",
                "sha256": "1136e5f257b6bb601d7b98a6fbdaf0407f3b4a076af24ac248846515022939ef"
            },
            "downloads": -1,
            "filename": "dronenavigationgym_rl-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1898a97398fd8c861a3f02a2029ef434",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 7318,
            "upload_time": "2024-06-18T21:35:44",
            "upload_time_iso_8601": "2024-06-18T21:35:44.357353Z",
            "url": "https://files.pythonhosted.org/packages/7d/45/2f5c43f6b03568031c84e0a798f10f1404fb1500ace0af8c947f4b178aa5/dronenavigationgym_rl-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-18 21:35:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dtungpka",
    "github_project": "Autonomous_Drones_Navigation_For_Surveillance",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "dronenavigationgym-rl"
}
        
Elapsed time: 0.60692s