-
Currently things like coveralls and unit tests files are included in the `requirements.txt`. The only way these extra packages only used for unit tests and development are separated are via a comment.…
-
I tried adding a very simple step in my tox build to check that my readme is correct:
```
[testenv:readme]
deps =
restructuredtext-lint
skip_install = true
commands = rst-lint README.rst
…
-
Hey!
Could you release new version of flasgger? I want to use this https://github.com/rochacbruno/flasgger/pull/109 feature.
Thanks in advice.
-
I'd like to be able to 401 on accesses to the swagger UI that don't have the correct credentials in their headers. Is there currently a way to do this in flasgger, or is it something that needs to be…
-
I am new to **flasgger** and was going through the repo and some examples. I need to make a POST request handler config file. Below mentioned link has a POST request and fits my use-case perfectly.
…
-
Hi,
One of my application requires to upload a file through flasgger. I am not sure, how to define the conf.
Below is what I did reading the Swagger docs:
`
"""
This API let's you train wor…
-
Hi there,
First off great project! Just a general question. Not sure if this is the same as issue #88
I'm using the `flask-restful` and would like to define my API externally in a YAML file and …
-
I have tried to use Zappa 2 times from 2 different Django apps to 2 different AWS accounts and I get the exact same result both times.
The deployment seems to work and I get this
```
100%|##########…
-
Hey, I tested flasgger with Flask alone and work pretty well, good work!
I'm working with a flask proyect and we are using `FlaskRestless` extension, how can I make it work with `preprocessors` usi…
-
```python
def requires_basic_auth(f):
"""Decorator to require HTTP Basic Auth for your endpoint."""
def check_auth(username, password):
logger.info('2'*100)
user = Use…