Files
python-dracclient/doc/source/usage.rst
Imre Farkas 2bffe8d161 Improve docs
Adding maxdepth and avoiding duplicating titles.

Change-Id: Iea36b58de05b5e113f7db7e5358b5b3b912a0d8d
2016-04-05 13:58:31 +02:00

16 lines
515 B
ReStructuredText

Usage
=====
Create a client object by providing the connection details of the DRAC card::
client = wsmanclient.client.DRACClient('1.2.3.4', 'username', 's3cr3t')
.. note::
By default it will use port 443, '/wsman' as path and https protocol.
You can override the default port, path and protocol::
client = wsmanclient.client.DRACClient('1.2.3.4', 'username', 's3cr3t',
port=443, path='/wsman',
protocol='https')