https://github.com/rothdennis/cisco_support
Python implementation of the Cisco Support API
https://github.com/rothdennis/cisco_support
automation case cisco eox python
Last synced: 10 months ago
JSON representation
Python implementation of the Cisco Support API
- Host: GitHub
- URL: https://github.com/rothdennis/cisco_support
- Owner: rothdennis
- License: mit
- Created: 2021-08-26T13:52:28.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-02-22T18:55:10.000Z (over 2 years ago)
- Last Synced: 2024-04-24T12:26:53.042Z (about 2 years ago)
- Topics: automation, case, cisco, eox, python
- Language: Python
- Homepage:
- Size: 60.5 KB
- Stars: 7
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cisco Support APIs for Python
[](https://developer.cisco.com/codeexchange/github/repo/rothdennis/cisco_support)
[](https://github.com/rothdennis/cisco_support/blob/main/LICENSE)
[](https://github.com/rothdennis/cisco_support/stargazers)

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')
```