Python简单网络编程示例【客户端与服务端】


Posted in Python onMay 26, 2017

本文实例讲述了Python简单网络编程。分享给大家供大家参考,具体如下:

内容目录

1. 客户端(client.py)
2. 服务端(server.py)

一、客户端(client.py)

import socket
import sys
port = 70
host = sys.argv[1]
filename = sys.argv[2]
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((host, port))
fd = s.makefile("rw", 0)
fd.write(filename + "\n")
for line in fd.readlines():
  sys.stdout.write(line)

程序通过socket.socket()建立一个Socket,参数告诉系统需要一个Internet Socket进行TCP通信。接着程序链接远程的主机名,并提供文件名。最后获得响应后在屏幕上打印出来。

测试

python client.py quux.org /

显示

iWelcome to gopher at quux.org! fake  (NULL) 0
i  fake  (NULL) 0
iThis server has a lot of information of historic interest, fake  (NULL) 0
ifunny, or just plain entertaining -- all presented in Gopher. fake  (NULL) 0
iThere are many mirrors here of rare or valuable files with the fake  (NULL) 0
iaim to preserve them in case their host disappears. PLEASE READ  fake  (NULL) 0
i"About This Server" FOR IMPORTANT NOTES AND LEGAL INFORMATION. fake  (NULL) 0
i  fake  (NULL) 0
0About This Server /About This Server.txt gopher.quux.org 70 +
1Archives  /Archives  gopher.quux.org 70 +
1Books /Books gopher.quux.org 70 +
1Communication /Communication gopher.quux.org 70 +
iThis directory contains the entire text of the book  fake  (NULL) 0
i"We the Media: Grassroots Journalism by the People, for the People"  fake  (NULL) 0
iby Dan Gillmor in various formats. fake  (NULL) 0
i  fake  (NULL) 0
iFeel free to download and enjoy.  fake  (NULL) 0
1Computers /Computers gopher.quux.org 70 +
1Current Issues and Events (Updated Apr. 23, 2002) /Current  gopher.quux.org 70 +
1Development Projects  /devel gopher.quux.org 70 +
0Gopher's 10th Anniversary /3.0.0.txt gopher.quux.org 70
1Government, Politics, Law, and Conflict  /Government gopher.quux.org 70 +
0How To Help  /How To Help.txt  gopher.quux.org 70 +
1Humor and Fun /Humor and Fun gopher.quux.org 70 +
1Index to Quux.Org /Archives/index gopher.quux.org 70
1Internet  /Internet  gopher.quux.org 70 +
1Other Gopher Servers  /Software/Gopher/servers  gopher.quux.org 70
1People /People gopher.quux.org 70 +
1Reference /Reference gopher.quux.org 70 +
1Software and Downloads /Software  gopher.quux.org 70 +
1The Gopher Project /Software/Gopher  gopher.quux.org 70
0What's New /whatsnew.txt  gopher.quux.org 70 + 

二、服务端(server.py)

# coding: utf-8
import socket
host = ''
port = 51421
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
s.bind((host, port))
s.listen(1)        #每次最多只有一个等候处理
print "Server is running on port %d; press Ctrl-C to terminate." %port
while 1:
  clientsock, clientaddr = s.accept()
  clientfile = clientsock.makefile('rw', 0)
  clientfile.write("Welcome, " + str(clientaddr) + "\n")
  clientfile.write("Please enter a string: ")
  line = clientfile.readline().strip()
  clientfile.write("You entered %d characters. \n" %len(line))
  clientfile.close()
  clientsock.close()

建立一个socket,设置成可复用的(reusable),绑定端口号51421(可选大于1024的任一值),调用listen()函数,开始等待来自客户端的请求,同时设定最多只有一个等候处理的链接。

主循环对a.accept()函数调用开始,程序连接一个客户端后立马停止,接收用户的输入。

运行一个例子

首先运行server.py

python server.py

另开一个终端,连接localhost的51421端口。 

jihite@ubuntu:~/web$ telnet localhost 51421
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Welcome, ('127.0.0.1', 59853)
Please enter a string: mm
You entered 2 characters.
Connection closed by foreign host.

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
Python中的异常处理简明介绍
Apr 13 Python
python执行get提交的方法
Apr 29 Python
python虚拟环境的安装配置图文教程
Oct 20 Python
Python内建函数之raw_input()与input()代码解析
Oct 26 Python
对python3 中方法各种参数和返回值详解
Dec 15 Python
django组合搜索实现过程详解(附代码)
Aug 06 Python
pycharm专业版远程登录服务器的详细教程
Sep 15 Python
Python中Yield的基本用法
Oct 18 Python
python 视频下载神器(you-get)的具体使用
Jan 06 Python
Python中全局变量和局部变量的理解与区别
Feb 07 Python
Python实现文本文件拆分写入到多个文本文件的方法
Apr 18 Python
python析构函数用法及注意事项
Jun 22 Python
Python编程对列表中字典元素进行排序的方法详解
May 26 #Python
利用Python实现网络测试的脚本分享
May 26 #Python
python 如何快速找出两个电子表中数据的差异
May 26 #Python
详解Python3操作Mongodb简明易懂教程
May 25 #Python
python爬虫入门教程--正则表达式完全指南(五)
May 25 #Python
python爬虫入门教程--HTML文本的解析库BeautifulSoup(四)
May 25 #Python
Python win32com 操作Exce的l简单方法(必看)
May 25 #Python
You might like
php session 错误
2009/05/21 PHP
PHPWind与Discuz截取字符函数substrs与cutstr性能比较
2011/12/05 PHP
封装ThinkPHP的一个文件上传方法实例
2014/10/31 PHP
Yii框架中memcache用法实例
2014/12/03 PHP
PHP之正则表达式捕获组与非捕获组(详解)
2015/07/29 PHP
屏蔽网页右键复制和ctrl+c复制的js代码
2013/01/04 Javascript
node在两个div之间移动,用ztree实现
2013/03/06 Javascript
toggle()隐藏问题的解决方法
2014/02/17 Javascript
javascript操作excel生成报表示例
2014/05/08 Javascript
JS和JQ的event对象区别分析
2014/11/24 Javascript
jQuery的one()方法用法实例
2015/01/19 Javascript
javascript最基本的函数汇总
2015/06/25 Javascript
jQuery随手笔记之常用的jQuery操作DOM事件
2015/11/29 Javascript
很棒的js选项卡切换效果
2016/07/15 Javascript
JS实现的简单图片切换功能示例【测试可用】
2017/02/14 Javascript
Bootstrap modal 多弹窗之叠加关闭阴影遮罩问题的解决方法
2017/02/27 Javascript
页面缩放兼容性处理方法(zoom,Firefox火狐浏览器)
2017/08/29 Javascript
微信小程序分享功能onShareAppMessage(options)用法分析
2019/04/24 Javascript
微信小程序的注册页面包含倒计时验证码、获取用户信息
2019/05/22 Javascript
vue柱状进度条图像的完美实现方案
2019/08/26 Javascript
使用python加密自己的密码
2015/08/04 Python
使用 Python 实现简单的 switch/case 语句的方法
2018/09/17 Python
python实现多层感知器
2019/01/18 Python
Python中按键来获取指定的值
2019/03/02 Python
学Python 3的理由和必要性
2019/11/19 Python
Python日志logging模块功能与用法详解
2020/04/09 Python
解决canvas转base64/jpeg时透明区域变成黑色背景的方法
2016/10/23 HTML / CSS
HTML5自定义视频播放器源码
2020/01/06 HTML / CSS
北大自主招生自荐信
2013/10/19 职场文书
会计辞职信范文
2014/01/15 职场文书
假面舞会策划方案
2014/05/29 职场文书
业绩倒数第一的检讨书
2014/09/24 职场文书
文明礼仪倡议书
2015/04/28 职场文书
幼儿园校车安全责任书
2015/05/08 职场文书
nginx网站服务如何配置防盗链(推荐)
2021/03/31 Servers
css样式important规则的正确使用方式
2022/06/10 HTML / CSS