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文件读写并使用mysql批量插入示例分享(python操作mysql)
Feb 17 Python
Unicode和Python的中文处理
Mar 19 Python
Python中函数及默认参数的定义与调用操作实例分析
Jul 25 Python
Python:Scrapy框架中Item Pipeline组件使用详解
Dec 27 Python
解决python写入带有中文的字符到文件错误的问题
Jan 31 Python
Python-接口开发入门解析
Aug 01 Python
pytorch下大型数据集(大型图片)的导入方式
Jan 08 Python
Python基于requests库爬取网站信息
Mar 02 Python
python+Selenium自动化测试——输入,点击操作
Mar 06 Python
python 实现简单的计算器(gui界面)
Nov 11 Python
如何在C++中调用Python
May 21 Python
Python读写yaml文件
Mar 20 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 SQL Injection with MySQL
2011/02/27 PHP
phpmailer发送gmail邮件实例详解
2013/06/24 PHP
解析PHP 5.5 新特性
2013/07/02 PHP
php实现把数组按指定的个数分隔
2014/02/17 PHP
PHP调用.NET的WebService 简单实例
2015/03/27 PHP
php给一组指定关键词添加span标签的方法
2015/03/31 PHP
centos+php+coreseek+sphinx+mysql之一coreseek安装篇
2016/10/25 PHP
详解php反序列化
2020/06/10 PHP
JavaScript学习笔记(十)
2010/01/17 Javascript
jquery的$(document).ready()和onload的加载顺序
2010/05/26 Javascript
js 利用image对象实现图片的预加载提高访问速度
2013/03/29 Javascript
js 获取和设置css3 属性值的实现方法
2013/05/06 Javascript
jQuery 获取兄弟元素的几种不错方法
2014/05/23 Javascript
深入理解setTimeout函数和setInterval函数
2016/05/20 Javascript
vue 中滚动条始终定位在底部的方法
2018/09/03 Javascript
JS实现网页端猜数字小游戏
2020/03/06 Javascript
vue 实现根据data中的属性值来设置不同的样式
2020/08/04 Javascript
JavaScript 判断浏览器是否是IE
2021/02/19 Javascript
[00:28]DOTA2北京网鱼队选拔赛
2015/04/08 DOTA
python numpy 部分排序 寻找最大的前几个数的方法
2018/06/27 Python
从numpy数组中取出满足条件的元素示例
2019/11/26 Python
Pytorch中的VGG实现修改最后一层FC
2020/01/15 Python
使用Python脚本从文件读取数据代码实例
2020/01/19 Python
PyCharm 2020 激活到 2100 年的教程
2020/03/25 Python
简单了解Python多态与属性运行原理
2020/06/15 Python
python中get和post有什么区别
2020/06/19 Python
如何利用python发送邮件
2020/09/26 Python
深入CSS3 动画效果的总结详解
2013/05/09 HTML / CSS
Linux开机引导的步骤是什么
2014/02/26 面试题
信息总监管理职责范本
2014/03/08 职场文书
启动仪式策划方案
2014/06/14 职场文书
公司优秀员工获奖感言
2014/08/14 职场文书
师德先进个人材料
2014/12/20 职场文书
后勤工作个人总结
2015/02/28 职场文书
安全生产奖惩制度
2015/08/06 职场文书
使用Python的开发框架Brownie部署以太坊智能合约
2021/05/28 Python