mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
959507901a
* add final else-statement
* fix file_transfer
* fix quantum folder
* fix divide_and_conquer-folder
* Update build.yml
* updating DIRECTORY.md
* Update ripple_adder_classic.py
* Update .github/workflows/build.yml
* removed imports from typing
* removed conversion to string
* Revert "removed conversion to string"
This reverts commit 2f7c4731d1
.
* implemented suggested changes
* Update receive_file.py
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Co-authored-by: Christian Clauss <cclauss@me.com>
36 lines
1.0 KiB
Python
36 lines
1.0 KiB
Python
def send_file(filename: str = "mytext.txt", testing: bool = False) -> None:
|
|
import socket
|
|
|
|
port = 12312 # Reserve a port for your service.
|
|
sock = socket.socket() # Create a socket object
|
|
host = socket.gethostname() # Get local machine name
|
|
sock.bind((host, port)) # Bind to the port
|
|
sock.listen(5) # Now wait for client connection.
|
|
|
|
print("Server listening....")
|
|
|
|
while True:
|
|
conn, addr = sock.accept() # Establish connection with client.
|
|
print(f"Got connection from {addr}")
|
|
data = conn.recv(1024)
|
|
print(f"Server received: {data = }")
|
|
|
|
with open(filename, "rb") as in_file:
|
|
data = in_file.read(1024)
|
|
while data:
|
|
conn.send(data)
|
|
print(f"Sent {data!r}")
|
|
data = in_file.read(1024)
|
|
|
|
print("Done sending")
|
|
conn.close()
|
|
if testing: # Allow the test to complete
|
|
break
|
|
|
|
sock.shutdown(1)
|
|
sock.close()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
send_file()
|