registerASGIApp(application=(), path=None, ports=[])
この関数は、FlaskやDjangoなどのASGI準拠のアプリケーションをフックして、Houdiniウェブサーバーをサーバーバックエンドとして使用することができます。
import os import hwebserver import testsite.asgi hwebserver.registerWSGIApp(testsite.asgi.application, "/") hwebserver.run(8000, debug=True)
Note
現在のところ、HTTPのみに対応し、この機能はアルファ版です。