2024-06-08から1日間の記事一覧
PythonでWeb APIを実装するFastAPIというのがあって、次のようにやればなんかサーバーがたつ。 import uvicorn from fastapi import FastAPI app = FastAPI() @app.get("/hello") def hello(): return "hello" uvicorn.run(app, host="0.0.0.0", port=8000) …
PythonでWeb APIを実装するFastAPIというのがあって、次のようにやればなんかサーバーがたつ。 import uvicorn from fastapi import FastAPI app = FastAPI() @app.get("/hello") def hello(): return "hello" uvicorn.run(app, host="0.0.0.0", port=8000) …