Please help!
I am new to Swagger and to writing flask APIs. We are still researching the best practices, so I needed to create some routes using Blueprint and swag_from:
from flasgger import swag_from
While i have one other route that is using Blueprint and flask_restx package and has get() and post() methods in it. As a result, my swagger documentation is split between two different pages:
a) http://127.0.0.1:5000/apidocs/ - for routes using Blueprint and swag_from b) my Api's root url - for the endpoint that's using flask_restx
I want to merge these two swagger pages into a single swagger page. Is there a way to do it? And is it generally possible to do this while having different routes written using different packages as described above?
Thanks a lot! Any pointers on how to this best would be much appreciated!