Part of spamfighter.txjsonrpc.web.jsonrpc View Source View In Hierarchy
Pass the URL of the remote JSON-RPC server to the constructor.
Use proxy.callRemote('foobar', *args) to call remote method 'foobar' with *args.
Method | __init__ | |
Method | callRemote | Undocumented |
Parameters | url | The URL to which to post method calls. Calls will be made over SSL if the
scheme is HTTPS. If netloc contains username or password information,
these will be used to authenticate, as long as the user and
password arguments are not specified.
(type: str
) |
user | The username with which to authenticate with the server when making calls.
If specified, overrides any username information embedded in
url . If not specified, a value may be taken from
url if present.
(type: str or None
) | |
password | The password with which to authenticate with the server when making calls.
If specified, overrides any password information embedded in
url . If not specified, a value may be taken from
url if present.
(type: str or None
) |