__init__.py 737 B

12345678910111213141516
  1. """
  2. This module defines Connexion APIs. A connexion API takes in an OpenAPI specification and
  3. translates the operations defined in it to a set of Connexion Operations. This set of operations
  4. is implemented as a framework blueprint (A Flask blueprint or framework-specific equivalent),
  5. which can be registered on the framework application.
  6. For each operation, the API resolves the user view function to link to the operation, wraps it
  7. with a Connexion Operation which it configures based on the OpenAPI spec, and finally adds it as
  8. a route on the framework blueprint.
  9. When the API is registered on the Connexion APP, the underlying framework blueprint is registered
  10. on the framework app.
  11. """
  12. from .abstract import AbstractAPI # NOQA