Chris
Chris
Until a fix is merged, editing the private key solves this issue. I've replaced \n` with `\\n`. For local testing I've hardcoded these values in my `settings.py`. ``` # Sensitive...
This appears to be a duplicate of #25 and may have been solved in #44.
This is an answer to @abhinavsingh's question (not the main security issue). I believe you can disable the default behavior by adding a custom pipeline to the beginning of your...
Using @RevolutionTech's method, I put together a Dockerfile that should create a usable cryptography package. ``` FROM amazon/aws-lambda-python:3.8 WORKDIR /packaged RUN yum install -y libffi libffi-devel gcc python3-devel openssl11 openssl11-devel...
@minyor - It looks like you may be having the same problem I was having earlier. In my case, the promise was hiding the true error -`form.submit is not a...
Subclassing `ModelChooserMixin` allowed me to add search to a third party model. It's not quite as nice as built in support, but it seems to be a valid workaround for...
Depending on your goals, this custom serializer may be a little cleaner. ```python @field_serializer('history') def serialize_history(self, history: list[Content]): return [x.to_dict() for x in history] ```