-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathclient.py
44 lines (33 loc) · 1.05 KB
/
client.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
import os
import socket
from tqdm import tqdm
IP = socket.gethostbyname(socket.gethostname())
PORT = 4456
ADDR = (IP, PORT)
SIZE = 1024
FORMAT = "utf-8"
FILENAME = "friends-final.txt"
FILESIZE = os.path.getsize(FILENAME)
def main():
""" TCP socket and connecting to the server """
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
client.connect(ADDR)
""" Sending the filename and filesize to the server. """
data = f"{FILENAME}_{FILESIZE}"
client.send(data.encode(FORMAT))
msg = client.recv(SIZE).decode(FORMAT)
print(f"SERVER: {msg}")
""" Data transfer. """
bar = tqdm(range(FILESIZE), f"Sending {FILENAME}", unit="B", unit_scale=True, unit_divisor=SIZE)
with open(FILENAME, "r") as f:
while True:
data = f.read(SIZE)
if not data:
break
client.send(data.encode(FORMAT))
msg = client.recv(SIZE).decode(FORMAT)
bar.update(len(data))
""" Closing the connection """
client.close()
if __name__ == "__main__":
main()