About
This package is part of the Isilon SDK. It includes language bindings for easier programmatic access to the OneFS API for cluster configuration (on your cluster this is the REST API made up of all the URIs underneath https://[cluster]:8080/platform/*, also called the “Platform API” or PAPI”).
Installation
pip install isi_sdk_8_1_0
Example program
Here’s an example of using the Python PAPI bindings to retrieve a list of NFS exports from your cluster:
import isi_sdk_8_1_0
from isi_sdk_8_1_0.rest import ApiException
from pprint import pprint
import urllib3
urllib3.disable_warnings()
# configure username and password
isi_sdk_8_1_0.configuration.username = "YOUR_USERNAME"
isi_sdk_8_1_0.configuration.password = "YOUR_PASSWORD"
isi_sdk_8_1_0.configuration.verify_ssl = False
# configure host
host = "https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP_ADDRESS:8080"
api_client = isi_sdk_8_1_0.ApiClient(host)
protocols_api = isi_sdk_8_1_0.ProtocolsApi(api_client)
# get all exports
sort = "description"
limit = 50
dir = "ASC"
try:
api_response = protocols_api.list_nfs_exports(sort=sort, limit=limit, dir=dir)
pprint(api_response)
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_8_0 depending on which one you downloaded.
More info
See the Github repo for more information: https://github.com/isilon/isilon_sdk
Release files for isi-sdk-8-1-0 0.1.11
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| isi_sdk_8_1_0-0.1.11.tar.gz | 845.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| isi_sdk_8_1_0-0.1.11-py2.py3-none-any.whl | Python 2, Python 3 | none | any | Details |
Total release size: 3.5 MB
Release files / isi_sdk_8_1_0-0.1.11.tar.gz
| Download URL | isi_sdk_8_1_0-0.1.11.tar.gz |
|---|---|
| Size | 845.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2f8dfcc1fd10b9bcc8d90e61de7a58963c8640763b1c19180dc404de2becf22e
|
|
BLAKE2b-256 checksum How to use checksums |
7b8de4d05145f3c5e49e5f112d7f20da368c0a017887d998f598cc13eac96749
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / isi_sdk_8_1_0-0.1.11-py2.py3-none-any.whl
| Download URL | isi_sdk_8_1_0-0.1.11-py2.py3-none-any.whl |
|---|---|
| Size | 2.6 MB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
a745c9cdb77e6fc6a910a2c1295cbb8add2322a67a3665be83be8ac32b3ae794
|
|
BLAKE2b-256 checksum How to use checksums |
d5819c06ce4bccd411f5b608926d44e032694accdfcebad40f0bbcd83f292998
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |