cisco-support


Namecisco-support JSON
Version 0.5.0 PyPI version JSON
download
home_page
SummaryPython library to interact with Cisco Support APIs
upload_time2024-02-04 16:35:05
maintainer
docs_urlNone
author
requires_python
licenseMIT License Copyright (c) 2021 Dennis Roth 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 cisco
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Cisco Support APIs for Python

[![published](https://static.production.devnetcloud.com/codeexchange/assets/images/devnet-published.svg)](https://developer.cisco.com/codeexchange/github/repo/rothdennis/cisco_support)
[![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/rothdennis/cisco_support/blob/main/LICENSE)
[![GitHub stars](https://img.shields.io/github/stars/rothdennis/cisco_support)](https://github.com/rothdennis/cisco_support/stargazers)
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/rothdennis/cisco_support)

Python implementation of the [Cisco Support API](https://developer.cisco.com/docs/support-apis/#!introduction-to-cisco-support-apis)

## Implemented APIs

- [ ] Automated Software Distribution
- [x] Bug
- [x] Case
- [x] EoX
- [x] Product Information
- [x] Serial Number to Information
- [x] Service Order Return (RMA)
- [x] Software Suggestion

## Installation

```bash
pip install cisco_support
```

## Usage

### Automated Software Distribution

> TO BE IMPLEMENTED

### Bug

```python
from cisco_support import Bug

bug = Bug(client_id='abc', client_secret='def')
```

### Case

```python
from cisco_support import Case

case = Case(client_id='abc', client_secret='def')
```

### EoX
```python
from cisco_support import EoX

eox = EoX(client_id='abc', client_secret='def')
```

### Product Information
```python
from cisco_support import ProductInformation

product_information = ProductInformation(client_id='abc', client_secret='def')
```

### Serial Number to Information
```python
from cisco_support import SerialNumberInformation

serial_number_information = SerialNumberInformation(client_id='abc', client_secret='def')
```

### Service Order Return (RMA)
```python
from cisco_support import ServiceOrderReturn

service_order_return = ServiceOrderReturn(client_id='abc', client_secret='def')
```

### Software Suggestion
```python
from cisco_support import SoftwareSuggestion

software_suggestion = SoftwareSuggestion(client_id='abc', client_secret='def')
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "cisco-support",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "cisco",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/b1/f2/a2efa617c561882fa9d7b8950eb0f6937c831cceeb090272eb3d9a020882/cisco_support-0.5.0.tar.gz",
    "platform": null,
    "description": "# Cisco Support APIs for Python\n\n[![published](https://static.production.devnetcloud.com/codeexchange/assets/images/devnet-published.svg)](https://developer.cisco.com/codeexchange/github/repo/rothdennis/cisco_support)\n[![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/rothdennis/cisco_support/blob/main/LICENSE)\n[![GitHub stars](https://img.shields.io/github/stars/rothdennis/cisco_support)](https://github.com/rothdennis/cisco_support/stargazers)\n![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/rothdennis/cisco_support)\n\nPython implementation of the [Cisco Support API](https://developer.cisco.com/docs/support-apis/#!introduction-to-cisco-support-apis)\n\n## Implemented APIs\n\n- [ ] Automated Software Distribution\n- [x] Bug\n- [x] Case\n- [x] EoX\n- [x] Product Information\n- [x] Serial Number to Information\n- [x] Service Order Return (RMA)\n- [x] Software Suggestion\n\n## Installation\n\n```bash\npip install cisco_support\n```\n\n## Usage\n\n### Automated Software Distribution\n\n> TO BE IMPLEMENTED\n\n### Bug\n\n```python\nfrom cisco_support import Bug\n\nbug = Bug(client_id='abc', client_secret='def')\n```\n\n### Case\n\n```python\nfrom cisco_support import Case\n\ncase = Case(client_id='abc', client_secret='def')\n```\n\n### EoX\n```python\nfrom cisco_support import EoX\n\neox = EoX(client_id='abc', client_secret='def')\n```\n\n### Product Information\n```python\nfrom cisco_support import ProductInformation\n\nproduct_information = ProductInformation(client_id='abc', client_secret='def')\n```\n\n### Serial Number to Information\n```python\nfrom cisco_support import SerialNumberInformation\n\nserial_number_information = SerialNumberInformation(client_id='abc', client_secret='def')\n```\n\n### Service Order Return (RMA)\n```python\nfrom cisco_support import ServiceOrderReturn\n\nservice_order_return = ServiceOrderReturn(client_id='abc', client_secret='def')\n```\n\n### Software Suggestion\n```python\nfrom cisco_support import SoftwareSuggestion\n\nsoftware_suggestion = SoftwareSuggestion(client_id='abc', client_secret='def')\n```\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2021 Dennis Roth  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": "Python library to interact with Cisco Support APIs",
    "version": "0.5.0",
    "project_urls": {
        "Documentation": "https://readthedocs.org",
        "Homepage": "https://github.com/rothdennis/cisco_support",
        "Issues": "https://github.com/rothdennis/cisco_support/issues",
        "Repository": "https://github.com/rothdennis/cisco_support.git"
    },
    "split_keywords": [
        "cisco"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d8111e019f55f141ed2ff9d5ebbcfe50fce31715a289d865506d7112607803e",
                "md5": "3e6d0da92c946b1672bd6475baae8998",
                "sha256": "0b0c19a2d55b3d50acd6c1230b613dc9af84f5b50678b3e7be33db44d2086cbb"
            },
            "downloads": -1,
            "filename": "cisco_support-0.5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3e6d0da92c946b1672bd6475baae8998",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 9452,
            "upload_time": "2024-02-04T16:35:04",
            "upload_time_iso_8601": "2024-02-04T16:35:04.281140Z",
            "url": "https://files.pythonhosted.org/packages/4d/81/11e019f55f141ed2ff9d5ebbcfe50fce31715a289d865506d7112607803e/cisco_support-0.5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1f2a2efa617c561882fa9d7b8950eb0f6937c831cceeb090272eb3d9a020882",
                "md5": "b6ffaf14076c28f36ce4732c3af4e623",
                "sha256": "cba6f18f3dcdd43cad37a48727d22e4d67403f86f598eb5c405d3184ce8f65bc"
            },
            "downloads": -1,
            "filename": "cisco_support-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b6ffaf14076c28f36ce4732c3af4e623",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 6647,
            "upload_time": "2024-02-04T16:35:05",
            "upload_time_iso_8601": "2024-02-04T16:35:05.756276Z",
            "url": "https://files.pythonhosted.org/packages/b1/f2/a2efa617c561882fa9d7b8950eb0f6937c831cceeb090272eb3d9a020882/cisco_support-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-04 16:35:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rothdennis",
    "github_project": "cisco_support",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "cisco-support"
}
        
Elapsed time: 0.17982s