spumer

Results 73 comments of spumer

Good! Cause i start using this project and got all problems which has been fixed in PRs. And thank you for response

I copy original module and apply all PR changes for my copy. All works fine, but this really sad when i see no progress all this time

Similar issue for Channel https://github.com/mosquito/aio-pika/issues/331

Same issue: ``` >>> # stanard library >>> dt = datetime.datetime.strptime('2015-06-15T11:19:57 +0500', '%Y-%m-%dT%H:%M:%S %z') >>> str(datetime.timezone(dt.utcoffset())) 'UTC+05:00' >>> >>> # dateutil library >>> dt2 = dateutil.parser.parse('2015-06-15T11:19:57 UTC+05:00') >>> str(datetime.timezone(dt2.utcoffset())) 'UTC-05:00'...

Hi! Yea, here is no way to make it I'm using `app.include_router` to add routes to Swagger from other FastAPI application, but this does not work for `fastapi_jsonrpc.API` object. I...

And i think re-bind with same path it's bad idea. We should use `include_router` logic as described in fastapi link you posted above

I think I will work with websockets in 2021 and may be implement this feature for fastapi-jsonrpc, cause it's main lib in production

Request without ID is Notification https://www.jsonrpc.org/specification#notification Response id This member is REQUIRED. This is why notification has no response, cause ID required for it