bellande-node-importance


Namebellande-node-importance JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryRobots Limit
upload_time2024-11-25 18:12:17
maintainerNone
docs_urlNone
authorRonaldsonBellande
requires_python>=3.0
licenseNone
keywords package setuptools
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 📦 Bellande Node Importance

## 🧙 Organization Website
- [![Organization Website](https://img.shields.io/badge/Explore%20Our-Website-0099cc?style=for-the-badge)](https://robotics-sensors.github.io)

## 🧙 Organization Github
- [![Organization Github ](https://img.shields.io/badge/Explore%20Our-Github-0099cc?style=for-the-badge)](https://github.com/Robotics-Sensors)

# Author, Creator and Maintainer
- **Ronaldson Bellande**

## Bellande Node Importance Executables & Models
- [![Bellande Node Importance Models & Executables ](https://img.shields.io/badge/Bellande%20Node%20Importance-Models/Executables-0099cc?style=for-the-badge)](https://github.com/Artificial-Intelligence-Computer-Vision/bellande_node_importance_models_executables)

# API HTTP Usability (BELLANDE FORMAT)
```
# Copyright (C) 2024 Bellande Robotics Sensors Research Innovation Center, Ronaldson Bellande
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.
# GNU General Public License v3.0 or later

url: https://bellande-robotics-sensors-research-innovation-center.org

endpoint_path:
    bellande_node_importance: /api/Bellande_Node_Importance/node_importance

Bellande_Framework_Access_Key: bellande_web_api_opensource
```

# API HTTP Usability (JSON FORMAT)
```
{
  "license": [
    "Copyright (C) 2024 Bellande Robotics Sensors Research Innovation Center, Ronaldson Bellande",
    "This program is free software: you can redistribute it and/or modify",
    "it under the terms of the GNU General Public License as published by",
    "the Free Software Foundation, either version 3 of the License, or",
    "(at your option) any later version.",
    "",
    "This program is distributed in the hope that it will be useful,",
    "but WITHOUT ANY WARRANTY; without even the implied warranty of",
    "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the",
    "GNU General Public License for more details.",
    "",
    "You should have received a copy of the GNU General Public License",
    "along with this program.  If not, see <https://www.gnu.org/licenses/>.",
    "GNU General Public License v3.0 or later"
  ],
  "url": "https://bellande-robotics-sensors-research-innovation-center.org",
  "endpoint_path": {
    "bellande_node_importance": "/api/Bellande_Node_Importance/node_importance"
  },
  "Bellande_Framework_Access_Key": "bellande_web_api_opensource"
}
```

# API Payload Example
```
{
    "node": {
        "coords": [5.0, 5.0, 5.0],
        "segment": 1
    },
    "nodes": [
        {"coords": [4.0, 4.0, 4.0], "segment": 1},
        {"coords": [6.0, 6.0, 6.0], "segment": 1}
    ],
    "important_nodes": {
        "1": [{"coords": [4.0, 4.0, 4.0], "segment": 1}],
        "2": [{"coords": [15.0, 15.0, 15.0], "segment": 2}]
    },
    "adjacent_segments": {
        "1": [2],
        "2": [1]
    },
    "grid_steps": [10.0, 10.0, 10.0],
    "min_segment_coverage": 0.5,
    "auth": {
        "authorization_key": "bellande_web_api_opensource"
    }
}
```

# 🧙 Website Bellande API Testing 
- [![Website API Testing](https://img.shields.io/badge/Bellande%20API-Testing-0099cc?style=for-the-badge)](https://bellande-robotics-sensors-research-innovation-center.org/api/bellande_node_importance_experiment)
  
# Quick Bellande API Testing
```
curl -X 'POST' \
  'https://bellande-robotics-sensors-research-innovation-center.org/api/Bellande_Node_Importance/node_importance' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
    "node": {
        "coords": [5.0, 5.0, 5.0],
        "segment": 1
    },
    "nodes": [
        {"coords": [4.0, 4.0, 4.0], "segment": 1},
        {"coords": [6.0, 6.0, 6.0], "segment": 1}
    ],
    "important_nodes": {
        "1": [{"coords": [4.0, 4.0, 4.0], "segment": 1}],
        "2": [{"coords": [15.0, 15.0, 15.0], "segment": 2}]
    },
    "adjacent_segments": {
        "1": [2],
        "2": [1]
    },
    "grid_steps": [10.0, 10.0, 10.0],
    "min_segment_coverage": 0.5,
    "auth": {
        "authorization_key": "bellande_web_api_opensource"
    }
}'
```

## Website PYPI
- https://pypi.org/project/bellande_node_importance

### Installation
- `$ pip install bellande_node_importance`

### Usage 
```
bellande_node_importance_api \
  --node '{"coords": [5.0, 5.0, 5.0], "segment": 1}' \
  --nodes '[{"coords": [4.0, 4.0, 4.0], "segment": 1}, {"coords": [6.0, 6.0, 6.0], "segment": 1}]' \
  --important-nodes '{"1": [{"coords": [4.0, 4.0, 4.0], "segment": 1}], "2": [{"coords": [15.0, 15.0, 15.0], "segment": 2}]}' \
  --adjacent-segments '{"1": [2], "2": [1]}' \
  --grid-steps '[10.0, 10.0, 10.0]' \
  --min-segment-coverage 0.5
```

### Upgrade (if not upgraded)
- `$ pip install --upgrade bellande_node_importance`

```
Name: bellande_node_importance
Summary: Determines node importance in n-dimensional space based on coverage and connectivity
Home-page: github.com/RonaldsonBellande/bellande_node_importance
Author: Ronaldson Bellande
Author-email: ronaldsonbellande@gmail.com
License: GNU General Public License v3.0
```

## Published Paper
```
Coming Soon
```

## Preprint
- [![Preprint](https://img.shields.io/badge/Preprint-Bellande%20Node%20Importance-0099cc?style=for-the-badge)](https://dapp.orvium.io/deposits/6650ccb8afb407dc8beb0ff2/view)

## License
This Algorithm or Models is distributed under the [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/), see [LICENSE](https://github.com/RonaldsonBellande/bellande_node_importance/blob/main/LICENSE) and [NOTICE](https://github.com/RonaldsonBellande/bellande_node_importance/blob/main/LICENSE) for more information.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "bellande-node-importance",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.0",
    "maintainer_email": null,
    "keywords": "package, setuptools",
    "author": "RonaldsonBellande",
    "author_email": "ronaldsonbellande@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/ab/9b/8af78165d07dfaa26cf3c96533970a3d4532dfead26cc418c72cbe18161c/bellande_node_importance-0.1.0.tar.gz",
    "platform": null,
    "description": "# \ud83d\udce6 Bellande Node Importance\n\n## \ud83e\uddd9 Organization Website\n- [![Organization Website](https://img.shields.io/badge/Explore%20Our-Website-0099cc?style=for-the-badge)](https://robotics-sensors.github.io)\n\n## \ud83e\uddd9 Organization Github\n- [![Organization Github ](https://img.shields.io/badge/Explore%20Our-Github-0099cc?style=for-the-badge)](https://github.com/Robotics-Sensors)\n\n# Author, Creator and Maintainer\n- **Ronaldson Bellande**\n\n## Bellande Node Importance Executables & Models\n- [![Bellande Node Importance Models & Executables ](https://img.shields.io/badge/Bellande%20Node%20Importance-Models/Executables-0099cc?style=for-the-badge)](https://github.com/Artificial-Intelligence-Computer-Vision/bellande_node_importance_models_executables)\n\n# API HTTP Usability (BELLANDE FORMAT)\n```\n# Copyright (C) 2024 Bellande Robotics Sensors Research Innovation Center, Ronaldson Bellande\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n# \n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <https://www.gnu.org/licenses/>.\n# GNU General Public License v3.0 or later\n\nurl: https://bellande-robotics-sensors-research-innovation-center.org\n\nendpoint_path:\n    bellande_node_importance: /api/Bellande_Node_Importance/node_importance\n\nBellande_Framework_Access_Key: bellande_web_api_opensource\n```\n\n# API HTTP Usability (JSON FORMAT)\n```\n{\n  \"license\": [\n    \"Copyright (C) 2024 Bellande Robotics Sensors Research Innovation Center, Ronaldson Bellande\",\n    \"This program is free software: you can redistribute it and/or modify\",\n    \"it under the terms of the GNU General Public License as published by\",\n    \"the Free Software Foundation, either version 3 of the License, or\",\n    \"(at your option) any later version.\",\n    \"\",\n    \"This program is distributed in the hope that it will be useful,\",\n    \"but WITHOUT ANY WARRANTY; without even the implied warranty of\",\n    \"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\",\n    \"GNU General Public License for more details.\",\n    \"\",\n    \"You should have received a copy of the GNU General Public License\",\n    \"along with this program.  If not, see <https://www.gnu.org/licenses/>.\",\n    \"GNU General Public License v3.0 or later\"\n  ],\n  \"url\": \"https://bellande-robotics-sensors-research-innovation-center.org\",\n  \"endpoint_path\": {\n    \"bellande_node_importance\": \"/api/Bellande_Node_Importance/node_importance\"\n  },\n  \"Bellande_Framework_Access_Key\": \"bellande_web_api_opensource\"\n}\n```\n\n# API Payload Example\n```\n{\n    \"node\": {\n        \"coords\": [5.0, 5.0, 5.0],\n        \"segment\": 1\n    },\n    \"nodes\": [\n        {\"coords\": [4.0, 4.0, 4.0], \"segment\": 1},\n        {\"coords\": [6.0, 6.0, 6.0], \"segment\": 1}\n    ],\n    \"important_nodes\": {\n        \"1\": [{\"coords\": [4.0, 4.0, 4.0], \"segment\": 1}],\n        \"2\": [{\"coords\": [15.0, 15.0, 15.0], \"segment\": 2}]\n    },\n    \"adjacent_segments\": {\n        \"1\": [2],\n        \"2\": [1]\n    },\n    \"grid_steps\": [10.0, 10.0, 10.0],\n    \"min_segment_coverage\": 0.5,\n    \"auth\": {\n        \"authorization_key\": \"bellande_web_api_opensource\"\n    }\n}\n```\n\n# \ud83e\uddd9 Website Bellande API Testing \n- [![Website API Testing](https://img.shields.io/badge/Bellande%20API-Testing-0099cc?style=for-the-badge)](https://bellande-robotics-sensors-research-innovation-center.org/api/bellande_node_importance_experiment)\n  \n# Quick Bellande API Testing\n```\ncurl -X 'POST' \\\n  'https://bellande-robotics-sensors-research-innovation-center.org/api/Bellande_Node_Importance/node_importance' \\\n  -H 'accept: application/json' \\\n  -H 'Content-Type: application/json' \\\n  -d '{\n    \"node\": {\n        \"coords\": [5.0, 5.0, 5.0],\n        \"segment\": 1\n    },\n    \"nodes\": [\n        {\"coords\": [4.0, 4.0, 4.0], \"segment\": 1},\n        {\"coords\": [6.0, 6.0, 6.0], \"segment\": 1}\n    ],\n    \"important_nodes\": {\n        \"1\": [{\"coords\": [4.0, 4.0, 4.0], \"segment\": 1}],\n        \"2\": [{\"coords\": [15.0, 15.0, 15.0], \"segment\": 2}]\n    },\n    \"adjacent_segments\": {\n        \"1\": [2],\n        \"2\": [1]\n    },\n    \"grid_steps\": [10.0, 10.0, 10.0],\n    \"min_segment_coverage\": 0.5,\n    \"auth\": {\n        \"authorization_key\": \"bellande_web_api_opensource\"\n    }\n}'\n```\n\n## Website PYPI\n- https://pypi.org/project/bellande_node_importance\n\n### Installation\n- `$ pip install bellande_node_importance`\n\n### Usage \n```\nbellande_node_importance_api \\\n  --node '{\"coords\": [5.0, 5.0, 5.0], \"segment\": 1}' \\\n  --nodes '[{\"coords\": [4.0, 4.0, 4.0], \"segment\": 1}, {\"coords\": [6.0, 6.0, 6.0], \"segment\": 1}]' \\\n  --important-nodes '{\"1\": [{\"coords\": [4.0, 4.0, 4.0], \"segment\": 1}], \"2\": [{\"coords\": [15.0, 15.0, 15.0], \"segment\": 2}]}' \\\n  --adjacent-segments '{\"1\": [2], \"2\": [1]}' \\\n  --grid-steps '[10.0, 10.0, 10.0]' \\\n  --min-segment-coverage 0.5\n```\n\n### Upgrade (if not upgraded)\n- `$ pip install --upgrade bellande_node_importance`\n\n```\nName: bellande_node_importance\nSummary: Determines node importance in n-dimensional space based on coverage and connectivity\nHome-page: github.com/RonaldsonBellande/bellande_node_importance\nAuthor: Ronaldson Bellande\nAuthor-email: ronaldsonbellande@gmail.com\nLicense: GNU General Public License v3.0\n```\n\n## Published Paper\n```\nComing Soon\n```\n\n## Preprint\n- [![Preprint](https://img.shields.io/badge/Preprint-Bellande%20Node%20Importance-0099cc?style=for-the-badge)](https://dapp.orvium.io/deposits/6650ccb8afb407dc8beb0ff2/view)\n\n## License\nThis Algorithm or Models is distributed under the [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/), see [LICENSE](https://github.com/RonaldsonBellande/bellande_node_importance/blob/main/LICENSE) and [NOTICE](https://github.com/RonaldsonBellande/bellande_node_importance/blob/main/LICENSE) for more information.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Robots Limit",
    "version": "0.1.0",
    "project_urls": {
        "Home": "https://github.com/Robotics-Sensors/bellande_node_importance",
        "Homepage": "https://github.com/Robotics-Sensors/bellande_node_importance",
        "documentation": "https://github.com/Robotics-Sensors/bellande_node_importance",
        "repository": "https://github.com/Robotics-Sensors/bellande_node_importance"
    },
    "split_keywords": [
        "package",
        " setuptools"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab9b8af78165d07dfaa26cf3c96533970a3d4532dfead26cc418c72cbe18161c",
                "md5": "8cb0e5aa3fc073dc91c1438cee89ab23",
                "sha256": "ab12782e1e658293eceb5974a757c4ff08760f57c1355f94a7b858a76ec2a29a"
            },
            "downloads": -1,
            "filename": "bellande_node_importance-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8cb0e5aa3fc073dc91c1438cee89ab23",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.0",
            "size": 6590,
            "upload_time": "2024-11-25T18:12:17",
            "upload_time_iso_8601": "2024-11-25T18:12:17.831710Z",
            "url": "https://files.pythonhosted.org/packages/ab/9b/8af78165d07dfaa26cf3c96533970a3d4532dfead26cc418c72cbe18161c/bellande_node_importance-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-25 18:12:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Robotics-Sensors",
    "github_project": "bellande_node_importance",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "bellande-node-importance"
}
        
Elapsed time: 0.37415s