In flask-restplus, I want to model the response body which has nested list strucure, so whenever make api call, response body will be returned what I expected. In responce body, it has a nested structure, I don’t know how to document that. Am I gonna use fields.Dict()? can anyone point me out here how to make this happen in flask-restplus?
Tag: flask-restplus
How to accept None for String type field when using Flask-RESTPlus
I am just starting develop with flask-restplus and I am not a native speaker, but I will try to describe my question as clear as I can. I know there is a fields module in flask that help us define and filter response data type, such as String, Integer, List and so on. Is there any way to allow NULL
Configure Python Flask RESTplus app via TOML file
Based on the Configuration Handling Documents for Flask the section of Configuring from Files mentions a possibility to configure the App using files however it provides no example or mention of files that are not Python Files. Is it possible to configure apps via files like config.yml or config.toml? My Current flask app has configurations for two distinct databases and