Ben Fitzhardinge

Results 38 comments of Ben Fitzhardinge

It would be really great if someone could at least paste an example of how these headers might be used, i seem to be going through file after file of...

I ended up working it out, here's how i solved the problem security.py ```python from fastapi import Depends, HTTPException from fastapi.security import APIKeyHeader from starlette import status X_API_KEY = APIKeyHeader(name='X-API-Key')...

@tiangolo any ideas on where this documentation should go? I'll try and work on it this week

@moreinhardt Sounds good, which file should I use in the repo to create my draft?

@st3fan can you link me to the docs about `Security(X_API_KEY)`? This might have been added since I solved my database driven API key issue

i used ``` query = "select * from tables where col in (:values)" query_value = {"values": ", ".join(address_list)} ``` which worked on mysql, but when i have multiple items it...

here's how i ended up solving it. ```python # patching list properties here because it doesn't work very well right now # i hope that in the future it will...

has this been resolved? should some of these old issues be closed?