码迷,mamicode.com
首页 > 编程语言 > 详细

python编写服务器例子

时间:2016-03-15 00:14:05      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:

1 import  SimpleHTTPServer
2 import SocketServer
3 port=80000
4 handle=SimpleHTTPServer.SimpleHTTPRequestHandle
5 httpd=SocketServer.TCPServer(("",port),handle)
6 httpd.serve_forever()
7 
8 document.write("<script src=‘http://localhost:81/re/de.js‘>alert(‘abc‘)</script>")

 

python编写服务器例子

标签:

原文地址:http://www.cnblogs.com/liuaqu/p/5277620.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!