-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileclient.py
60 lines (44 loc) · 1.49 KB
/
fileclient.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import json
import socket # Import socket module
import fileinput
def listToString(my_str):
# initialize an empty string
str1 = " "
# return string
return (str1.join(my_str))
s = socket.socket() # Create a socket object
host = socket.gethostname() # Get local machine name
port = 60000 # Reserve a port for your service.
s.connect((host, port))
with open('received_file', 'wb') as f:
# print ('file opened')
while True:
lst = []
# number of elements as input
print("Enter number of elements : ")
print("Writing data to file...")
print("Sending data to server... ")
print("Enter number of elements : ")
# Using fileinput.input() method
for line in fileinput.input(files ='gfg.txt'):
print(line)
n = input()
# iterating till the range
for i in range(0, n):
ele = int(input())
lst.append(ele) # adding the element
string_ints = [str(int) for int in lst]
strr = ",".join(string_ints)
s.send(strr.encode())
print('receiving data...')
data = s.recv(1024)
data_loaded = json.loads(data.decode("utf-8")) #data loaded
print('data=', (data_loaded))
if not data:
break
# write data to a file
f.write(data)
f.close()
print('Successfully get the file')
s.close()
print('connection closed')