需求分析:
省油寶使用者數 已經破了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 就可以了