python搭建简易服务器分析与实现
程序员文章站
2022-10-06 11:14:17
需求分析: 省油宝用户数 已经破了6000,原有的静态报表 已经变得臃肿不堪, 每次打开都要缓上半天,甚至浏览器直接挂掉 采用python搭建一个最最简易的 web 服务...
需求分析:
省油宝用户数 已经破了6000,原有的静态报表 已经变得臃肿不堪,
每次打开都要缓上半天,甚至浏览器直接挂掉
采用python搭建一个最最简易的 web 服务 请求一个nick
就返回 对应的 报表数据 参数用get方式传送
调研与实现:
园里没找到靠谱的,google了半天,最终还是成功了。
以下是源码,里面记录了 其中的 一些问题
#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: zhoujiebin
@contact: zhoujiebing@maimiaotech.com
@date: 2012-12-14 15:25
@version: 0.0.0
@license: copyright maimiaotech.com
@copyright: copyright maimiaotech.com
"""
import os
import sys
import urllib
import simplehttpserver
import socketserver
port = 8080
webdir = "/home/zhoujiebing/report_web_service"
from syb_report_html import get_html
class handler(simplehttpserver.simplehttprequesthandler):
def translate_path(self, path):
#用于设定根目录
os.chdir(webdir)
simplehttpserver.simplehttprequesthandler.translate_path(self,path)
def do_get(self):
#服务器端响应get请求的方法
#问题1 如何拿到客户端的get参数
#我找半天没找到,最后__dict__看到path里有路径,只能从路径里 提取参数了
#从path中提取 get参数
nick = self.path[1:]
#汉字url转码
nick = str(urllib.unquote(nick))
if nick != 1:
report_html = get_html(nick)
else:
report_html = 'nick非法'
print '请求 ' + nick + ' 省油宝计划报表'
self.send_response(200)
self.send_header("content-type", "text/html")
self.send_header("content-length", len(report_html))
self.end_headers()
self.wfile.write(report_html)
if __name__ == '__main__':
try:
httpd = socketserver.tcpserver(("", port), handler)
print "dir %s serving at port %s"%(repr(webdir), port)
#启动服务器 端进程
httpd.serve_forever()
except exception,e:
print '异常',e
执行这个程序 web服务程序 就启动了
在浏览器中 输入 ip:8080/nick 就可以了
省油宝用户数 已经破了6000,原有的静态报表 已经变得臃肿不堪,
每次打开都要缓上半天,甚至浏览器直接挂掉
采用python搭建一个最最简易的 web 服务 请求一个nick
就返回 对应的 报表数据 参数用get方式传送
调研与实现:
园里没找到靠谱的,google了半天,最终还是成功了。
以下是源码,里面记录了 其中的 一些问题
复制代码 代码如下:
#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: zhoujiebin
@contact: zhoujiebing@maimiaotech.com
@date: 2012-12-14 15:25
@version: 0.0.0
@license: copyright maimiaotech.com
@copyright: copyright maimiaotech.com
"""
import os
import sys
import urllib
import simplehttpserver
import socketserver
port = 8080
webdir = "/home/zhoujiebing/report_web_service"
from syb_report_html import get_html
class handler(simplehttpserver.simplehttprequesthandler):
def translate_path(self, path):
#用于设定根目录
os.chdir(webdir)
simplehttpserver.simplehttprequesthandler.translate_path(self,path)
def do_get(self):
#服务器端响应get请求的方法
#问题1 如何拿到客户端的get参数
#我找半天没找到,最后__dict__看到path里有路径,只能从路径里 提取参数了
#从path中提取 get参数
nick = self.path[1:]
#汉字url转码
nick = str(urllib.unquote(nick))
if nick != 1:
report_html = get_html(nick)
else:
report_html = 'nick非法'
print '请求 ' + nick + ' 省油宝计划报表'
self.send_response(200)
self.send_header("content-type", "text/html")
self.send_header("content-length", len(report_html))
self.end_headers()
self.wfile.write(report_html)
if __name__ == '__main__':
try:
httpd = socketserver.tcpserver(("", port), handler)
print "dir %s serving at port %s"%(repr(webdir), port)
#启动服务器 端进程
httpd.serve_forever()
except exception,e:
print '异常',e
执行这个程序 web服务程序 就启动了
在浏览器中 输入 ip:8080/nick 就可以了
上一篇: Python笔记(叁)继续学习
下一篇: PHP变量传值赋值和引用赋值,变量销毁
推荐阅读
-
Python多进程与服务器并发原理及用法实例分析
-
使用python实现快速搭建简易的FTP服务器
-
JAVAEE——宜立方商城06:Redis安装、数据类型和持久化方案、Redis集群分析与搭建、实现缓存和同步
-
Python实现的堆排序算法原理与用法实例分析
-
Python实现的选择排序算法原理与用法实例分析
-
Python中使用Flask、MongoDB搭建简易图片服务器
-
10分钟搭建服务器集群——Windows7系统中nginx与IIS服务器搭建集群实现负载均衡
-
Python实现简易版的Web服务器(推荐)
-
CentOS7环境搭建python3以及与python2实现共存的方法
-
python搭建简易服务器分析与实现