5

私はWindows7のIISにCGIアプリケーションとしてPythonをインストールする作業を行いました。これは非常に簡単ですが、柔軟性を高めるためにWSGIのものを使用したいと思います。

isapi_wsgiのアーカイブをダウンロードし、解凍してから、次のように手順に従ってインストールを実行しました。

\python27\python.exe setup.py install

これは成功しました:

ここに画像の説明を入力してください

次に、wsgi接着剤が含まれている.pyモジュールをコーディングし、インストールしてみました。これは次のように失敗しました:

ここに画像の説明を入力してください

これはCOMMonikerエラーであり、IIS6互換の管理機能はCOM Monikersに基づいていることを知っています。これにより、IIS6互換の管理機能のisapi_wsgiに前提条件があることを思い出しました。それを実行\windows\system32\OptionalFeatures.exeしてインストールしてから、.pyモジュールを再実行すると、正しくインストールされました。

C:\dev\wsgi>\Python27\python.exe app1_wsgi.py
Configured Virtual Directory: /wsgi
Installation complete.

わかりました、素晴らしいです。現在のディレクトリを見ると、_app1_wsgi.dllという名前の新しいDLLが表示され、IIS Managerを見ると、新しいIIS vdirと、そのvdir内の「*」のスクリプトマップが表示されます。 _app1_wsgi.DLL。すべて良い。だが!をリクエストするとhttp://localhost/wsgi、500エラーが発生します。

試行錯誤の結果、ハンドラーを定義する.pyモジュールはsite-packagesディレクトリにある必要があることがわかりました。私はこれに非常に驚いています。

これを回避できますか?生成された.dllファイルと同じディレクトリに.pyモジュールを配置するだけでいいですか?または、WSGIメカニズムから実行するために、すべてのPythonロジックをサイトパッケージにデプロイする必要がありますか?

4

2 に答える 2

1

答えは次のとおりです。

  • 質問に記載されている isapi_wsgi のインストールは正しいです。

  • isapi_wsgi に付随するサンプル コードに示されているように、app.py の基本的なボイラープレートを使用して、Web アプリの Python クラスを site-packages ディレクトリに配置する必要があります。

  • 生成された *.dll ファイルと同じディレクトリに Python ソース モジュールを配置することは可能ですが、*wsgi.py ファイルで特別な処理が必要になります。

  • 開発目的で Windows で Python を実行するより良い方法は、単純に Google App Engine をダウンロードし、組み込みの専用 http サーバーを使用することです。GAE SDK に付属するフレームワークはリロードを処理し、.py モジュールを特定のディレクトリに配置できるようにします。


GAE SDK をダウンロードしてインストールしたくない場合は、次の方法をお試しください。このコードを使用して、要求が isapi_wsgi に到着すると、ハンドラーはホーム ディレクトリで py モジュールを探し、それをロードします。モジュールが既にロードされている場合、ファイルの「最終変更時刻」をチェックし、最終変更時刻が前回のロードからの時刻よりも遅い場合は、モジュールを再ロードします。単純なケースでは機能しますが、ネストされたモジュールの依存関係がある場合は脆弱になると思います。

import sys
import os
import win32file
from win32con import *

# dictionary of [mtime, module] tuple;  uses file path as key
loadedPages = {}

def request_handler(env, start_response):
    '''Demo app from wsgiref'''
    cr = lambda s='': s + '\n'
    if hasattr(sys, "isapidllhandle"):
        h = None
        # get the path of the ISAPI Extension DLL
        hDll = getattr(sys, "isapidllhandle", None)
        import win32api
        dllName = win32api.GetModuleFileName(hDll)
        p1 = repr(dllName).split('?\\\\')
        p2 = p1[1].split('\\\\')
        sep = '\\'
        homedir = sep.join(p2[:-1])

        # the name of the Python module is in the PATH_INFO
        moduleToImport = env['PATH_INFO'].split('/')[1]

        pyFile = homedir + sep + moduleToImport + '.py'

        fd = None
        try:
            fd = win32file.CreateFile(pyFile, GENERIC_READ, FILE_SHARE_DELETE, None, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0)
        except Exception as exc1:
            fd = None

        if fd is not None:
            # file exists, get mtime
            fd.close()
            mt = os.path.getmtime(pyFile)
        else:
            mt = None


        if mt is not None:
            h = None
            if not pyFile in loadedPages:
                # need a new import
                if homedir not in sys.path:
                    sys.path.insert(0, homedir)

                h = __import__(moduleToImport, globals(), locals(), [])
                # remember
                loadedPages[pyFile] = [mt, h]
            else:
                # retrieve handle to module
                h = loadedPages[pyFile][1]
                if mt != loadedPages[pyFile][0]:
                    # need to reload the page
                    reload(h)
                    loadedPages[pyFile][0] = mt

            if h is not None:
                if 'handler' in h.__dict__:
                    for x in h.handler(env, start_response):
                        yield x
                else:
                    start_response("400 Bad Request", [('Content-Type', 'text/html')])
            else:
                start_response("404 Not Found", [('Content-Type', 'text/html')])
                yield cr()
                yield cr("<html><head><title>Module not found</title>" \
                             "</head><body>")
                yield cr("<h3>404 Not Found</h3>")
                yield cr("<h3>No handle</h3></body></html>")

        else:
            start_response("404 Not Found", [('Content-Type', 'text/html')])
            yield cr()
            yield cr("<html><head><title>Module not found</title>" \
                 "</head><body>")
            yield cr("<h3>404 Not Found</h3>")
            yield cr("<h3>That module (" + moduleToImport + ") was not found.</h3></body></html>")


    else:
        start_response("500 Internal Server Error", [('Content-Type', 'text/html')])
        yield cr()
        yield cr("<html><head><title>Server Error</title>" \
                 "</head><body><h1>Server Error - No ISAPI Found</h1></body></html>")


# def test(environ, start_response):
#     '''Simple app as per PEP 333'''
#     status = '200 OK'
#     start_response(status, [('Content-type', 'text/plain')])
#     return ['Hello world from isapi!']


import isapi_wsgi
# The entry point(s) for the ISAPI extension.
def __ExtensionFactory__():
    return isapi_wsgi.ISAPISimpleHandler(request_handler)


def PostInstall(params, options):
    print "The Extension has been installed"


# Handler for our custom 'status' argument.
def status_handler(options, log, arg):
    "Query the status of the ISAPI?"
    print "Everything seems to be fine..."


if __name__=='__main__':
    # This logic gets invoked when the script is run from the command-line.
    # In that case, it installs this module as an ISAPI.

    #
    # The API provided by isapi_wsgi for this is a bit confusing.  There
    # is an ISAPIParameters object. Within that object there is a
    # VirtualDirs property, which itself is a list of
    # VirtualDirParameters objects, one per vdir.  Each vdir has a set
    # of scriptmaps, usually this set of script maps will be a wildcard
    # (*) so that all URLs in the vdir will be served through the ISAPI.
    #
    # To configure a single vdir to serve Python scripts through an
    # ISAPI, create a scriptmap, and stuff it into the
    # VirtualDirParameters object. Specify the vdir path and other
    # things in the VirtualDirParameters object.  Stuff that vdp object
    # into a sequence and set it into the ISAPIParameters thing, then
    # call the vaguely named "HandleCommandLine" function, passing that
    # ISAPIParameters thing.
    #
    # Clear as mud?
    #
    # Seriously, this thing could be so much simpler, if it had
    # reasonable defaults and a reasonable model, but I guess it will
    # work as is.

    from isapi.install import *

    # Setup the virtual directories -
    # To serve from root, set Name="/"
    sm = [ ScriptMapParams(Extension="*", Flags=0) ]
    vdp = VirtualDirParameters(Name="wsgi", # name of vdir/IIS app
                              Description = "ISAPI-WSGI Demo",
                              ScriptMaps = sm,
                              ScriptMapUpdate = "replace"
                              )

    params = ISAPIParameters(PostInstall = PostInstall)
    params.VirtualDirs = [vdp]
    cah = {"status": status_handler}

    # from isapi.install, part of pywin32
    HandleCommandLine(params, custom_arg_handlers = cah)

このモデルを使用して、http://foo/wsgi/bar を要求すると、ホーム ディレクトリから bar.py を WSGI .dll ファイルと共にロードしようとします。bar.py が見つからない場合は、404 が返されます。最後の実行以降に bar.py が更新されている場合は、リロードされます。バーをロードできない場合は、500 が返されます。

bar.py は、 というメソッドをパブリックにエクスポートする必要がありますhandler。そのメソッドはジェネレータでなければなりません。そのようです:

import time

def handler(env, start_response):
    start_response("200 OK", [('Content-Type', 'text/html')])
    cr = lambda s='': s + '\n'
    yield cr("<html><head><title>Hello world!</title></head><body>")
    yield cr("<h1>Bargle Bargle Bargle</h1>")
    yield cr("<p>From the handler...</p>")
    yield cr("<p>(bargle)</p>")
    yield cr("<p>The time is now: " + time.asctime() + " </p>")
    yield cr("</body></html>")

__all__ = ['handler']

しかし、私が言ったように、Windows を使用して Python Web アプリケーションを開発するには、おそらく GAE がより良い方法だと思います。

于 2012-03-20T04:12:06.727 に答える