Send 10M of data with socket : socket « Network « Python Tutorial

Home
Python Tutorial
1.Introduction
2.Data Type
3.Statement
4.Operator
5.String
6.Tuple
7.List
8.Dictionary
9.Collections
10.Function
11.Class
12.File
13.Buildin Function
14.Buildin Module
15.Database
16.Regular Expressions
17.Thread
18.Tkinker
19.wxPython
20.XML
21.Network
22.CGI Web
23.Windows
Python Tutorial » Network » socket 
21.2.7.Send 10M of data with socket
import socket, sys
port = 51423
host = 'localhost'

data = "x" 10485760                  10MB of data

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((host, port))

bytesSent = 0
while bytesSent < len(data):
    startpos = bytesSent
    endpos = min(bytesSent + 1024, len(data))
    bytesSent += s.send(data[startpos:endpos])
    sys.stdout.write("Wrote %d bytes\r" % bytesSent)
    sys.stdout.flush()
    
s.shutdown(1)

print "All data sent."
while 1:
    buf = s.recv(1024)
    if not len(buf):
        break
    sys.stdout.write(buf)
21.2.socket
21.2.1.Get list of available socket options
21.2.2.Implementing Internet Communication
21.2.3.A server that will receive a connection from a client, send a string to the client, and close the connection.
21.2.4.socket.socket(socket.AF_INET, socket.SOCK_STREAM)
21.2.5.Looking up port number
21.2.6.Get socket name and peer name
21.2.7.Send 10M of data with socket
21.2.8.Echo Server
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.