资源简介
Python程序设计-董付国(第二版)书中源代码及课件
代码片段和文件信息
import socket
import sys
#服务端主机IP地址和端口号
HOST = ‘10.2.1.2‘
PORT = 50007
s = socket.socket(socket.AF_INET socket.SOCK_STREAM)
try:
#连接服务器
s.connect((HOST PORT))
except Exception as e:
print(‘Server not found or not open‘)
sys.exit()
while True:
c = input(‘Input the content you want to send:‘)
#发送数据
s.sendall(c.encode())
#从服务端接收数据
data = s.recv(1024)
data = data.decode()
print(‘Received:‘ data)
if c.lower() == ‘bye‘:
break
#关闭连接
s.close()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 589 2016-11-25 08:23 源代码\第10章 网络程序设计\code\chatClient.py
文件 1337 2016-11-25 08:41 源代码\第10章 网络程序设计\code\chatServer.py
文件 534 2015-12-24 09:31 源代码\第10章 网络程序设计\code\client.py
文件 296 2016-12-31 10:09 源代码\第10章 网络程序设计\code\crawYichangGuishi\crawYichangGuishi\items.py
文件 297 2016-12-31 10:09 源代码\第10章 网络程序设计\code\crawYichangGuishi\crawYichangGuishi\pipelines.py
文件 3216 2016-12-31 10:09 源代码\第10章 网络程序设计\code\crawYichangGuishi\crawYichangGuishi\settings.py
文件 1409 2016-12-31 16:55 源代码\第10章 网络程序设计\code\crawYichangGuishi\crawYichangGuishi\spiders\spiderYichangGuishi.py
文件 161 2016-04-28 15:02 源代码\第10章 网络程序设计\code\crawYichangGuishi\crawYichangGuishi\spiders\__init__.py
文件 1438 2016-12-31 16:56 源代码\第10章 网络程序设计\code\crawYichangGuishi\crawYichangGuishi\spiders\__pycache__\spiderYichangGuishi.cpython-35.pyc
文件 160 2016-12-31 10:50 源代码\第10章 网络程序设计\code\crawYichangGuishi\crawYichangGuishi\spiders\__pycache__\__init__.cpython-35.pyc
文件 0 2016-04-28 15:02 源代码\第10章 网络程序设计\code\crawYichangGuishi\crawYichangGuishi\__init__.py
文件 289 2016-12-31 10:50 源代码\第10章 网络程序设计\code\crawYichangGuishi\crawYichangGuishi\__pycache__\settings.cpython-35.pyc
文件 152 2016-12-31 10:50 源代码\第10章 网络程序设计\code\crawYichangGuishi\crawYichangGuishi\__pycache__\__init__.cpython-35.pyc
文件 3826564 2016-12-31 16:59 源代码\第10章 网络程序设计\code\crawYichangGuishi\result.txt
文件 278 2016-12-31 10:09 源代码\第10章 网络程序设计\code\crawYichangGuishi\scrapy.cfg
文件 3072 2016-05-07 19:56 源代码\第10章 网络程序设计\code\django_IsPrime\db.sqlite3
文件 2662 2016-05-07 19:46 源代码\第10章 网络程序设计\code\django_IsPrime\django_IsPrime\settings.py
文件 843 2016-05-07 20:05 源代码\第10章 网络程序设计\code\django_IsPrime\django_IsPrime\urls.py
文件 498 2016-05-07 20:16 源代码\第10章 网络程序设计\code\django_IsPrime\django_IsPrime\view.py
文件 405 2016-05-07 19:46 源代码\第10章 网络程序设计\code\django_IsPrime\django_IsPrime\wsgi.py
文件 0 2016-05-07 19:46 源代码\第10章 网络程序设计\code\django_IsPrime\django_IsPrime\__init__.py
文件 2138 2016-05-07 19:56 源代码\第10章 网络程序设计\code\django_IsPrime\django_IsPrime\__pycache__\settings.cpython-35.pyc
文件 1047 2016-05-07 20:05 源代码\第10章 网络程序设计\code\django_IsPrime\django_IsPrime\__pycache__\urls.cpython-35.pyc
文件 640 2016-05-07 20:16 源代码\第10章 网络程序设计\code\django_IsPrime\django_IsPrime\__pycache__\view.cpython-35.pyc
文件 579 2016-05-07 19:56 源代码\第10章 网络程序设计\code\django_IsPrime\django_IsPrime\__pycache__\wsgi.cpython-35.pyc
文件 144 2016-05-07 19:56 源代码\第10章 网络程序设计\code\django_IsPrime\django_IsPrime\__pycache__\__init__.cpython-35.pyc
文件 257 2016-05-07 19:46 源代码\第10章 网络程序设计\code\django_IsPrime\manage.py
文件 3072 2016-05-08 10:03 源代码\第10章 网络程序设计\code\django_template\db.sqlite3
文件 2665 2016-05-08 10:18 源代码\第10章 网络程序设计\code\django_template\django_template\settings.py
文件 842 2016-05-08 10:06 源代码\第10章 网络程序设计\code\django_template\django_template\urls.py
............此处省略363个文件信息
相关资源
- Francois Chollet-Deep Learning with Python
- 2019新版_Python编程从入门到实践高清中
- wxpython in action中英文合集(两份)
- python 3.7
- python400集代码
- python命名实体识别demo
- python 3.8.0 64位.rar
- 小甲鱼资源积分太贵了[全套55讲]-鱼
- Deep learning with python中文版
- 《neural networks and deep learning》《神经
- Reinforcement Learning - With Open AI TensorFl
- python编程初学者指南相关软件和源代
- Python写的一个比赛抽签软件
- python 手势识别
- python网络数据采集 中文版
- Learning Python 5th Edition
- python写的个人博客管理系统
- OpenCV3计算机视觉Python语言实现(第二
- Python深度学习Deep Learning With Python中文
- python自动化
- python使用scikit-learn实现机器学习.pdf
- 精通Python自然语言处理.pdf
- Python核心编程第三版,高清PDF文字版
- Python核心编程(第3版)源代码等.zi
- Python3程序开发指南(中文版第二版)
- Django 2 Web Development Cookbook 2清晰英文原
- python进阶书籍,python核心编程+python
- 基于tensorflow的手写体识别python源码附
- python-selenium-proxy-xhr.zip
- tensorflow1.12.0及其依赖库离线安装包
评论
共有 条评论