我是 EOS 区块链的新手,我尝试设置一个本地节点并使用 API 从主网上拉交易和块数据。
我正在关注 EOS 开发者网站上的示例 API。
import requests
url = "http://host/:port/v1/chain/get_block"
headers = {'content-type': 'application/x-www-form-urlencoded; charset=UTF-8'}
response = requests.request("POST", url, headers=headers)
print(response.text)
如果有人能给我提供 Python 中的示例代码,我将不胜感激。我需要一个账户来同步主网的交易吗?