Name | NEMO-osticket JSON |
Version |
1.5.4
JSON |
| download |
home_page | None |
Summary | osTicket plugin for NEMO linking tickets to a specific tool |
upload_time | 2024-11-20 20:43:14 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | MIT License Copyright (c) 2024 Atlantis Labs LLC 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 |
nemo
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
from NEMO_osticket.tests.test_settings import DATABASES
# NEMO-osticket
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/NEMO-osticket?label=python)](https://www.python.org/downloads/release/python-3110/)
[![PyPI](https://img.shields.io/pypi/v/nemo-osticket?label=pypi%20version)](https://pypi.org/project/NEMO-osticket/)
[![Changelog](https://img.shields.io/gitlab/v/release/nemo-community/atlantis-labs/nemo-osticket?include_prereleases&label=changelog)](https://gitlab.com/nemo-community/atlantis-labs/nemo-osticket/-/releases)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://gitlab.com/nemo-community/atlantis-labs/nemo-osticket/blob/main/LICENSE)
osTicket plugin for NEMO linking tickets to a specific tool
## Installation
```bash
python -m install nemo-osticket
```
### In settings.py:
1. Add `NEMO_osticket` to `INSTALLED_APPS`:
```python
INSTALLED_APPS = [
'...',
'NEMO_osticket', # This needs to be before NEMO
'...',
'NEMO',
]
```
2. Add `osticket` database information:
```python
DATABASES = {
'default': {'...'},
"osticket": {
"ENGINE": "mysql.connector.django",
'NAME': '<db_name>', # usually 'osticket'
'USER': '<db_user>', # usually 'osticket'
'PASSWORD': '<db_password>',
'HOST':'<db_host>',
'PORT':'<db_port>',
}
}
```
3. Add an osticket API config dictionary:
```python
OSTICKET_SERVICE = {
"available": True,
"url": "https://myosticketservice.com",
'keyword_arguments': {
'timeout': 5, # optional
'headers': {"X-API-Key": "<api_key>"}
},
}
```
## Usage
Go to Administration -> Customization to configure this plugin and how to match Tool with Tickets from OsTicket
# Tests
To run the tests:
```bash
python runtests.py
```
Raw data
{
"_id": null,
"home_page": null,
"name": "NEMO-osticket",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "NEMO",
"author": null,
"author_email": "Atlantis Labs LLC <atlantis@atlantislabs.io>",
"download_url": null,
"platform": null,
"description": "from NEMO_osticket.tests.test_settings import DATABASES\n\n# NEMO-osticket\n\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/NEMO-osticket?label=python)](https://www.python.org/downloads/release/python-3110/)\n[![PyPI](https://img.shields.io/pypi/v/nemo-osticket?label=pypi%20version)](https://pypi.org/project/NEMO-osticket/)\n[![Changelog](https://img.shields.io/gitlab/v/release/nemo-community/atlantis-labs/nemo-osticket?include_prereleases&label=changelog)](https://gitlab.com/nemo-community/atlantis-labs/nemo-osticket/-/releases)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://gitlab.com/nemo-community/atlantis-labs/nemo-osticket/blob/main/LICENSE)\n\nosTicket plugin for NEMO linking tickets to a specific tool\n\n## Installation\n\n```bash\npython -m install nemo-osticket\n```\n\n### In settings.py:\n\n1. Add `NEMO_osticket` to `INSTALLED_APPS`:\n\n```python\nINSTALLED_APPS = [\n '...',\n 'NEMO_osticket', # This needs to be before NEMO\n '...',\n 'NEMO',\n]\n```\n\n2. Add `osticket` database information:\n```python\nDATABASES = {\n 'default': {'...'},\n \"osticket\": {\n \"ENGINE\": \"mysql.connector.django\",\n 'NAME': '<db_name>', # usually 'osticket'\n 'USER': '<db_user>', # usually 'osticket'\n 'PASSWORD': '<db_password>',\n 'HOST':'<db_host>',\n 'PORT':'<db_port>',\n }\n}\n```\n\n3. Add an osticket API config dictionary:\n```python\nOSTICKET_SERVICE = {\n \"available\": True,\n \"url\": \"https://myosticketservice.com\",\n 'keyword_arguments': {\n 'timeout': 5, # optional\n 'headers': {\"X-API-Key\": \"<api_key>\"}\n },\n}\n```\n\n## Usage\n\nGo to Administration -> Customization to configure this plugin and how to match Tool with Tickets from OsTicket\n\n# Tests\n\nTo run the tests:\n```bash\npython runtests.py\n```\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2024 Atlantis Labs LLC 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": "osTicket plugin for NEMO linking tickets to a specific tool",
"version": "1.5.4",
"project_urls": {
"CI": "https://gitlab.com/nemo-community/atlantis-labs/nemo-osticket/-/pipelines",
"Changelog": "https://gitlab.com/nemo-community/atlantis-labs/nemo-osticket/-/releases",
"Homepage": "https://gitlab.com/nemo-community/atlantis-labs/nemo-osticket",
"Issues": "https://gitlab.com/nemo-community/atlantis-labs/nemo-osticket/-/issues"
},
"split_keywords": [
"nemo"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "5b35b7ef31783d1bd5f658bec12ccb61706a86ff3c9754f1e6a76e76d91b5ba0",
"md5": "a643d5539fb2c3b1177c85a225b1d6cd",
"sha256": "c9159d780cb218c4f4c8116424ff697b00e70cde74a2dcad4d667fc9f9a62ffa"
},
"downloads": -1,
"filename": "NEMO_osticket-1.5.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a643d5539fb2c3b1177c85a225b1d6cd",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 26541,
"upload_time": "2024-11-20T20:43:14",
"upload_time_iso_8601": "2024-11-20T20:43:14.549072Z",
"url": "https://files.pythonhosted.org/packages/5b/35/b7ef31783d1bd5f658bec12ccb61706a86ff3c9754f1e6a76e76d91b5ba0/NEMO_osticket-1.5.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-20 20:43:14",
"github": false,
"gitlab": true,
"bitbucket": false,
"codeberg": false,
"gitlab_user": "nemo-community",
"gitlab_project": "atlantis-labs",
"lcname": "nemo-osticket"
}