2017-02-15 202 views
0

我在玩耍,試圖用getblocktemplate方法拉比特幣塊模板。我得到了一個響應,但當我嘗試從字節解碼時,我收到一個錯誤。檢查出來:UnicodeDecodeError:'utf-8'編解碼器無法解碼字節(python)

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 

HOST = "184.70.15.166" # choose a node from blockchain.info 
PORT = 8333 

s.connect((HOST, PORT)) 
s.send(msg) 
s.recv(1024) 

x = random.randrange(320) 
print(x) 

data = json.dumps({'version': '2.0', 'id': 'x', 'method': 'getblocktemplate'}).encode('utf-8').strip() 
s.send(data) 
resp = s.recv(2048).decode('utf8') 
print (resp) 


# prints id number - 
315 

# prints response (in bytes) - 
b'\xf9\xbe\xb4\xd9verack\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00]\xf6\xe0\xe2\xf9\xbe\xb4\xd9alert\x00\x00\x00\x00\x00\x00\x00\xa8\x00\x00\x00\x1b\xf9\xaa\xea`\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\x7f\x00\x00\x00\x00\xff\xff\xff\x7f\xfe\xff\xff\x7f\x01\xff\xff\xff\x7f\x00\x00\x00\x00\xff\xff\xff\x7f\x00\xff\xff\xff\x7f\x00/URGENT: Alert key compromised, upgrade required\x00F0D\x02 e?\xeb\xd6A\x0fG\x0fk\xae\x11\xca\xd1\x9cHA;\xec\xb1\xac,\x17\xf9\x08\xfd\x0f\xd5;\xdc:\xbdR\x02 m\x0e\x9c\x96\xfe\x88\xd4\xa0\xf0\x1e\xd9\xde\xda\xe2\xb6\xf9\xe0\r\xa9L\xad\x0f\xec\xaa\xe6n\xcfh\x9b\xf7\x1bP\xf9\xbe\xb4\xd9ping\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00-8\xc9\x03\xd7\xbc\x0f\xc9\xc2\x1d36' 

# try to decode from bytes and get this error - 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
    File "/usr/lib/python3/dist-packages/spyderlib/widgets/externalshell/sitecustomize.py", line 699, in runfile 
    execfile(filename, namespace) 
    File "/usr/lib/python3/dist-packages/spyderlib/widgets/externalshell/sitecustomize.py", line 88, in execfile 
    exec(compile(open(filename, 'rb').read(), filename, 'exec'), namespace) 
    File "/home/myfolder/Desktop/bitcoin/bitcoin 2017/connection.py", line 66, in <module> 
    print (resp.decode('utf8')) 
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf9 in position 0: invalid start byte 

你怎麼看?我一直在尋找所有的網絡,並找不到修復工程。

+0

似乎's.recv'收到的數據不是正確的'utf-8'編碼,你可能要仔細檢查服務器的api。 –

+0

getblocktemplate方法與json-rpc相當標準。我想知道我是否在數據格式上犯了一個錯誤。我真正想要做的就是使用getblocktemplate方法拖動最新的塊模板。這讓我瘋狂。 – Engine

回答

1

一個直接的解決方案是使用binascii像這樣:

例如,你的數據是:

a = b'\xf9\xbe\xb4\xd9verack\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00]\xf6\xe0\xe2\xf9\xbe\xb4\xd9alert\x00\x00\x00\x00\x00\x00\x00\xa8\x00\x00\x00\x1b\xf9\xaa\xea`\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\x7f\x00\x00\x00\x00\xff\xff\xff\x7f\xfe\xff\xff\x7f\x01\xff\xff\xff\x7f\x00\x00\x00\x00\xff\xff\xff\x7f\x00\xff\xff\xff\x7f\x00/URGENT: Alert key compromised, upgrade required\x00F0D\x02 e?\xeb\xd6A\x0fG\x0fk\xae\x11\xca\xd1\x9cHA;\xec\xb1\xac,\x17\xf9\x08\xfd\x0f\xd5;\xdc:\xbdR\x02 m\x0e\x9c\x96\xfe\x88\xd4\xa0\xf0\x1e\xd9\xde\xda\xe2\xb6\xf9\xe0\r\xa9L\xad\x0f\xec\xaa\xe6n\xcfh\x9b\xf7\x1bP\xf9\xbe\xb4\xd9ping\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00-8\xc9\x03\xd7\xbc\x0f\xc9\xc2\x1d36' 

你可以這樣做:

import binascii 

# binascii.b2a_uu takes at most 45 bytes at once 
# this why i'm splitting the data into chunks of 45 bytes at most 
b = [a[k:k+45] for k in range(0, len(a), 45)] 

# You can also use: 
# binascii.b2a_uu(k).decode('UTF8') 
final = "".join(binascii.b2a_uu(k).decode() for k in b) 

print(final) 

輸出:

M^;ZTV79E<F%C:P   !=]N#B^;ZTV6%L97)T   *@ ; 
M^:KJ8 $    /___W\  ____?_[__W\!____?P #___]_ 
M /___W\ +U521T5.5#[email protected]<[email protected]:V5Y(&-O;7!R;VUI<V5D+"!U<&=R861E 
M(')E<75I<F5D $8P1 (@93_KUD$/1P]KKA'*T9Q(03OLL:PL%_D(_0_5.]PZ 
MO5("(&T.G);^[email protected]\![[email protected]#:E,K0_LJN9NSVB;]QM0^;ZTV7!I;F< 
7   @ M.,D#U[P/R<(=,S8 
+0

謝謝,但它似乎還沒有產生可理解的結果。我想知道我是否在數據格式上犯了一個錯誤。 – Engine

+0

如果您對解碼輸出數據有所瞭解,請分享。否則,由Vitalik構建的比特幣包也使用binascii。 –

+1

我相信你的回答是適用的。我認爲我在輸出數據類型時出錯。這個響應需要是一個json對象,我需要處理json的負載和一個無法編碼爲utf-8的字節的問題。隨我學習。 – Engine

0

我發現所謂的比特幣的python-bitcoinrpc一個python RPC庫 - 解決我的問題:

rpc_connection = AuthServiceProxy( 'http://%s:%[email protected]:8332 '%(' rpc_username', 'rpc_password'))

block_template = rpc_connection。 getblocktemplate()

打印(block_template)

友好的API和作品飛馳。