File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ This project contains a python client for interacting with the SolarWinds Orion
5
5
## Install
6
6
7
7
```
8
- pip install orionsdk-python
8
+ pip install orionsdk
9
9
```
10
10
11
11
## Usage
12
12
13
13
```
14
14
import orionsdk
15
15
16
- swis = swisclient .SwisClient("server", "username", "password")
16
+ swis = orionsdk .SwisClient("server", "username", "password")
17
17
18
18
aliases = swis.invoke('Metadata.Entity', 'GetAliases', 'SELECT B.Caption FROM Orion.Nodes B')
19
19
Original file line number Diff line number Diff line change 15
15
from .swisclient import SwisClient
16
16
17
17
18
- __version__ = "0.0.1 "
18
+ __version__ = "0.0.2 "
Original file line number Diff line number Diff line change 2
2
# This flag says that the code is written to work on both Python 2 and Python
3
3
# 3. If at all possible, it is good practice to do this. If you cannot, you
4
4
# will need to generate wheels for each Python version that you support.
5
- universal =1
5
+ universal =1
6
+
7
+ [metadata]
8
+ description-file = README.md
Original file line number Diff line number Diff line change 10
10
11
11
setup (
12
12
name = "orionsdk" ,
13
- version = "0.0.1 " , # Update also in __init__ ;
13
+ version = "0.0.2 " , # Update also in __init__ ;
14
14
description = "Python API for the SolarWinds Orion SDK" ,
15
15
long_description = "Python client for interacting with the SolarWinds Orion API" ,
16
16
author = "SolarWinds" ,
You can’t perform that action at this time.
0 commit comments