Every line of 'python socket send string' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
89 def sendall(self, string, flags=0): 90 pass
60 def sendString(self, string): 61 """ 62 Send a string to my peer 63 """ 64 # pass the buck to the extension module 65 return self.mpi.sendString(self.communicator.capsule, self.peer, self.tag, string)
19 def socket_socket_sendall(self, data): 20 while len(data) > 0: 21 try: 22 bytes_sent = self.send(data) 23 data = data[bytes_sent:] 24 except socket.error, e: 25 if str(e) == "[Errno 35] Resource temporarily unavailable": 26 time.sleep(0.1) 27 else: 28 raise e
251 def sendall(self, data): 252 total_sent = 0 253 while total_sent < len(data): 254 sent = self._send_until_done( 255 data[total_sent:total_sent + SSL_WRITE_BLOCKSIZE]) 256 total_sent += sent
31 def sendline(sock,data): 32 sock.send(data + '\n') 33 return 1
189 def send_string( self, data, host=None, port=None ): 190 if host and port: 191 self.transport.write( data, (host, port) ) 192 else: 193 self.transport.write( data )
409 def _send_socket(self, data): 410 if self._port is None: 411 return # Silent failure.. 412 sock = None 413 if IS_WINDOWS: # TODO Verify on Linux 414 host = '127.0.0.1' 415 else: 416 host = 'localhost' 417 try: 418 sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 419 sock.connect((host, self._port)) 420 if PY2: 421 sock.send(data) 422 else: 423 sock.send(bytes(data, encoding.OUTPUT_ENCODING)) #DEBUG SYSTEM_ENCODING 424 # except Exception: 425 # print(r"DEBUG: Exception at send socket %s" % data) 426 finally: 427 sock.close()
376 def send(self, data): 377 self._dbg(4, 'Sending %s' % repr(data)) 378 self.shell.sendall(data)
105 def send(self, data): 106 """alias for write()""" 107 self.write(data)
87 def write(self, text): 88 """Just send everything""" 89 self.socket.sendall(text)