FastAPI

FastAPI is a web framework for building APIs

Operations

Operations are the HTTP request methods you can use. They are:

  • post()
  • put()
  • delete()
  • options()
  • head()
  • patch()
  • trace()

Exactly what these mean for your application since FastAPI does not put any restrictions on their use.

Put all the fixed paths first since they paths are evaluated in order.