@param url: The URL for the WSDL. @type url: str @param kwargs: keyword arguments. @keyword faults: Raise faults raised by server (default:True), else return tuple from service method invocation as (http code, object)
(self, url, **kwargs)
| 39 | """ |
| 40 | |
| 41 | def __init__(self, url, **kwargs): |
| 42 | """ |
| 43 | @param url: The URL for the WSDL. |
| 44 | @type url: str |
| 45 | @param kwargs: keyword arguments. |
| 46 | @keyword faults: Raise faults raised by server (default:True), |
| 47 | else return tuple from service method invocation as |
| 48 | (http code, object). |
| 49 | @type faults: boolean |
| 50 | @keyword proxy: An http proxy to be specified on requests (default:{}). |
| 51 | The proxy is defined as {protocol:proxy,} |
| 52 | @type proxy: dict |
| 53 | """ |
| 54 | client = Client(url, **kwargs) |
| 55 | self.__client__ = client |
| 56 | |
| 57 | def get_instance(self, name): |
| 58 | """ |