newbie: write new file (from a server)
tokauf at googlemail.com
tokauf at googlemail.com
Sun Jul 29 10:04:03 EDT 2012
Hi,
I have a client. He sends file content (as bytes) to my server. The server receives this content as bytes and decodes it to string. Then the server opens a file (filename comes from client) try to write the file-content to the new file.
It works but there are parts of the client file content in the new file.
I tested it: the whole content from client comes to the server.
Can anybody help me?
My server code:
-------------------------
import socketserver
class MyTCPServer(socketserver.BaseRequestHandler):
def handle(self):
s = ''
li = []
addr = self.client_address[0]
print("[{}] Connected! ".format(addr))
while True:
bytes = self.request.recv(4096)
if bytes:
s = bytes.decode("utf8")
print(s)
li = s.split("~")
with open(li[0], 'w') as fp:
fp.write(li[1])
#... main ......................................................
if __name__ == "__main__":
server = socketserver.ThreadingTCPServer(("", 12345), MyTCPServer)
server.serve_forever()
--------------------------------
o-o
Thomas
More information about the Python-list
mailing list