今天,微信群里一个朋友遇到带宽超限无法操作的问题,向我求助,于是我打算代理给他两个2个SP,这样就能解决这个问题了。结果却遇到了问题,解决问题以后,我想大家可能会遇到类似情况,就写出来分享一下,希望对遇到类似问题的朋友有所帮助。  (图源 :[pixabay](https://pixabay.com)) # 代码出问题了 在我的程序中,我使用如下函数来处理SP代理 ``` def delegate(steem, from_a, to, sp): try: vests = '{} VESTS'.format(Converter().sp_to_vests(sp)) steem.delegate_vesting_shares(to, vests, from_a) except: print('Something Wrong!') ``` 其中steem是Steem类示例,from、to不用解释啦,sp是要代理的SP数量。 因为这段代码以前一直好用,我也没想太多,直接执行,结果等了半天没有响应。杀掉程序后,我就想哪出问题了呢?后来想起来[节点 steemd.steemit.com 在1月6日停止使用了](https://steemit.com/steemitdev/@oflyhigh/steemd-steemit-com-1-6-api-steemit-com),为此我还特意发帖给大家提示,没想到我的旧代码居然还没更新节点。 # 定位问题 为了更好的理解这个问题,我做了如下测试:  脚本会一直等待下去 如果换成  脚本响应正常。 于是将我脚本创建Steem类实例的代码由: >`steem=Steem()` 更新为 > `steem=Steem(nodes=['https://api.steemit.com'])` 信心满满的再次运行,这次总归该代理成功了吧?嗯,怎么还是运行半天没有响应?这不科学呀,又是灵异事件,问题会出在哪里呢?最终我的目光锁定在***`Converter().sp_to_vests(sp)`***这句代码上。 看了一下Converter类的初始化代码,其中有如下语句: >`self.steemd = steemd_instance or shared_steemd_instance()` 也就是说,如果不传入steemd,则使用共享steemd实例,而共享steemd实例尚不存在的话,使用如下代码创建 >`_shared_steemd_instance = stm.steemd.Steemd(nodes=get_config_node_list())` ***注:此处nodes=get_config_node_list()是多余的,详见下边代码*** 而如果我们没有配置node列表,Steemd实例初始化中就会使用代码中默认的节点 >`nodes = get_config_node_list() or ['https://steemd.steemit.com']` 看到问题了吗? ***代码中还在使用`https://steemd.steemit.com`这个已经停用的节点!*** # 解决问题 好了,我们已经发现了问题所在 * 一个是创建Steem类实例的时要使用新节点 * 一个是共享Steem类实例使用了代码旧的节点 那么要解决这些问题就很简单了。 ### 解决方法 * 创建实例时使用: `steem=Steem(nodes=['https://api.steemit.com'])` * 调用Converter类时指定实例: `Converter(steemd_instance=steem).sp_to_vests(sp)` #### 其它方法 上边的解决方法是手工指定节点nodes并且避免使用了共享节点。那么还有其它办法解决吗?当然有,还不止一个: * 将steem-python库代码中的***`https://steemd.steemit.com`***替换为***`https://api.steemit.com`*** * 设置默认节点列表:***`steempy set nodes https://api.steemit.com`*** 使用第二种方法后,再执行上边的代码  一切正常。 # 总结 ***steem RPC节点更新*** 以及 ***steem-python 内部使用旧的RPC节点***导致了我们以前可用的程序出现了问题。 本文详细分析了Steem类实例创建过程中指定节点的问题,以及共享节点存在的问题,并从多个方向给出了如何解决这个问题。 看来,升级无小事啊,原本以为不过是改个节点而已,谁知道会出这么些问题呢。 >**我正在撰写本文时,CN区一位网友向我反应他使用steem-python实现的收取收益代码出现了问题,因为他这个问题和我文中描述的问题基本一致,所以就让他等我发文后看我文章就好了。偷个懒好爽😀**
author | oflyhigh |
---|---|
permlink | steem-python-rpc |
category | steemdev |
json_metadata | {"tags":["steemdev","steem-python","python","cn-programming","cn"],"image":["https://steemitimages.com/DQmNm5AScSeG8kvjXeNYYiktR3CVMXoAxJ8ioxdNuS9E6As/image.png","https://steemitimages.com/DQmZxomoxzSLgfAqnNyN2KUVz8RgFhPggZAi7Uw3r5cJhQe/image.png","https://steemitimages.com/DQmeVQHz6hzJxmWeJWT2KxeQVYY8UpTqm2zekV27vRSy5KA/image.png","https://steemitimages.com/DQmSiUNzFxiCBpTFi3qnLToqbfMJdew1Xqff5gnQ7cAmFXN/image.png"],"links":["https://pixabay.com","https://steemit.com/steemitdev/@oflyhigh/steemd-steemit-com-1-6-api-steemit-com"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-01-07 10:37:51 |
last_update | 2018-01-07 10:37:51 |
depth | 0 |
children | 26 |
last_payout | 2018-01-14 10:37:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 184.879 HBD |
curator_payout_value | 31.537 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,477 |
author_reputation | 6,273,582,286,730,991 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,731,555 |
net_rshares | 21,550,650,462,625 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 94,744,961,520 | 0.1% | ||
abit | 0 | 5,839,532,928,258 | 100% | ||
bue | 0 | 13,817,855,745 | 100% | ||
jademont | 0 | 161,127,989,994 | 100% | ||
slowwalker | 0 | 793,877,683,597 | 6% | ||
vi1son | 0 | 90,470,200,710 | 100% | ||
blockchainbilly | 0 | 15,803,822,229 | 50% | ||
fundurian | 0 | 42,673,902,344 | 30% | ||
deanliu | 0 | 1,162,558,611,377 | 100% | ||
rea | 0 | 1,965,326,258,719 | 100% | ||
joythewanderer | 0 | 322,149,279,071 | 60% | ||
ace108 | 0 | 260,585,237,784 | 25% | ||
magicmonk | 0 | 70,365,886,388 | 50% | ||
laoyao | 0 | 31,191,360,195 | 100% | ||
somebody | 0 | 1,158,050,502,616 | 100% | ||
midnightoil | 0 | 59,869,632,960 | 100% | ||
btsabc | 0 | 23,491,749,372 | 100% | ||
xiaohui | 0 | 750,955,655,378 | 100% | ||
oflyhigh | 0 | 2,117,921,116,385 | 100% | ||
xiaokongcom | 0 | 10,381,976,578 | 100% | ||
yulan | 0 | 15,610,037,999 | 100% | ||
chinadaily | 0 | 192,802,801,353 | 100% | ||
helene | 0 | 423,814,950,614 | 100% | ||
ethansteem | 0 | 194,333,900,281 | 100% | ||
wuyueling | 0 | 257,624,143 | 100% | ||
englishtchrivy | 0 | 77,906,827,266 | 20% | ||
profitgenerator | 0 | 1,166,577,894 | 100% | ||
damarth | 0 | 247,649,620,826 | 3% | ||
justyy | 0 | 99,164,994,359 | 17% | ||
mrtv2 | 0 | 48,292,620,309 | 100% | ||
stacee | 0 | 63,647,619,340 | 100% | ||
steemtruth | 0 | 30,742,526,312 | 10% | ||
lalala | 0 | 40,705,405,920 | 100% | ||
joseluismejia | 0 | 1,760,303,059 | 100% | ||
breezin | 0 | 1,566,504,323 | 100% | ||
devilwsy | 0 | 2,044,261,402 | 100% | ||
janiceting | 0 | 2,042,756,877 | 100% | ||
abraomarcos | 0 | 2,326,240,146 | 100% | ||
newhope | 0 | 2,102,020,991,184 | 27% | ||
dragon40 | 0 | 2,737,219,068 | 10% | ||
blackbunny | 0 | 65,722,101,485 | 100% | ||
ripperone | 0 | 1,362,096,761,160 | 29% | ||
bxt | 0 | 168,840,911,110 | 100% | ||
lingfei | 0 | 28,377,491,291 | 100% | ||
tomfair54 | 0 | 1,129,887,470 | 100% | ||
yyyy | 0 | 6,645,495,569 | 100% | ||
ygern | 0 | 9,894,857,386 | 27% | ||
trafalgar | 0 | 750,226,690,104 | 3% | ||
fernwehninja | 0 | 443,840,067 | 2% | ||
austinsandersco | 0 | 713,475,855 | 70% | ||
cqf | 0 | 2,549,512,354 | 1% | ||
anubisthegaylord | 0 | 3,915,062,044 | 100% | ||
mandagoi | 0 | 8,201,480,643 | 21% | ||
ribalinux | 0 | 7,205,596,460 | 18% | ||
wylo | 0 | 617,754,967 | 100% | ||
susanlo | 0 | 30,191,477,442 | 100% | ||
jkkim | 0 | 592,050,172 | 10% | ||
ebejammin | 0 | 10,670,066,805 | 100% | ||
nanosesame | 0 | 37,755,002,181 | 80% | ||
wanxlol | 0 | 25,781,751,698 | 100% | ||
happychau123 | 0 | 40,404,335,628 | 100% | ||
revelim | 0 | 11,593,559,376 | 30% | ||
cryptohustler | 0 | 6,339,850,906 | 100% | ||
drwom | 0 | 5,581,712,479 | 40% | ||
exec | 0 | 73,314,029,204 | 100% | ||
eval | 0 | 731,758,311 | 100% | ||
michaelwilshaw | 0 | 4,260,344,391 | 10% | ||
speeding | 0 | 4,211,547,156 | 100% | ||
shenchensucc | 0 | 4,979,337,799 | 100% | ||
walkinharmony | 0 | 16,436,905,138 | 50% | ||
asterix87 | 0 | 8,749,815,460 | 100% | ||
elliciouss | 0 | 809,859,312 | 100% | ||
susanli3769 | 0 | 2,403,772,224 | 9% | ||
abetterworld | 0 | 4,285,499,745 | 100% | ||
raili | 0 | 5,098,450,670 | 100% | ||
changbrook | 0 | 1,465,523,207 | 100% | ||
that1consultant | 0 | 2,936,055,347 | 100% | ||
sanzo | 0 | 285,909,900 | 100% | ||
davaowhenyo | 0 | 620,139,483 | 100% | ||
allenshayzar | 0 | 619,520,000 | 100% | ||
travelgirl | 0 | 50,728,678,853 | 36% | ||
raku | 0 | 617,220,000 | 100% | ||
resteeming | 0 | 614,860,000 | 100% | ||
ravenousappetite | 0 | 619,520,000 | 100% | ||
aabb | 0 | 3,965,578,785 | 100% | ||
auntigormint | 0 | 411,224,688 | 100% | ||
mrliga | 0 | 7,595,499,881 | 100% | ||
angela.ghkh | 0 | 2,046,920,028 | 100% | ||
aa9 | 0 | 755,281,375 | 100% | ||
sweethoney | 0 | 301,103,079 | 100% | ||
liangfengyouren | 0 | 1,111,008,061 | 50% | ||
idx | 0 | 21,595,758,424 | 100% | ||
jiangchen | 0 | 2,135,157,743 | 100% | ||
exprmnt | 0 | 614,860,000 | 100% | ||
tvb | 0 | 4,381,404,545 | 15% | ||
skenan | 0 | 19,178,379,774 | 32% | ||
mrspointm | 0 | 6,625,832,098 | 23% | ||
bearpaw | 0 | 3,076,987,708 | 100% | ||
vadimlasca | 0 | 1,443,998,256 | 100% | ||
kanxsh | 0 | 0 | 100% | ||
freedom-fighter | 0 | 619,520,000 | 100% | ||
renzhichu | 0 | 5,445,631,344 | 93% | ||
technologynepal | 0 | 617,220,000 | 100% | ||
chenlocus | 0 | 5,333,789,059 | 40% | ||
tiffanyrej | 0 | 941,758,613 | 100% | ||
khalilad | 0 | 615,320,000 | 100% | ||
ms8988 | 0 | 612,243,400 | 100% | ||
xiaoshancun | 0 | 406,990,293 | 100% | ||
lacanone | 0 | 345,255,285 | 100% | ||
cchampion | 0 | 537,483,105 | 100% | ||
wangwenjing | 0 | 2,538,660,412 | 50% | ||
ikonik | 0 | 615,320,000 | 100% | ||
vfxness | 0 | 9,806,607,866 | 100% | ||
lemminon | 0 | 615,320,000 | 100% | ||
heyeshuang | 0 | 1,233,611,272 | 100% | ||
fastiduos | 0 | 615,320,000 | 100% | ||
polscykierowcy | 0 | 2,536,511,698 | 100% | ||
ivysrono | 0 | 24,521,498,594 | 100% | ||
weavingwords | 0 | 53,111,418,071 | 100% | ||
nitro.live | 0 | 17,263,353,976 | 100% | ||
clovertrefoil | 0 | 558,584,100 | 100% | ||
chaerin | 0 | 371,282,360 | 100% | ||
muzakirpb | 0 | 73,833,445 | 9% | ||
simivalleyjeff53 | 0 | 89,094,735 | 100% | ||
cnbuddy | 0 | 8,457,435,683 | 2.51% | ||
deanyeong | 0 | 1,749,220,374 | 80% | ||
shallwey | 0 | 511,259,132 | 100% | ||
mindfreezer | 0 | 73,838,400 | 100% | ||
evayann | 0 | 569,246,803 | 100% | ||
walidboyky | 0 | 301,731,061 | 100% | ||
benng | 0 | 4,783,937,969 | 100% | ||
saury | 0 | 259,305,253 | 100% | ||
candiru | 0 | 339,341,792 | 100% | ||
wang-peilin | 0 | 18,984,771,449 | 50% | ||
wangyc | 0 | 363,855,819 | 100% | ||
lengxiaohua | 0 | 340,369,608 | 100% | ||
muyuxuan | 0 | 602,763,615 | 100% | ||
labeilleneigeux | 0 | 159,912,782 | 100% | ||
sergnak | 0 | 52,227,806 | 100% | ||
dapurtitien | 0 | 58,024,727 | 9% | ||
muzakirbakri | 0 | 58,026,776 | 9% | ||
darryldominator | 0 | 353,950,750 | 100% | ||
peeyush | 0 | 92,898,399 | 100% | ||
sangkana | 0 | 52,222,158 | 9% | ||
madein | 0 | 110,246,777 | 25% | ||
sokira | 0 | 52,222,156 | 9% | ||
berbagi | 0 | 63,827,077 | 9% | ||
canggih | 0 | 63,827,077 | 9% | ||
dapur | 0 | 63,827,076 | 9% | ||
tokonline | 0 | 52,222,153 | 9% | ||
steemtutorial | 0 | 52,222,153 | 9% | ||
wickedgoose | 0 | 71,659,508 | 100% | ||
nostalgic1212 | 0 | 1,160,655,473 | 100% | ||
riddlore | 0 | 110,246,173 | 100% | ||
fabianbtc | 0 | 829,747,326 | 100% | ||
yxp520lmx | 0 | 420,932,500 | 100% |
Teach me chinese language
author | aa9 |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180107t104126657z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 10:41:33 |
last_update | 2018-01-07 10:41:33 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 10:41:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 465,702,070,826 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,732,115 |
net_rshares | 816,390,080 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
aa9 | 0 | 740,023,165 | 100% | ||
simivalleyjeff53 | 0 | 76,366,915 | 100% |
Please also write in English, that who cannot understand Chinese language who also understand it......
author | afridi10 |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180107t104357913z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 10:44:03 |
last_update | 2018-01-07 10:44:03 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 10:44:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 102 |
author_reputation | 17,984,054,832 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,732,513 |
net_rshares | 484,852,141 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
simivalleyjeff53 | 0 | 76,366,915 | 100% | ||
afridi10 | 0 | 408,485,226 | 100% |
Steemjs的代码也有类似的问题
author | alanzheng |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180107t121956074z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 12:19:57 |
last_update | 2018-01-07 12:19:57 |
depth | 1 |
children | 2 |
last_payout | 2018-01-14 12:19:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 2,727,533,211,976 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,748,594 |
net_rshares | 0 |
js不会用,哈哈😳
author | oflyhigh |
---|---|
permlink | re-alanzheng-re-oflyhigh-steem-python-rpc-20180107t124515896z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 12:45:18 |
last_update | 2018-01-07 12:45:18 |
depth | 2 |
children | 1 |
last_payout | 2018-01-14 12:45:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 6,273,582,286,730,991 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,753,099 |
net_rshares | 0 |
哈哈,太谦虚了
author | alanzheng |
---|---|
permlink | re-oflyhigh-re-alanzheng-re-oflyhigh-steem-python-rpc-20180108t001040425z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-08 00:10:39 |
last_update | 2018-01-08 00:10:39 |
depth | 3 |
children | 0 |
last_payout | 2018-01-15 00:10:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 2,727,533,211,976 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,872,951 |
net_rshares | 0 |
原来如此, 多谢提示~
author | cifer |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180108t053313574z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-08 05:33:15 |
last_update | 2018-01-08 05:33:15 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 05:33:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.126 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 8,256,283,569,876 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,923,422 |
net_rshares | 12,157,754,863 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cifer | 0 | 12,157,754,863 | 100% |
用piston的要怎么解决这个问题?加了node的指定,还是会跑到steemd.steemit.com
author | januschoi |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180109t074307004z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-09 07:43:03 |
last_update | 2018-01-09 07:43:03 |
depth | 1 |
children | 0 |
last_payout | 2018-01-16 07:43:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 125,087,710,238 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,192,713 |
net_rshares | 0 |
= =我感觉我那个自动收收益的好像挂了好久了。
author | jiangchen |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180107t114636725z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 11:46:39 |
last_update | 2018-01-07 11:46:39 |
depth | 1 |
children | 2 |
last_payout | 2018-01-14 11:46:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 65,999,946,618,359 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,742,935 |
net_rshares | 0 |
打它!
author | oflyhigh |
---|---|
permlink | re-jiangchen-re-oflyhigh-steem-python-rpc-20180107t124447391z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 12:44:51 |
last_update | 2018-01-07 12:44:51 |
depth | 2 |
children | 1 |
last_payout | 2018-01-14 12:44:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3 |
author_reputation | 6,273,582,286,730,991 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,753,005 |
net_rshares | 1,977,028,638 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jiangchen | 0 | 1,977,028,638 | 100% |
不如直接rm -rf / ?
author | jiangchen |
---|---|
permlink | re-oflyhigh-re-jiangchen-re-oflyhigh-steem-python-rpc-20180107t130831663z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"community":"busy","app":"busy/2.2.0"} |
created | 2018-01-07 13:08:33 |
last_update | 2018-01-07 13:08:33 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 13:08:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 65,999,946,618,359 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,757,269 |
net_rshares | 0 |
感谢O 哥! life saver!
author | justyy |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180107t104610086z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 10:46:09 |
last_update | 2018-01-07 10:46:09 |
depth | 1 |
children | 4 |
last_payout | 2018-01-14 10:46:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.986 HBD |
curator_payout_value | 0.026 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 280,616,224,641,976 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,732,852 |
net_rshares | 101,261,674,713 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
magicmonk | 0 | 20,908,883,793 | 14% | ||
justyy | 0 | 80,276,424,005 | 13% | ||
simivalleyjeff53 | 0 | 76,366,915 | 100% |
原来这个有困难的同学是偶像你哈哈。
author | tvb |
---|---|
permlink | re-justyy-re-oflyhigh-steem-python-rpc-20180107t110250925z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 11:02:51 |
last_update | 2018-01-07 11:02:51 |
depth | 2 |
children | 3 |
last_payout | 2018-01-14 11:02:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 35,098,102,223,749 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,735,530 |
net_rshares | 0 |
是的…… O哥不好意思点我名。 再次感谢O 哥。。
author | justyy |
---|---|
permlink | re-tvb-re-justyy-re-oflyhigh-steem-python-rpc-20180107t112245473z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 11:22:45 |
last_update | 2018-01-07 11:22:45 |
depth | 3 |
children | 2 |
last_payout | 2018-01-14 11:22:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 280,616,224,641,976 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,738,883 |
net_rshares | 0 |
You are really a genius, I've benefited from your previous publications I want more Python lessons, thanks ...
author | lacanone |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180107t104403488z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 10:44:03 |
last_update | 2018-01-07 10:44:03 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 10:44:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 23,765,879,126 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,732,515 |
net_rshares | 0 |
if i were a chinese. I would be able to read and understand your post. btw Thanks for your effort @oflyhigh
author | mindfreezer |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180107t112853430z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"users":["oflyhigh"],"app":"steemit/0.1"} |
created | 2018-01-07 11:29:03 |
last_update | 2018-01-07 11:29:03 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 11:29:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 133,870,438,990 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,739,889 |
net_rshares | 0 |
solution
author | moyse |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180107t111029280z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 11:10:30 |
last_update | 2018-01-07 11:10:30 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 11:10:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 5,860,270,290,556 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,736,836 |
net_rshares | 423,843,052 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
moyse | 0 | 423,843,052 | 100% |
谢谢! 新人,还没遇到过,多谢提前指导!
author | muyuxuan |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180107t144455547z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 14:44:57 |
last_update | 2018-01-07 14:44:57 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 14:44:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 9,794,700,365 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,776,171 |
net_rshares | 0 |
设置默认节点列表的方法挺好用,而且可以一下子加好几个node
author | skenan |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180107t204842736z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 20:48:42 |
last_update | 2018-01-07 20:48:42 |
depth | 1 |
children | 3 |
last_payout | 2018-01-14 20:48:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 8,219,510,746,132 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,840,993 |
net_rshares | 0 |
国外那些个人提供的节点,要么不好用,要么可能距离远的缘故特慢 还是steemit官方的好
author | oflyhigh |
---|---|
permlink | re-skenan-re-oflyhigh-steem-python-rpc-20180107t224246819z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 22:42:48 |
last_update | 2018-01-07 22:42:48 |
depth | 2 |
children | 2 |
last_payout | 2018-01-14 22:42:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 6,273,582,286,730,991 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,859,378 |
net_rshares | 0 |
http://www.steemreports.com/steem-rpc-monitor/ 这里可以看到一些latency,现在rpc.buildsteem.io这个最好
author | skenan |
---|---|
permlink | re-oflyhigh-re-skenan-re-oflyhigh-steem-python-rpc-20180108t001738248z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"community":"busy","app":"busy/2.2.0"} |
created | 2018-01-08 00:17:39 |
last_update | 2018-01-08 00:17:39 |
depth | 3 |
children | 1 |
last_payout | 2018-01-15 00:17:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.916 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 8,219,510,746,132 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,874,038 |
net_rshares | 116,895,402,664 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oflyhigh | 0 | 116,895,402,664 | 5% |
为什么要下地狱的,它提供了一个服务器执行失败的消息,一个文件在我 C:\ 驱动器吗? 它” FREAKING 不在一个服务器! 这是一个网络甚至不能在这里! 该文件将被完全包含在单个硬盘驱动器,首要的是,在这种机器! 术语服务器甚至不应拿出任何错误的与此有关的文件。
author | usmanzeb |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180107t104203374z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 10:42:36 |
last_update | 2018-01-07 10:42:36 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 10:42:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 133 |
author_reputation | -37,759,519,799 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,732,297 |
net_rshares | 0 |
说实话对这没研究,就来凑个热闹。
author | wangyc |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180107t131616674z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-07 13:16:15 |
last_update | 2018-01-07 13:16:15 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 13:16:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 124,066,709,921 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,758,741 |
net_rshares | 0 |
我的是今晚刚刚注册的,也是提示超出带宽,让我等待批准或联系,然后我又重新点了一下注册邮箱里面的那个链接,就直接提示下个页面了,可以输入密码登录了.
author | yellowcelest |
---|---|
permlink | re-oflyhigh-steem-python-rpc-20180108t153205685z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2018-01-08 15:29:30 |
last_update | 2018-01-08 15:29:30 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 15:29:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 73 |
author_reputation | 27,462,137 |
root_title | "重要提示: steem-python 代码内部使用旧的RPC节点,可能会导致你的脚本失效 / 如何修复" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,027,520 |
net_rshares | 614,500,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yellowcelest | 0 | 614,500,000 | 100% |