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
My answer could be a bit naive but isn't the "file:" directive the answer to your problem ?
from : https://github.com/flasgger/flasgger