選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

main.py 218 B

1234567891011121314
  1. from fastapi import FastAPI
  2. app = FastAPI()
  3. @app.get("/")
  4. def root():
  5. return {"message": "Hello World!"}
  6. @app.get("/user")
  7. def get_users():
  8. return {
  9. {"name": "almaz"},
  10. {"name": "madi"}
  11. }