We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f9f5483 + ff4b914 commit e0b04cfCopy full SHA for e0b04cf
bitcoin/rpc.py
@@ -10,7 +10,18 @@
10
# propagated, or distributed except according to the terms contained in the
11
# LICENSE file.
12
13
-"""Bitcoin Core RPC support"""
+"""Bitcoin Core RPC support
14
+
15
+By default this uses the standard library ``json`` module. By monkey patching,
16
+a different implementation can be used instead, at your own risk:
17
18
+>>> import simplejson
19
+>>> import bitcoin.rpc
20
+>>> bitcoin.rpc.json = simplejson
21
22
+(``simplejson`` is the externally maintained version of the same module and
23
+thus better optimized but perhaps less stable.)
24
+"""
25
26
from __future__ import absolute_import, division, print_function, unicode_literals
27
import ssl
0 commit comments