pycgminer
pycgminer copied to clipboard
Python wrapper for cgminer RPC API.
Due to a missing comma in the stats command output, the output cannot be parsed as a json. This is simply fixed by replacing '}{' with '},{' This fixes #4
Fixed issue #1. Doing it this way allows it to work on remote cgminer instances.
I am getting `ValueError: Expecting , delimiter: line 1 column 221 (char 220)` error when calling the `stats` command on cgminer 4.8.0, 4.9.0 and bmminer 1.0.0 The problem occurs due...
I get the following exception when running it against a remote miner (cgminer 3.7.2) ``` python 27 received = self._receive(sock) 28 finally: ---> 29 sock.shutdown(socket.SHUT_RDWR) 30 sock.close() 31 error: [Errno...