suds.client 并导入客户端什么是 "import client"

suds.client and import client what is "import client"

这部分代码是使用 python 访问 openstack API。 import "Client" 做什么?

#!/usr/bin/python

#import sys

from suds.client import Client

# Credentials
username = 'user05'
password = 'A99tYmkRV'
.
.
.
.

我想知道客户端是什么,如何设置 python 以访问基于 Openstack 的云?连通性如何进行? 如何设置 "Client"? 此致

在客户端-服务器技术中,客户端是向服务器请求一些service/resource的实体。服务器是服务于 request/resource 的实体。客户端要发出请求,必须指定服务器地址以及资源标识符(URL).

以上类比也适用于suds.client包中的Client。有关如何连接任何服务器的更多信息,请参阅以下 link :-