You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/python_client_library/README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,13 @@ Before running the example scripts, make sure the following packages are install
12
12
13
13
See the [PyPI netapp-ontap](https://pypi.org/project/netapp-ontap/) package web page for more information.
14
14
15
-
**Note: **
16
-
If you are using ONTAP 9.6 "netapp_ontap" Python client library module, make sure to replace `from netapp_ontap import NetAppRestError` header with `from netapp_ontap.error import NetAppRestError` header.
15
+
**Note:**
17
16
17
+
a) If you are using ONTAP 9.6 "netapp_ontap" Python client library module, make sure to replace `from netapp_ontap import NetAppRestError` header with `from netapp_ontap.error import NetAppRestError` header.
18
+
19
+
b) [utils.py](https://github.com/NetApp/ontap-rest-python/blob/master/examples/python_client_library/utils.py) module in this directory is used by the other example modules in this directory. It is not meant as a stand-alone application. Hence, the utils.py code module needs to be in the same directory structure as of the code executed by the user.
20
+
21
+
For e.g: If user executes list_volumes.py code in a directory structure a/b/c, ensure utils.py code exists in the same directory a/b/c.
0 commit comments