pyserveX/pyserve/__init__.py
2025-12-03 12:54:45 +03:00

33 lines
601 B
Python

"""
PyServe - HTTP web server written on Python
"""
__version__ = "0.8.0"
__author__ = "Ilya Glazunov"
from .asgi_mount import (
ASGIAppLoader,
ASGIMountManager,
MountedApp,
create_django_app,
create_fastapi_app,
create_flask_app,
create_starlette_app,
)
from .config import Config
from .server import PyServeServer
__all__ = [
"PyServeServer",
"Config",
"__version__",
# ASGI mounting
"ASGIAppLoader",
"ASGIMountManager",
"MountedApp",
"create_fastapi_app",
"create_flask_app",
"create_django_app",
"create_starlette_app",
]