Fork me on GitHub
  2020年1月3日
摘要: import socket,struct,json,os DOWNLOAD_DIR=r'D:\python13期\网络编程\文件处理\DOWNLOAD' class FtpClient: def __init__(self,host,port): self.host=host self.port=p 阅读全文
posted @ 2020-01-03 20:23 OBOS 阅读(130) 评论(0) 推荐(0) 编辑
摘要: import socket,os,json,struct SHARE_DIR=r'D:\python13期\网络编程\文件处理\SHARE' class FtpServer: def __init__(self,host,port): self.host=host self.port=port se 阅读全文
posted @ 2020-01-03 20:21 OBOS 阅读(173) 评论(0) 推荐(0) 编辑
摘要: from socket import * import struct,json client=socket(AF_INET,SOCK_STREAM) client.connect(('127.2.2.2',6688)) while True: cmd=input('>>:').strip() if 阅读全文
posted @ 2020-01-03 17:56 OBOS 阅读(127) 评论(0) 推荐(0) 编辑
摘要: from socket import * import subprocess,struct,json server=socket(AF_INET,SOCK_STREAM) server.bind(('127.2.2.2',6688)) server.listen(5) while True: con 阅读全文
posted @ 2020-01-03 17:55 OBOS 阅读(139) 评论(0) 推荐(0) 编辑
  2020年1月2日
摘要: # from socket import * # client=socket(AF_INET,SOCK_STREAM) # client.connect(('127.2.2.2',6689)) # client.send('hello'.encode('utf-8')) # client.send( 阅读全文
posted @ 2020-01-02 20:24 OBOS 阅读(167) 评论(0) 推荐(0) 编辑
摘要: # from socket import * # server=socket(AF_INET,SOCK_STREAM) # server.bind(('127.2.2.2',6689)) # server.listen(5) # conn,addr=server.accept() # res1=co 阅读全文
posted @ 2020-01-02 20:22 OBOS 阅读(188) 评论(0) 推荐(0) 编辑
摘要: from socket import * client=socket(AF_INET,SOCK_STREAM) client.connect(('127.2.2.2',6688)) while True: cmd=input('>>:').strip() if not cmd:continue cl 阅读全文
posted @ 2020-01-02 18:48 OBOS 阅读(150) 评论(0) 推荐(0) 编辑
摘要: from socket import * import subprocess server=socket(AF_INET,SOCK_STREAM) server.bind(('127.2.2.2',6688)) server.listen(5) while True: conn,client_add 阅读全文
posted @ 2020-01-02 18:47 OBOS 阅读(223) 评论(0) 推荐(0) 编辑
  2019年12月31日
摘要: # import socket# phone=socket.socket(socket.AF_INET,socket.SOCK_STREAM)# phone.connect(('127.1.1.1',8888))# phone.send('hello'.encode('utf-8'))# data= 阅读全文
posted @ 2019-12-31 16:38 OBOS 阅读(191) 评论(0) 推荐(0) 编辑
摘要: '''SOCK_STREAM TCP协议又被称为流逝协议SOCK_DGRAM UDO协议又被称为数据报协议'''# import socket# phone=socket.socket(socket.AF_INET,socket.SOCK_STREAM)# phone.bind(('127.1.1. 阅读全文
posted @ 2019-12-31 16:36 OBOS 阅读(203) 评论(0) 推荐(0) 编辑