| Name | NEMO-osticket JSON |
| Version |
1.7.2
JSON |
| download |
| home_page | None |
| Summary | osTicket plugin for NEMO linking tickets to a specific tool |
| upload_time | 2025-10-18 20:19:54 |
| 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
[](https://github.com/psf/black)
[](https://www.python.org/downloads/release/python-3110/)
[](https://pypi.org/project/NEMO-osticket/)
[](https://gitlab.com/nemo-community/atlantis-labs/nemo-osticket/-/releases)
[](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
Add a Landing page choice with url `/osticket/tickets` to have a direct link to the search and generic submit a ticket pages
# 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": "https://files.pythonhosted.org/packages/c4/75/0faeaf6f6eec78c755aceba0fe670c56d0cefd35101717a69a557fa92923/nemo_osticket-1.7.2.tar.gz",
"platform": null,
"description": "from NEMO_osticket.tests.test_settings import DATABASES\n\n# NEMO-osticket\n\n[](https://github.com/psf/black)\n[](https://www.python.org/downloads/release/python-3110/)\n[](https://pypi.org/project/NEMO-osticket/)\n[](https://gitlab.com/nemo-community/atlantis-labs/nemo-osticket/-/releases)\n[](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\nAdd a Landing page choice with url `/osticket/tickets` to have a direct link to the search and generic submit a ticket pages\n\n# Tests\n\nTo run the tests:\n```bash\npython runtests.py\n```\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2024 Atlantis Labs LLC\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n ",
"summary": "osTicket plugin for NEMO linking tickets to a specific tool",
"version": "1.7.2",
"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": null,
"digests": {
"blake2b_256": "668669d5afae02c3df3bef39bd7f4cf3d818bb5a13ae4ac99fa345d130ab8ceb",
"md5": "a51aedd93b4aa3721c7ad2df15e9d244",
"sha256": "8d2760a68a42004d325a4952a35c0917e0e60eb7d8b593f068261b9bc1d81f85"
},
"downloads": -1,
"filename": "nemo_osticket-1.7.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a51aedd93b4aa3721c7ad2df15e9d244",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 31034,
"upload_time": "2025-10-18T20:19:53",
"upload_time_iso_8601": "2025-10-18T20:19:53.990408Z",
"url": "https://files.pythonhosted.org/packages/66/86/69d5afae02c3df3bef39bd7f4cf3d818bb5a13ae4ac99fa345d130ab8ceb/nemo_osticket-1.7.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4750faeaf6f6eec78c755aceba0fe670c56d0cefd35101717a69a557fa92923",
"md5": "394bc8ba6021f19dd45a545d888dda43",
"sha256": "b50ad98c7f77a08b61fcbb140dcf10a3c38a4386ffa96f1310938262272b3906"
},
"downloads": -1,
"filename": "nemo_osticket-1.7.2.tar.gz",
"has_sig": false,
"md5_digest": "394bc8ba6021f19dd45a545d888dda43",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 24907,
"upload_time": "2025-10-18T20:19:54",
"upload_time_iso_8601": "2025-10-18T20:19:54.829066Z",
"url": "https://files.pythonhosted.org/packages/c4/75/0faeaf6f6eec78c755aceba0fe670c56d0cefd35101717a69a557fa92923/nemo_osticket-1.7.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-18 20:19:54",
"github": false,
"gitlab": true,
"bitbucket": false,
"codeberg": false,
"gitlab_user": "nemo-community",
"gitlab_project": "atlantis-labs",
"lcname": "nemo-osticket"
}