explodinglabs / jsonrpcclient

Generate JSON-RPC requests and parse responses in Python

Home Page:https://www.jsonrpcclient.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Request method returns single quoted json string

mr-m0nst3r opened this issue · comments

Hi there, it's excellent work.
I met a problem here:

>>> from jsonrpcclient.requests import Request
>>> Request.hello()
{'jsonrpc': '2.0', 'method': 'hello', 'id': 1}

The return is single quoted json string, which may cause problems here. How could I use double quote (")?
Any config should I add?

Looking forward.
Thank you.