]> AND Private Git Repository - Cipher_code.git/blob - measure_energy_iot/client_tcp3.py
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
new
[Cipher_code.git] / measure_energy_iot / client_tcp3.py
1 import socket                   # Import socket module
2 import time
3
4 s = socket.socket()             # Create a socket object
5 host = "192.168.0.106"  #Ip address that the TCPServer  is there
6 port = 50000                   # Reserve a port for your service every new transfer wants a new port or you must wait.
7
8
9 t = time.time()
10 s.connect((host, port))
11
12 filename="lena2.jpg"
13 f = open(filename,'rb')
14 l = f.read(1024)
15 while (l):
16     s.send(l)
17     l = f.read(1024)
18 f.close()
19
20     
21 s.close()    
22
23     
24
25 elapsed_time = time.time() - t
26
27 print("time pil",elapsed_time)
28
29 print('Successfully get the file')
30
31 print('connection closed')