asgi cgi handler
1.0.0
ejecutar scripts cgi dentro de un servidor asgi
uso sencillo
import uvicorn
from asgi_cgi import HTTPCGIHandler , WebsocketCGIHandler
uvicorn . run ( HTTPCGIHandler ())
from fastapi import FastAPI
from asgi_cgi import HTTPCGIHandler , WebsocketCGIHandler , SSECGIHandler
app = FastAPI ( title = "CGI Server" )
app . mount ( "/cgi-bin" , HTTPCGIHandler ()) # type: ignore
app . mount ( "/ws" , WebsocketCGIHandler ()) # type: ignore
app . mount ( "/sse" , SSECGIHandler ()) # type: ignore
Como puede ver, tenemos soporte para websocket, que está inspirado en websocketd. Actualmente, se necesitan más pruebas.
WebsocketCGIHandler
enruta solicitudes a ejecutables de punto final e introduce datos de websocket en la entrada estándar del proceso y envía la salida estándar al cliente línea por línea.
SSECGIHandler
, significa server send event
, es como el websocket, pero solo envía la salida estándar al cliente.
ErrHandler = Callable [[ bytes ], Union [ Awaitable [ None ], None ]]
class HTTPCGIHandler :
def __init__ ( self , directory : str = ..., error_handler : ErrHandler = ...) -> None : ...
class WebsocketCGIHandler :
def __init__ ( self , directory : str = ..., error_handler : ErrHandler = ...) -> None : ...
class SSECGIHandler :
def __init__ ( self , directory : str = ..., error_handler : ErrHandler = ...) -> None : ...