Skip to content

Commit

Permalink
Updated readme for latest SDK release with 9.1.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
nalinkanwar committed Jul 13, 2021
1 parent ab116c6 commit 6d9560f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
21 changes: 12 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,25 @@ This repository also includes tools to build PAPI bindings yourself for a large

| Cluster Version | Install Instruction |
|-----------------------|-----------------------------|
| OneFS 9.0.0 and later | `pip install isi_sdk_9_0_0` |
| OneFS 8.2.2 and later | `pip install isi_sdk_8_2_2` |
| OneFS 8.2.1 and later | `pip install isi_sdk_8_2_1` |
| OneFS 8.2.0 and later | `pip install isi_sdk_8_2_0` |
| OneFS 8.1.1 and later | `pip install isi_sdk_8_1_1` |
| OneFS 8.1.0 and later | `pip install isi_sdk_8_1_0` |
| OneFS 8.0.1 and later | `pip install isi_sdk_8_0_1` |
| OneFS 8.0 and later | `pip install isi_sdk_8_0` |
| OneFS 7.2 and later | `pip install isi_sdk_7_2` |
| OneFS 9.1.0 | `pip install isi_sdk_9_1_0` |
| OneFS 9.0.0 | `pip install isi_sdk_9_0_0` |
| OneFS 8.2.2 | `pip install isi_sdk_8_2_2` |
| OneFS 8.2.1 | `pip install isi_sdk_8_2_1` |
| OneFS 8.2.0 | `pip install isi_sdk_8_2_0` |
| OneFS 8.1.1 | `pip install isi_sdk_8_1_1` |
| OneFS 8.1.0 | `pip install isi_sdk_8_1_0` |
| OneFS 8.0.1 | `pip install isi_sdk_8_0_1` |
| OneFS 8.0 | `pip install isi_sdk_8_0` |
| OneFS 7.2 | `pip install isi_sdk_7_2` |

Installation will default to using binary distribution wheel (i.e. bdist). Source distributions (i.e. sdist) are also available on pip beginning with v0.1.6 and can be installed with `pip install --no-binary :all: <pkg name>`

### Basic Usage

See the generated packages on PyPI for example code:

[isi\_sdk\_9\_1\_0](https://pypi.org/project/isi-sdk-9-1-0)

[isi\_sdk\_9\_0\_0](https://pypi.org/project/isi-sdk-9-0-0)

[isi\_sdk\_8\_2\_2](https://pypi.org/project/isi-sdk-8-2-2)
Expand Down
2 changes: 1 addition & 1 deletion readme.pypi.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ except ApiException as e:
print "Exception when calling ProtocolsApi->list_nfs_exports: %s" % e
```

There are more examples of coding to the Python PAPI bindings in the [tests](https://github.com/Isilon/isilon_sdk/tree/master/tests) subdirectory of the repo. The tests currently run against a generic `isi_sdk` import which is how the bindings library is named by default if you build your own bindings. If you want to run the tests against one of the libraries you've downloaded from the prebuilt releases page, you should change the `import isi_sdk` lines to `import isi_sdk_7_2` or `import isi_sdk_9_0_0` depending on which one you downloaded.
There are more examples of coding to the Python PAPI bindings in the [tests](https://github.com/Isilon/isilon_sdk/tree/master/tests) subdirectory of the repo. The tests currently run against a generic `isi_sdk` import which is how the bindings library is named by default if you build your own bindings. If you want to run the tests against one of the libraries you've downloaded from the prebuilt releases page, you should change the `import isi_sdk` lines to `import isi_sdk_7_2` or corresponding package depending on which one you downloaded. Look at https://github.com/Isilon/isilon_sdk for SDK version to OneFS version mapping.

## More info
See the Github repo for more information:
Expand Down

0 comments on commit 6d9560f

Please sign in to comment.