python搭建簡易伺服器分析與實現

來源:互聯網
上載者:User

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.