Python wrapper for the Iridium Walletd JSON RPC API.
Refer to the python API documentation for help with all of the methods.
Import the IridiumClient class and create a new instance of it:
from iridium_client import IridiumClient
iridium = IridiumClient("localhost", 14007)
Or if your iridium_walletd
is running on localhost
with the default port of 14007
, there is no need to pass in any arguments, there are default values:
from iridium_client import IridiumClient
iridium = IridiumClient()