This part of code is to access openstack API using python. What import "Client" do?
#!/usr/bin/python
#import sys
from suds.client import Client
# Credentials
username = 'user05'
password = 'A99tYmkRV'
.
.
.
.
I wonder what Client is, and how to setup python to access Openstack based cloud? How connectivity proceeds? How can I setup "Client"? Regards