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: README.rst
+43Lines changed: 43 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,49 @@ Bugs and feature requests about this library should have a `GitHub issue <https:
72
72
73
73
Issues with the Softlayer API itself should be addressed by opening a ticket.
74
74
75
+
76
+
Examples
77
+
--------
78
+
79
+
A curated list of examples on how to use this library can be found at `softlayer.github.io <https://softlayer.github.io/python/>`_
80
+
81
+
Debugging
82
+
---------
83
+
To get the exact API call that this library makes, you can do the following.
84
+
85
+
For the CLI, just use the -vvv option. If you are using the REST endpoint, this will print out a curl command that you can use, if using XML, this will print the minimal python code to make the request without the softlayer library.
86
+
87
+
.. code-block:: bash
88
+
$ slcli -vvv vs list
89
+
90
+
91
+
If you are using the library directly in python, you can do something like this.
0 commit comments