happyleavesaoc
happyleavesaoc
I receive a JSON string and want to construct a `JSONRPC20Response` object, like: `JSONRPC20Response.from_json(my_str)` or ` JSONRPC20Response(**json.loads(my_str))` However, `JSONRPC20Response` expects `_id` instead of `id`, so the response's `id` is always...
Write a synchronous wrapper around the async core. This would make the module easier to use in simple scripts, and wouldn't require knowledge of async.
We now use asyncio. Update the README as necessary, and add some more examples of usage.
I'm attempting to use `event-calendar` with sveltekit's SSR-only mode, but the server-rendered calendar is not fully initialized. I suspect that `onMount` may be the culprit here. Example component: ```js import...