Vlad Dmitrievich
Vlad Dmitrievich
As a workaround you can configure `parso` logger in `settings.py` to show only warning messages: ```python import logging logging.getLogger('parso').setLevel(logging.WARNING) ```
Yes, but HTTP server implementation is hardcoded. Let's say I want to use `protobuf` instead of JSON, or my request body looks a little different. Or I want to do...
Sounds good! But will `callable` approach you can use both functions and classes (classes that implement `__call__` method). It's your decision, just saying that function is the simplest API abstraction...
If you want to separate configuration and execution steps, yes, class approach makes more sense.
Any updates on this PR?
Unfortunately this library uses implicit monkey patching, instead of providing simple wrapper or explicit monkey patch apply API. In README example by importing `sqs_extended_client` module we actually rewrite `boto3.Session` with...