Robert Van Ysendyck

Results 7 comments of Robert Van Ysendyck

I had the same issue. Could not get the package working until I stumbled upon this issue. Naming the first device "default" does the trick.

we are facing the same issue. The "©" symbol in the email body is not displaying correctly and instead appears as `":copyright:"`. Surprisingly, this issue is only prevalent when emails...

I encoutered the same error as above with the get_duration function, despite the last code update. It seems that ffprobe is to blame. On my AWS EC2 instance it wasn't...

What worked for me is to create a custom authentication backend: ```python from axes.backends import AxesBackend class CustomAxesBackend(AxesBackend): def authenticate(self, request=None, username=None, password=None, **kwargs): if request is None: # Create...

Have you tried using the Retry-After header from the API's response to automatically set your wait time? When you hit the rate limit and get a 429 error, this header...

Yes, I am using this as a workaround with this package: ```python def handle_rate_limit(api_call_func, *args, **kwargs): ''' Handles the rate limit exception raised by the Freshdesk API when using the...

yes I think I used that workaround, after realizing the underlying response may be hard to get to without forking the package. For requests, which are not covered by this...