Thanks to your tutorial I am now able to make auto backups of my python scripts. Thanks a lot !
@alexchoriy21822 жыл бұрын
i found first ever programmer which is stutering as me , i think that only i was actually learn coding and stutering ! i wish u good look very good video bro
@ronen1243 жыл бұрын
a very nice explanation Sir
@globomirando58142 жыл бұрын
Nice one. Thank you very much :) To also send binary files like images, video etc, do the following: in the server change: with open(f"recv_{FILENAME}", "w") as f: to with open(f"recv_{FILENAME}", "wb") as f: and data = conn.recv(SIZE).decode(FORMAT) to data = conn.recv(SIZE) in the client change with open(FILENAME, "r") as f: to with open(FILENAME, "rb") as f: and client.send(data.encode(FORMAT)) to client.send(data) So you can send and receive every file in binary
@IdiotDeveloper2 жыл бұрын
Thanks the your valuable feedback.
@Venkat876 Жыл бұрын
Can we also send large vedio field??
@Venkat876 Жыл бұрын
Reply if u know the answer
@winityodude3 жыл бұрын
Can you please create a video to show how to share a machine learning model via sockets?