Nycholas Oliveira
Nycholas Oliveira
Hello, Very cool this project that would help a lot. Would be some changes that break old code, then I will look for the next version. Thank you.
Hi @Kaveshnikov, > I suggest to refactor all places with such an approach to create only one logging record. For example, in [this place](https://github.com/cenobites/flask-jsonrpc/blob/08e065142f9414bb085b702e4a92266ce48b757a/src/flask_jsonrpc/site.py#L147) it will be like this: `...
Some examples to further information: ``` >>> try: ... 1/0 ... except ZeroDivisionError as e: ... logging.exception('xxx') ... ... ERROR:root:xxx Traceback (most recent call last): File "", line 2, in...
@marthinus-engelbrecht yes, of course. Thank you!
[Here](https://github.com/cenobites/flask-jsonrpc/blob/master/tests/test_client.py#L30) example of the test with pytest.
Yes, it's pretty good. My idea here is to create a schema definition for API Browser that allows setting the `splitter` character, like this: ``` browse = JSONRPCBrowe(splitter='.') app =...
It seems awesome! I need to explore more the features of `Annotated` decorator, 😄.
Maybe here, instead of creating an error handling by scratch, uses the Flask Error Handling: https://flask.palletsprojects.com/en/2.2.x/errorhandling/#error-handlers I will check out how to use that, ;).
Yes, it sounds good. My idea here is to create a schema definition for API Browser that allows setting the what parse the API Browser will use to render the...
Once the API Browser has the schema definition, we can overload the UI Template and extends that with some code that will help the API Browser put the JWT Token...