├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── 聊天室.iml ├── README.md ├── __pycache__ ├── add.cpython-37.pyc ├── client.cpython-37.pyc ├── down_files.cpython-37.pyc ├── file_change.cpython-37.pyc ├── forget.cpython-37.pyc ├── login.cpython-37.pyc ├── main.cpython-37.pyc ├── main_image.cpython-37.pyc ├── main_req.cpython-37.pyc ├── notice.cpython-37.pyc ├── person_up_files.cpython-37.pyc ├── record.cpython-37.pyc ├── recv_win.cpython-37.pyc ├── server_mysql.cpython-37.pyc ├── smtp_mail.cpython-37.pyc ├── take5_win.cpython-37.pyc ├── talk_person.cpython-37.pyc ├── up_all_file.cpython-37.pyc └── update.cpython-37.pyc ├── add.py ├── add.ui ├── back1.png ├── back3.png ├── back4.png ├── back5.png ├── back6.png ├── back7.jpg ├── back7.png ├── back9.png ├── bar.png ├── button.png ├── clear.png ├── client.py ├── client_conf.json ├── desktop.ini ├── down_files.py ├── down_files.ui ├── edit.txt ├── faction.png ├── file_change.py ├── forget.py ├── forget.ui ├── line_people ├── myself.txt └── other_name.txt ├── login.png ├── login.py ├── login.ui ├── main.py ├── main_image.py ├── main_image.qrc ├── main_req.py ├── mima.png ├── notice.py ├── notice.ui ├── person_up_files.py ├── person_up_files.ui ├── record.py ├── record.txt ├── record.ui ├── recv_win.py ├── recv_win.ui ├── server.py ├── server_mysql.py ├── smtp_mail.py ├── take5_win.py ├── talk_person.py ├── talk_person.ui ├── up_all_file.py ├── up_all_file.ui ├── update.py ├── update.ui ├── windows.ui └── 聊天室通信协议.md /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/聊天室.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/.idea/聊天室.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/add.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/add.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/client.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/client.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/down_files.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/down_files.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/file_change.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/file_change.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/forget.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/forget.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/login.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/login.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/main_image.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/main_image.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/main_req.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/main_req.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/notice.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/notice.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/person_up_files.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/person_up_files.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/record.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/record.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/recv_win.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/recv_win.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/server_mysql.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/server_mysql.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/smtp_mail.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/smtp_mail.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/take5_win.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/take5_win.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/talk_person.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/talk_person.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/up_all_file.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/up_all_file.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/update.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/__pycache__/update.cpython-37.pyc -------------------------------------------------------------------------------- /add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/add.py -------------------------------------------------------------------------------- /add.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/add.ui -------------------------------------------------------------------------------- /back1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/back1.png -------------------------------------------------------------------------------- /back3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/back3.png -------------------------------------------------------------------------------- /back4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/back4.png -------------------------------------------------------------------------------- /back5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/back5.png -------------------------------------------------------------------------------- /back6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/back6.png -------------------------------------------------------------------------------- /back7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/back7.jpg -------------------------------------------------------------------------------- /back7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/back7.png -------------------------------------------------------------------------------- /back9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/back9.png -------------------------------------------------------------------------------- /bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/bar.png -------------------------------------------------------------------------------- /button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/button.png -------------------------------------------------------------------------------- /clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/clear.png -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/client.py -------------------------------------------------------------------------------- /client_conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/client_conf.json -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/desktop.ini -------------------------------------------------------------------------------- /down_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/down_files.py -------------------------------------------------------------------------------- /down_files.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/down_files.ui -------------------------------------------------------------------------------- /edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/edit.txt -------------------------------------------------------------------------------- /faction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/faction.png -------------------------------------------------------------------------------- /file_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/file_change.py -------------------------------------------------------------------------------- /forget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/forget.py -------------------------------------------------------------------------------- /forget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/forget.ui -------------------------------------------------------------------------------- /line_people/myself.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/line_people/myself.txt -------------------------------------------------------------------------------- /line_people/other_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/line_people/other_name.txt -------------------------------------------------------------------------------- /login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/login.png -------------------------------------------------------------------------------- /login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/login.py -------------------------------------------------------------------------------- /login.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/login.ui -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/main.py -------------------------------------------------------------------------------- /main_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/main_image.py -------------------------------------------------------------------------------- /main_image.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/main_image.qrc -------------------------------------------------------------------------------- /main_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/main_req.py -------------------------------------------------------------------------------- /mima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/mima.png -------------------------------------------------------------------------------- /notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/notice.py -------------------------------------------------------------------------------- /notice.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/notice.ui -------------------------------------------------------------------------------- /person_up_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/person_up_files.py -------------------------------------------------------------------------------- /person_up_files.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/person_up_files.ui -------------------------------------------------------------------------------- /record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/record.py -------------------------------------------------------------------------------- /record.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/record.txt -------------------------------------------------------------------------------- /record.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/record.ui -------------------------------------------------------------------------------- /recv_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/recv_win.py -------------------------------------------------------------------------------- /recv_win.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/recv_win.ui -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/server.py -------------------------------------------------------------------------------- /server_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/server_mysql.py -------------------------------------------------------------------------------- /smtp_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/smtp_mail.py -------------------------------------------------------------------------------- /take5_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/take5_win.py -------------------------------------------------------------------------------- /talk_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/talk_person.py -------------------------------------------------------------------------------- /talk_person.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/talk_person.ui -------------------------------------------------------------------------------- /up_all_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/up_all_file.py -------------------------------------------------------------------------------- /up_all_file.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/up_all_file.ui -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/update.py -------------------------------------------------------------------------------- /update.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/update.ui -------------------------------------------------------------------------------- /windows.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/windows.ui -------------------------------------------------------------------------------- /聊天室通信协议.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengebashi/chatTools/HEAD/聊天室通信协议.md --------------------------------------------------------------------------------