Eshaan Bansal
Eshaan Bansal
Hi. You make a solid point and ideally it should not have been there but I don't know how soon I'll be able to ship a new release with this...
I haven't tried using durin with OAuth but I do believe it would require additional setup steps. First of all, a google (or some other) OAuth token won't work with...
Hi, @hodunov. It makes me glad that you found this library useful. So I can better address this issue, can you let me know the python and django versions your...
If you see the code inside `durin/models.py`, we have a custom [`AuthTokenManager`](https://github.com/Eshaan7/django-rest-durin/blob/main/durin/models.py#L83) where the `create` method is overwritten. It seems as though that the `get_or_create` in your example is calling...
Some initial code is there in branch: [`dev-issue7`](https://github.com/Eshaan7/django-rest-durin/tree/dev-issue7)
Hello. At the moment, there's no way to request cancellation of a running command but I can see how it could be an useful addition to this package. Meanwhile, you...
You're welcome, @njxqlus! This feature is available in the [v1.9.0](https://github.com/eshaan7/Flask-Shell2HTTP/releases/tag/v1.9.0) release which is already [live on pypi](https://pypi.org/project/Flask-Shell2HTTP/).
Hi. That would take alot of modification and I don't plan on including any language support. You can maybe try by just removing the japanese characters(except for the numerics).
Same issue while running with Docker.
Your code but formatted: ```python class ApiRequestTableSerializer(serializers.Serializer): requested_at = serializers.DateTimeField(format='%d %b %Y') path = serializers.CharField(source="get_path", read_only=True) class Meta: model = APIRequestLog fields = ['id', 'requested_at', 'response_ms', 'status_code', 'method', 'user', 'path',...