(self, rpc_call_list)
| 143 | return response['result'] |
| 144 | |
| 145 | def batch(self, rpc_call_list): |
| 146 | postdata = json.dumps(list(rpc_call_list), default=EncodeDecimal, ensure_ascii=self.ensure_ascii) |
| 147 | log.debug("--> " + postdata) |
| 148 | return self._request('POST', self.__url.path, postdata.encode('utf-8')) |
| 149 | |
| 150 | def _get_response(self): |
| 151 | req_start_time = time.time() |