91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

基于python socket和tkinter界面庫實現的網絡聊天室程序,實現登錄、注冊、在線成員顯示、聊天等功能

資源截圖

代碼片段和文件信息

import?math
import?socket


class?ChatClient:

????def?__init__(self):
????????print(“初始化tcp客戶端“)
????????self.sk?=?socket.socket()
????????self.sk.connect((‘127.0.0.1‘?12323))

????#?驗證登錄
????def?check_user(self?user?key):
????????#?請求類型
????????self.sk.sendall(bytes(“1“?“utf-8“))
????????#?依次發送用戶名密碼
????????self.send_string_with_length(user)
????????self.send_string_with_length(key)
????????#?獲取服務器的返回值,“1“代表通過,“0”代表不通過
????????check_result?=?self.recv_string_by_length(1)
????????return?check_result?==?“1“

????#?注冊
????def?register_user(self?user?key):
????????#?請求類型
????????self.sk.sendall(bytes(“2“?“utf-8“))
????????#?依次發送用戶名密碼
????????self.send_string_with_length(user)
????????self.send_string_with_length(key)
????????#?獲取服務器的返回值,“0“代表通過,“1”代表已有用戶名

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2019-01-08?12:42??python聊天室\
?????目錄???????????0??2019-01-08?12:41??python聊天室\exe\
?????目錄???????????0??2019-01-08?12:41??python聊天室\exe\data\
?????文件?????????128??2019-01-08?12:51??python聊天室\exe\data\user.txt
?????目錄???????????0??2019-01-08?12:41??python聊天室\exe\image\
?????文件???????16330??2019-01-06?18:51??python聊天室\exe\image\key.png
?????文件???????16082??2019-01-06?18:45??python聊天室\exe\image\user.png
?????文件?????8776695??2019-01-08?12:36??python聊天室\exe\Main.exe
?????文件?????6090483??2019-01-08?12:35??python聊天室\exe\Server.exe
?????目錄???????????0??2019-01-08?12:40??python聊天室\源碼\
?????文件????????2582??2019-01-08?12:16??python聊天室\源碼\Client.py
?????目錄???????????0??2019-01-08?12:31??python聊天室\源碼\data\
?????文件???????????3??2019-01-08?12:40??python聊天室\源碼\data\user.txt
?????目錄???????????0??2019-01-08?12:31??python聊天室\源碼\image\
?????文件???????16330??2019-01-06?18:51??python聊天室\源碼\image\key.png
?????文件???????16082??2019-01-06?18:45??python聊天室\源碼\image\user.png
?????文件????????3461??2019-01-08?11:57??python聊天室\源碼\LoginPanel.py
?????文件????????4242??2019-01-08?12:18??python聊天室\源碼\Main.py
?????文件????????4854??2019-01-08?12:05??python聊天室\源碼\MainPanel.py
?????文件?????????156??2019-01-08?12:02??python聊天室\源碼\MD5.py
?????文件????????3984??2019-01-08?11:58??python聊天室\源碼\RegisterPanel.py
?????文件????????5798??2019-01-08?12:14??python聊天室\源碼\Server.py

評論

共有 條評論