jgarzik / python-bitcoinrpc

Python interface to bitcoin's JSON-RPC API
GNU Lesser General Public License v2.1
642 stars 307 forks source link

Defer connection until a request is made, and reconnect when necessary #49

Open luke-jr opened 9 years ago

luke-jr commented 9 years ago

Since 02d6ed6, any problem with the connection has been permanently fatal to all future requests. This solves that with a new SharedConnection class that recreates the internal http.client connection as needed.