While using webargs flassger is looking for templates in lib/python3.6/site-packages/webargs

164 Views Asked by At

I am using flask-restful, webargs, marshmallow and flasgger. My code looks something like this:

#flasgger_yamlsv2 dir is in resources, so is this method
@swag_from('flasgger_yamlsv2/xyz.yml')
#MySchema is a marshmallow schema
@use_args(MySchema())
def get(self, args):
    data = method1(args)
    json.loads(data)

On loading apidocs url the templates are being looked for in lib/python3.6/site-packages/webargs . Things work when I move flasgger_yamlsv2 to that location. However I do not want to. Want to keep them as part of the src and not the lib

1

There are 1 best solutions below

1
On

My answer could be a bit naive but isn't the "file:" directive the answer to your problem ?

@app.route('/colors/<palette>/')
def colors(palette):
    """
    file: colors.yml
    """
    ...

from : https://github.com/flasgger/flasgger