fastapi-jsonrpc icon indicating copy to clipboard operation
fastapi-jsonrpc copied to clipboard

JSON-RPC server based on fastapi

Results 16 fastapi-jsonrpc issues
Sort by recently updated
recently updated
newest added

Hi, Does this library support the usage of the query parameters? (example: POST http://127.0.0.1:8000/api/v1/jsonrpc?skip=10) If yes, can you provide an example? Thank you! Fabio

Bumps [mistune](https://github.com/lepture/mistune) from 0.8.4 to 2.0.3. Release notes Sourced from mistune's releases. Version 2.0.2 Fix escape_url via lepture/mistune#295 Version 2.0.1 Fix XSS for image link syntax. Version 2.0.0 First release...

dependencies

Hey folks Great lib and I'm using it with my projects quite often now I saw one strange behavior that I suppose needs some fixing or enhancement Here I'm sending...

Hey! I've found this lib quite great to combine both fastapi and rpc together. Great work! But I'm struggling with only one thing: if I'm trying to define rpc methods...

invalid
wontfix

Hi, With the following test code: ```python import fastapi_jsonrpc as jsonrpc app = jsonrpc.API() api = jsonrpc.Entrypoint("/") @api.method() def simple() -> None: return None app.bind_entrypoint(api) ``` executed as `bin/uvicorn example_service:app...

bug
enhancement

closes #18 Fastapi offers a router functionality detailed [here](https://fastapi.tiangolo.com/tutorial/bigger-applications/). It can be really useful to split the methods into many files. This PR adds an option to `bind_entrypoint` so that...

Hi, Fastapi offers a router functionality detailed [here](https://fastapi.tiangolo.com/tutorial/bigger-applications/). It can be really useful to split the methods into many files. It would be nice to be able to do the...

Nice library! I was wondering if there are any plans to also support websockets (which is a nice extra fastapi provides), like these libraries do?: https://jsonrpcclient.readthedocs.io/en/latest/ https://github.com/codemation/easyrpc

enhancement
help wanted

Add docs for Params usage

documentation

**The problem:** `clone_dependant()` seems to copy the dependant, but it's not. When you try to append something to cloned dependant's fields you edit the original fields too. ``` cloned_dependant =...