| | |
- Binary
- DateTime
- exceptions.Exception
-
- Error
-
- Fault
- ProtocolError
- ResponseError
- ExpatParser
- Marshaller
- ServerProxy
- SlowParser
- Transport
-
- SafeTransport
- Unmarshaller
class ExpatParser |
| | |
Methods defined here:
- __init__(self, target)
- # fast expat parser for Python 2.0 and later. this is about
# 50% slower than sgmlop, on roundtrip testing
- close(self)
- feed(self, data)
|
class Marshaller |
| |
Generate an XML-RPC params chunk from a Python data structure.
Create a Marshaller instance for each set of parameters, and use
the "dumps" method to convert your data (represented as a tuple)
to an XML-RPC params chunk. To write a fault response, pass a
Fault instance instead. You may prefer to use the "dumps" module
function for this purpose. |
| |
Methods defined here:
- __init__(self, encoding=None, allow_none=0)
- dump_array(self, value, write)
- dump_bool(self, value, write)
- dump_double(self, value, write)
- dump_instance(self, value, write)
- dump_int(self, value, write)
- dump_long(self, value, write)
- dump_nil(self, value, write)
- dump_string(self, value, write, escape=<function escape>)
- dump_struct(self, value, write, escape=<function escape>)
- dump_unicode(self, value, write, escape=<function escape>)
- dumps(self, values)
Data and other attributes defined here:
- dispatch = {<type 'instance'>: <function dump_instance>, <type 'float'>: <function dump_double>, <type 'int'>: <function dump_int>, <type 'list'>: <function dump_array>, <type 'long'>: <function dump_long>, <type 'dict'>: <function dump_struct>, <type 'NoneType'>: <function dump_nil>, <type 'str'>: <function dump_string>, <type 'tuple'>: <function dump_array>, <type 'unicode'>: <function dump_unicode>, ...}
|
class SafeTransport(Transport) |
| |
Handles an HTTPS transaction to an XML-RPC server. |
| |
Methods defined here:
- make_connection(self, host)
Methods inherited from Transport:
- get_host_info(self, host)
- getparser(self)
- parse_response(self, file)
- request(self, host, handler, request_body, verbose=0)
- send_content(self, connection, request_body)
- send_host(self, connection, host)
- send_request(self, connection, handler, request_body)
- send_user_agent(self, connection)
Data and other attributes inherited from Transport:
- user_agent = 'xmlrpclib.py/1.0.1 (by www.pythonware.com)'
|
Server = class ServerProxy |
| |
uri [,options] -> a logical connection to an XML-RPC server
uri is the connection point on the server, given as
scheme://host/target.
The standard implementation always supports the "http" scheme. If
SSL socket support is available (Python 2.0), it also supports
"https".
If the target part and the slash preceding it are both omitted,
"/RPC2" is assumed.
The following options can be given as keyword arguments:
transport: a transport factory
encoding: the request encoding (default is UTF-8)
All 8-bit strings passed to the server proxy are assumed to use
the given encoding. |
| |
Methods defined here:
- __getattr__(self, name)
- __init__(self, uri, transport=None, encoding=None, verbose=0, allow_none=0)
- __repr__(self)
- __str__ = __repr__(self)
|
class ServerProxy |
| |
uri [,options] -> a logical connection to an XML-RPC server
uri is the connection point on the server, given as
scheme://host/target.
The standard implementation always supports the "http" scheme. If
SSL socket support is available (Python 2.0), it also supports
"https".
If the target part and the slash preceding it are both omitted,
"/RPC2" is assumed.
The following options can be given as keyword arguments:
transport: a transport factory
encoding: the request encoding (default is UTF-8)
All 8-bit strings passed to the server proxy are assumed to use
the given encoding. |
| |
Methods defined here:
- __getattr__(self, name)
- __init__(self, uri, transport=None, encoding=None, verbose=0, allow_none=0)
- __repr__(self)
- __str__ = __repr__(self)
|
class SlowParser |
| |
Default XML parser (based on xmllib.XMLParser). |
| |
Methods defined here:
- __init__(self, target)
- # this is about 10 times slower than sgmlop, on roundtrip
# testing.
|
class Transport |
| |
Handles an HTTP transaction to an XML-RPC server. |
| |
Methods defined here:
- get_host_info(self, host)
- getparser(self)
- make_connection(self, host)
- parse_response(self, file)
- request(self, host, handler, request_body, verbose=0)
- send_content(self, connection, request_body)
- send_host(self, connection, host)
- send_request(self, connection, handler, request_body)
- send_user_agent(self, connection)
Data and other attributes defined here:
- user_agent = 'xmlrpclib.py/1.0.1 (by www.pythonware.com)'
|
class Unmarshaller |
| |
Unmarshal an XML-RPC response, based on incoming XML event
messages (start, data, end). Call close() to get the resulting
data structure.
Note that this reader is fairly tolerant, and gladly accepts bogus
XML-RPC data without complaining (but not bogus XML). |
| |
Methods defined here:
- __init__(self)
- close(self)
- data(self, text)
- end(self, tag, join=<function join>)
- end_array(self, data)
- end_base64(self, data)
- end_boolean(self, data)
- end_dateTime(self, data)
- end_dispatch(self, tag, data)
- end_double(self, data)
- end_fault(self, data)
- end_int(self, data)
- end_methodName(self, data)
- end_nil(self, data)
- end_params(self, data)
- end_string(self, data)
- end_struct(self, data)
- end_value(self, data)
- getmethodname(self)
- start(self, tag, attrs)
- xml(self, encoding, standalone)
Data and other attributes defined here:
- dispatch = {'array': <function end_array>, 'base64': <function end_base64>, 'boolean': <function end_boolean>, 'dateTime.iso8601': <function end_dateTime>, 'double': <function end_double>, 'fault': <function end_fault>, 'i4': <function end_int>, 'int': <function end_int>, 'methodName': <function end_methodName>, 'name': <function end_string>, ...}
| |