Giter Club home page Giter Club logo

Comments (5)

rantav avatar rantav commented on August 12, 2024

Repeating the swagger.docs call each time does seem to work but I would discourage that. Mainly bc you're repeating some definitions that you later might want to modify. And you might forget to do so in all files.
I would create a single file with the instantiation of swagger.docs just once and import that file and the instance of docs in all other places.

from flask-restful-swagger.

phb95 avatar phb95 commented on August 12, 2024

I'm probably missing something here but as far as each module instantiates a blueprint which is in turn passed to swagger.docs, I don't understand how to use the unique instantiation of swagger.docs.
To follow your advice and avoid repeating the call to swagger.docs, I've put it in a helper function:

def wrap_with_docs(api):
    api = swagger.docs(api, ...)
    return api

which I call in every module:

my_blueprint = Blueprint('my_blueprint', __name__)
api = wrap_with_docs(Api(my_blueprint))

from flask-restful-swagger.

rantav avatar rantav commented on August 12, 2024

Oh I see your point. I wasn't familiar with the usage of Blueprints within Flask (so far my apps were pretty minimalistic when using Flask). I didn't notice that each Blueprint creates a new api instance.

So indeed your solution of wrapping the call to swagger.docs makes sense.
Sorry for the late response, I was on vacation...

from flask-restful-swagger.

kathychurch avatar kathychurch commented on August 12, 2024

Hi phb95, I know I am coming into this very late, but did you manage to find a way to have the APIs from all of your blueprints appear on one swagger spec.html page?

from flask-restful-swagger.

phb95 avatar phb95 commented on August 12, 2024

Hi jonny166,

Yes I did, by calling swagger.docs on each Api object.
Afterwards, I simply followed rantav advice to not repeat the swagger.docs call by wrapping it into a helper function.

Hope this helps.

from flask-restful-swagger.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.