Viewing a response to: @achim03/re-learncode-qu131o
Yes, I saw the same error. The API node beem tried to connect to doesn’t support the follow_api. Beem will retry other nodes until it finds one that works. To avoid hitting this error, you can specify a list of which API nodes Beem should use.
author | torrey.blog |
---|---|
permlink | re-achim03-qu13i7 |
category | programming |
json_metadata | {"tags":["programming"],"app":"peakd/2021.05.5"} |
created | 2021-06-01 15:10:57 |
last_update | 2021-06-01 15:10:57 |
depth | 2 |
children | 7 |
last_payout | 2021-06-08 15:10: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 | 244 |
author_reputation | 6,751,817,739,213 |
root_title | "Part 2: Coding on Hive With Python - Installing Modules and Fetching Some Data from Hive" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 104,065,791 |
net_rshares | 0 |
Thanks now I have another error lol 🤣. I really struggle with python :-)
author | achim03 |
---|---|
permlink | re-torreyblog-qu1dq1 |
category | programming |
json_metadata | {"tags":["programming"],"app":"peakd/2021.05.5"} |
created | 2021-06-01 18:51:39 |
last_update | 2021-06-01 18:52:12 |
depth | 3 |
children | 4 |
last_payout | 2021-06-08 18:51: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 | 72 |
author_reputation | 325,729,828,668,168 |
root_title | "Part 2: Coding on Hive With Python - Installing Modules and Fetching Some Data from Hive" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 104,069,658 |
net_rshares | 0 |
What is the new error?
author | learncode |
---|---|
permlink | re-achim03-202161t131011606z |
category | programming |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.18-mobile","format":"markdown+html"} |
created | 2021-06-01 23:10:12 |
last_update | 2021-06-01 23:10:12 |
depth | 4 |
children | 3 |
last_payout | 2021-06-08 23:10:12 |
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 | 22 |
author_reputation | 682,726,195,093 |
root_title | "Part 2: Coding on Hive With Python - Installing Modules and Fetching Some Data from Hive" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 104,073,662 |
net_rshares | 0 |
It tells me syntax error and shows c:. I think there is a problem with my path...
author | achim03 |
---|---|
permlink | re-learncode-qu2o3o |
category | programming |
json_metadata | {"tags":["programming"],"app":"peakd/2021.05.5"} |
created | 2021-06-02 11:33:24 |
last_update | 2021-06-02 11:33:24 |
depth | 5 |
children | 2 |
last_payout | 2021-06-09 11:33:24 |
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 | 81 |
author_reputation | 325,729,828,668,168 |
root_title | "Part 2: Coding on Hive With Python - Installing Modules and Fetching Some Data from Hive" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 104,082,385 |
net_rshares | 0 |
Sorry, I had the same problem. How do we do that please?
author | nathen007.stem |
---|---|
permlink | qu15gs |
category | programming |
json_metadata | {"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@nathen007.stem/qu15gs"} |
created | 2021-06-01 15:53:18 |
last_update | 2021-06-01 15:53:18 |
depth | 3 |
children | 1 |
last_payout | 2021-06-08 15:53: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 | 56 |
author_reputation | 166,075,596,964 |
root_title | "Part 2: Coding on Hive With Python - Installing Modules and Fetching Some Data from Hive" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 104,066,719 |
net_rshares | 1,254,097,046 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amr008.stem | 0 | 1,254,097,046 | 100% |
You can ignore the error, and the code will still work. It seems like beem is smart enough to remember which API node is stable. Or, you can force beem to use your favorite node like this: ``` API_NODE = 'https://api.deathwing.me' HIVE = beem.Hive(node=[API_NODE]) beem.instance.set_shared_blockchain_instance(HIVE) ``` Then try the `get_follow_count()` call again. Hope this helps!
author | learncode |
---|---|
permlink | re-nathen007stem-qu15ty |
category | programming |
json_metadata | {"tags":["programming"],"app":"peakd/2021.05.5"} |
created | 2021-06-01 16:01:09 |
last_update | 2021-06-01 16:14:06 |
depth | 4 |
children | 0 |
last_payout | 2021-06-08 16:01:09 |
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 | 386 |
author_reputation | 682,726,195,093 |
root_title | "Part 2: Coding on Hive With Python - Installing Modules and Fetching Some Data from Hive" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 104,066,849 |
net_rshares | 0 |