pythonbook/实例学习 nicegui/main.py

21 lines
371 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python3
import frontend
from fastapi import FastAPI
import uvicorn
app = FastAPI()
@app.get('/')
def read_root():
return {'Hello': 'World'}
frontend.init(app)
def main():
# 使用uvicorn运行FastAPI应用指定主机地址和端口
uvicorn.run(app, host="127.0.0.1", port=8000, log_level="info")
if __name__ == "__main__":
main()