mod_pythonを使ってデバッグする場合

ローカル環境でMySQLdbなどが必要な場合はこちら。
xreaではmod_pythonは使えません。同一コードで双方通す場合は、sys.platform分岐が使えるかも(要検証
コードはこんな感じ

from mod_python import apache

def handler(req):
   req.content_type = ‘text/html'
  req.write(”""...""”)
  return apache.OK

mod_pythonWindowsにインストールする方法(参考に)
http://hidekiitakura.com/blog/?p=110

SQL Connectivity With Python (参考に)
http://www.devshed.com/c/a/Python/MySQL-Connectivity-With-Python/