Files
python-dracclient/doc/source/usage.rst
Julia Kreger 4ce0cdb44e Clarify module name
Change-Id: I76b2dc05aadb1773a87efaee64bc1184a1246521
(cherry picked from commit 94576895f7)
2020-09-28 17:29:07 -04:00

17 lines
533 B
ReStructuredText

Usage
=====
Create a client object by providing the connection details of the DRAC card::
import dracclient
client = dracclient.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 = dracclient.client.DRACClient('1.2.3.4', 'username', 's3cr3t',
port=443, path='/wsman',
protocol='https')