https://steemitimages.com/DQmYwJQqMo7nUWNGm3S2jREEvRB56anVRicc4DTUekyMjqE/image.png This tutorial is a continuation on [Part 0: How to install steem-python, the official STEEM library for Python](https://steemit.com/utopian-io/@amosbastian/how-to-install-steem-python-the-official-steem-library-for-python). We will be setting up the CLI wallet for with our steem account for future use. After that we will upvote an article with a python script. #### What Will I Learn? - How to set up your Steempy wallet - Change the default node - Import your Steem account - Set wallet defaults - Upvote directly via the blockchain #### Requirements - steem-python - python 3.6 #### Difficulty - Basic ### Tutorial ##### Update default node By default the node which steempy is connected to is http://steemd.steemit.com, this node has now been depreciated and we will have to update it to make the wallet work again. We will be using the Steemviz node, but this can be replaced with any node to your liking. Adding multiple nodes for redundancy is also possible by separating the urls with a comma ```,``` ```steempy set nodes https://rpc.steemviz.com``` ##### import steem account Now you can add your account, replace steempytutorials with your account name ```steempy importaccount steempytutorials``` > Account Passphrase: > Importing active key! Please provide a password for the new wallet Passphrase: Confirm Passphrase: Importing posting key! Importing memo key! You will be asked for your master password. After this you will have to set up a password to encrypt your wallet. This password is needed for any transaction made with the wallet. You can verify all the imported keys ```steempy listaccounts```  ##### configure wallet defaults You can then set up a the default account and upvote weight for any future transactions or upvotes. ```steempy set default_account steempytutorials ``` ```steempy set default_vote_weight 100 ``` Now verify all the settings with ```steempy config ``` Your wallet is now ready to be used.  ##### Upvoting an article with python We will upvote 2 excellent articles made by @amosbastian with the python script below. The permlink is how steem identifies articles and you can get it from the url of an article. Removing the beginning of the urls until ```@```. While we will be using 2 preset permlinks you can also use your own. The 100 in ```steem.vote(permlink,100)``` indicates the weight of the upvote we will be giving out. You can also alter this to your liking. ``` from steem import Steem steem = Steem() permlink = '@amosbastian/how-to-create-a-simple-reddit-bot-using-praw-1-streaming-and-replying' try: steem.vote(permlink,100) print ("Succesfully upvoted!") except Exception as e: print (repr(e)) ``` Save the code as main.py and run it. You will be asked for you wallet passphrase and after that it should upvote the article. > python main.py Passphrase: Succesfully upvoted! While this works, it is annoying to have to enter the passphrase every time. To prevent this you can set your passphrase as an environment variable with: ```export UNLOCK='<passphrase>'``` Now we will alter the code a bit to accommodate for this. ``` from steem import Steem import os steemPostingKey = os.environ.get('steemPostingKey') steem = Steem(wif=steemPostingKey) permlink = '@amosbastian/python-wrapper-for-the-fantasy-premier-league-api' try: steem.vote(permlink,100) print ("Succesfully upvoted!") except Exception as e: print (repr(e)) ``` Try it again and it should upvote without asking for your passphrase, succes! You can verify this by going to the article or going over to [steemd.com](http://steemd.com).  #### Curriculum - [Part 0: How to install steem-python, the official STEEM library for Python](https://steemit.com/utopian-io/@amosbastian/how-to-install-steem-python-the-official-steem-library-for-python) #### Credits This tutorial was written by @juliank in conjunction with @amosbastian <br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@steempytutorials/part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python">Utopian.io - Rewarding Open Source Contributors</a></em><hr/>
author | steempytutorials | ||||||
---|---|---|---|---|---|---|---|
permlink | part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python | ||||||
category | utopian-io | ||||||
json_metadata | {"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":84843862,"name":"steem-python","full_name":"steemit/steem-python","html_url":"https://github.com/steemit/steem-python","fork":false,"owner":{"login":"steemit"}},"pullRequests":[],"platform":"github","type":"tutorials","tags":["utopian-io","python","programming","steemdev"],"users":["amosbastian","juliank"],"links":["https://steemit.com/utopian-io/@amosbastian/how-to-install-steem-python-the-official-steem-library-for-python","http://steemd.steemit.com","http://steemd.com","https://utopian.io/utopian-io/@steempytutorials/part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python"],"image":["https://steemitimages.com/DQmYwJQqMo7nUWNGm3S2jREEvRB56anVRicc4DTUekyMjqE/image.png","https://steemitimages.com/DQmZwes1f9vTrmqKQdXv5VSZ84VvYRMiDNdFfUH1aFuoWXf/Screenshot%202018-01-12%2017.24.13.png","https://steemitimages.com/DQmP4y2u4LUfHRLR3dAivQx5CuyqpMakmRa22b9GC1TpyH6/Screenshot%202018-01-12%2017.29.25.png","https://steemitimages.com/DQmZ9TsMFvSw7Eu8weiSwBDs1uGtUE65BtC81rmRWRr7YUP/Screenshot%202018-01-12%2017.56.30.png"],"moderator":{"account":"manishmike10","time":"2018-01-13T04:06:58.639Z","reviewed":true,"pending":false,"flagged":false}} | ||||||
created | 2018-01-12 17:16:39 | ||||||
last_update | 2018-01-13 04:06:57 | ||||||
depth | 0 | ||||||
children | 19 | ||||||
last_payout | 2018-01-19 17:16:39 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 27.228 HBD | ||||||
curator_payout_value | 7.120 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 4,690 | ||||||
author_reputation | 31,094,047,689,691 | ||||||
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 29,050,273 | ||||||
net_rshares | 5,483,265,099,834 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drakernoise | 0 | 744,431,854 | 100% | ||
husamia | 0 | 7,151,319,788 | 100% | ||
mcsvi | 0 | 168,799,160,378 | 100% | ||
brobear1995 | 0 | 0 | 100% | ||
evildeathcore | 0 | 24,490,797,495 | 100% | ||
bitcoinjake09 | 0 | 0 | 100% | ||
juliank | 0 | 658,362,456,639 | 50% | ||
vot | 0 | 562,709,489 | 100% | ||
maskur2840 | 0 | 728,061,666 | 100% | ||
muksal.mina | 0 | 546,908,369 | 100% | ||
samic | 0 | 7,514,087,360 | 20% | ||
utopian-io | 0 | 4,606,170,420,588 | 3.01% | ||
ugghani | 0 | 546,815,274 | 100% | ||
corionersmex | 0 | 0 | 100% | ||
eleyda78 | 0 | 766,071,030 | 100% | ||
rimicane | 0 | 1,046,271,990 | 25% | ||
amosbastian | 0 | 1,763,977,367 | 100% | ||
doggo | 0 | 206,132,200 | 100% | ||
jtomes123 | 0 | 593,032,024 | 100% | ||
bellsx1 | 0 | 516,097,590 | 100% | ||
steempytutorials | 0 | 245,925,307 | 100% | ||
laxmikadariya | 0 | 73,907,099 | 100% | ||
erisbobo | 0 | 565,340,891 | 100% | ||
rkphoto | 0 | 586,847,500 | 100% | ||
godmodefantastic | 0 | 172,082,936 | 100% | ||
kvng1 | 0 | 614,500,000 | 100% | ||
edinho | 0 | 0 | 100% | ||
komo | 0 | 497,745,000 | 100% | ||
anitatmj | 0 | 0 | 100% | ||
herawais | 0 | 0 | 100% | ||
yasinda | 0 | 0 | 100% |
It asks for my passphrase when I try to post and says that in order to do so, I need to use my UNLOCK environmental variable. Anyone know how to do that?
author | anonymslibertas |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180519t124409109z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-19 12:44:09 |
last_update | 2018-05-19 12:44:09 |
depth | 1 |
children | 0 |
last_payout | 2018-05-26 12:44: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 | 154 |
author_reputation | 7,544,623,494 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,539,479 |
net_rshares | 0 |
this is exactly what i was looking for thanks!
author | bitcoinjake09 |
---|---|
permlink | pucthp |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-07-09 02:56:12 |
last_update | 2019-07-09 02:56:12 |
depth | 1 |
children | 0 |
last_payout | 2019-07-16 02:56: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 | 46 |
author_reputation | 4,792,689,288,244 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 88,033,024 |
net_rshares | 0 |
Im interested with this. Ill look for part one for me to have a good start in this learning.
author | corionersmex |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180302t133134524z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-03-02 13:31:39 |
last_update | 2018-03-02 13:31:39 |
depth | 1 |
children | 0 |
last_payout | 2018-03-09 13:31: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 | 92 |
author_reputation | 19,559,509,650 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,637,162 |
net_rshares | 0 |
Giving us home work? .... XD Thank you so much for the tutorial , a new item to the list of to-do stuff Cheers
author | drakernoise |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t184734802z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-01-12 18:47:36 |
last_update | 2018-01-12 18:47:36 |
depth | 1 |
children | 1 |
last_payout | 2018-01-19 18:47:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.082 HBD |
curator_payout_value | 0.024 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 15,060,220,596,197 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,066,539 |
net_rshares | 13,716,071,291 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
juliank | 0 | 13,716,071,291 | 1% |
There will indeed be homework in the future, we will be doing weekly challenges. Where a puzzle will be introduced and also prize money ;)
author | juliank |
---|---|
permlink | re-drakernoise-re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t204131470z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-01-12 20:41:30 |
last_update | 2018-01-12 20:41:30 |
depth | 2 |
children | 0 |
last_payout | 2018-01-19 20:41: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 | 138 |
author_reputation | 117,823,071,447,502 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,085,273 |
net_rshares | 0 |
@dimby it’s here
author | edinho |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180121t212143490z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["dimby"],"app":"steemit/0.1"} |
created | 2018-01-21 21:21:42 |
last_update | 2018-01-21 21:21:42 |
depth | 1 |
children | 0 |
last_payout | 2018-01-28 21:21: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 | 16 |
author_reputation | 2,478,060,019 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,201,259 |
net_rshares | 0 |
I come from aceh, can you see my introduction post briefly, if I am mistaken to post introductions I beg your comments. https://steemit.com/introduceyourself/@itajasrii/hi-steemit-i-m-itajasrii-and-i-m-from-aceh
author | itajasrii |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t184745137z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://steemit.com/introduceyourself/@itajasrii/hi-steemit-i-m-itajasrii-and-i-m-from-aceh"],"app":"steemit/0.1"} |
created | 2018-01-12 18:47:45 |
last_update | 2018-01-12 18:47:45 |
depth | 1 |
children | 0 |
last_payout | 2018-01-19 18:47: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 | 211 |
author_reputation | 2,848,164,461 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,066,567 |
net_rshares | 0 |
Finally
author | kvng1 |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t174850925z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-01-12 17:48:57 |
last_update | 2018-01-12 17:48:57 |
depth | 1 |
children | 0 |
last_payout | 2018-01-19 17:48: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 | 7 |
author_reputation | 617,626,018,410 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,056,332 |
net_rshares | 0 |
Thank you for the contribution. It has been approved. You can contact us on [Discord](https://discord.gg/UCvqCsx). **[[utopian-moderator]](https://utopian.io/moderators)**
author | manishmike10 |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180113t040703155z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-01-13 04:07:03 |
last_update | 2018-01-13 04:07:03 |
depth | 1 |
children | 0 |
last_payout | 2018-01-20 04:07: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 | 172 |
author_reputation | 20,399,732,899,016 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,146,725 |
net_rshares | 0 |
I have started to learn python currently and it will be my first programme but can you explain what this post about because content is little bit detail for me :)
author | newworldtech |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180113t183114619z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-01-13 17:34:09 |
last_update | 2018-01-13 17:34:09 |
depth | 1 |
children | 0 |
last_payout | 2018-01-20 17:34: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 | 162 |
author_reputation | 5,347,536,301 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,277,610 |
net_rshares | 279,597,500 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
newworldtech | 0 | 279,597,500 | 100% |
How would pure python solution look? I mean without any `steempy` CLI's
author | palik |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180131t184306333z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-01-31 18:43:06 |
last_update | 2018-01-31 18:43:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-07 18:43:06 |
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 | 71 |
author_reputation | 286,107,230,366 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 33,923,277 |
net_rshares | 0 |
.
author | ppss |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20190225t154306470z |
category | utopian-io |
json_metadata | {"app":"steemit/0.1"} |
created | 2019-02-25 15:43:06 |
last_update | 2019-10-07 05:02:15 |
depth | 1 |
children | 0 |
last_payout | 2019-03-04 15:43:06 |
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 | 1 |
author_reputation | 57,444,456,912,911 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,377,432 |
net_rshares | 0 |
Is it possible to configure how many posts per day or per week to vote for a user account etc?
author | samic |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t174617168z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-01-12 17:46:03 |
last_update | 2018-01-12 17:46:03 |
depth | 1 |
children | 1 |
last_payout | 2018-01-19 17:46: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 | 94 |
author_reputation | 23,868,388,255,438 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,055,826 |
net_rshares | 0 |
I will probably write a tutorial on how to do this in the future!
author | amosbastian |
---|---|
permlink | re-samic-re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t180808389z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-01-12 18:08:09 |
last_update | 2018-01-12 18:08:09 |
depth | 2 |
children | 0 |
last_payout | 2018-01-19 18:08: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 | 65 |
author_reputation | 174,473,586,900,705 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,059,689 |
net_rshares | 0 |
<html> <p>Congratulations <a href="/@steempytutorials" target="_blank">@steempytutorials</a>, you have decided to take the next big step with your first post! The Steem Network Team wishes you a great time among this awesome community.</p> <hr> <div class="pull-left"><img src="https://steemitimages.com/DQmaAdLUJ3yaSkmcmWECWyPGPWcjfbCoZ8Tu4RM6H4DbjCi/steem-network-thumbs-up.gif" alt="Thumbs up for Steem Network´s strategy" title="I suggest Steem Network´s strategy" width="320" height="222"></div> <h1>The proven road to boost your personal success in this amazing Steem Network</h1> <p>Do you already know that awesome content will get great profits by following these <a href="/steem-network/@steem-network/spread-your-posts-through-this-proven-strategy-and-get-great-profits-in-return--for-posts-created-at-2018-01-12" target="_blank" alt="Steem Network" title="Follow Steem Network´s suggestions to boost your success">simple steps</a>, that have been worked out by experts?</p> </html>
author | steem-network |
---|---|
permlink | re-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180113t140157 |
category | utopian-io |
json_metadata | "{"tags": ["steem-network"], "users": ["steem-network", "steempytutorials"], "image": ["https://steemitimages.com/DQmaAdLUJ3yaSkmcmWECWyPGPWcjfbCoZ8Tu4RM6H4DbjCi/steem-network-thumbs-up.gif"], "links": ["/@steempytutorials", "/steem-network/@steem-network/spread-your-posts-through-this-proven-strategy-and-get-great-profits-in-return--for-posts-created-at-2018-01-12"], "community": "steem-network", "app": "steem-network/1.0.1", "format": "html"}" |
created | 2018-01-13 14:01:57 |
last_update | 2018-01-13 14:01:57 |
depth | 1 |
children | 0 |
last_payout | 2018-01-20 14:01: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 | 993 |
author_reputation | -788,969,433,247 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,235,445 |
net_rshares | 0 |
Thanks for a such good idea. I didn`t use python for last several months, but now I think, I`ll come back to python!
author | travoved |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t175227548z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-01-12 17:52:30 |
last_update | 2018-01-12 17:52:30 |
depth | 1 |
children | 2 |
last_payout | 2018-01-19 17:52:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.082 HBD |
curator_payout_value | 0.024 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | 48,422,674,105,375 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,056,930 |
net_rshares | 13,716,071,291 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
juliank | 0 | 13,716,071,291 | 1% |
Awesome, make sure to subscribe. A lot more content is coming ;)
author | juliank |
---|---|
permlink | re-travoved-re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t204158122z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-01-12 20:41:57 |
last_update | 2018-01-12 20:41:57 |
depth | 2 |
children | 1 |
last_payout | 2018-01-19 20:41: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 | 64 |
author_reputation | 117,823,071,447,502 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,085,346 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sebrock | 0 | 0 | 100% |
Thanks @juliank! I'll obligatorily subscribe! And waiting new content!
author | travoved |
---|---|
permlink | re-juliank-re-travoved-re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t204858898z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["juliank"],"app":"steemit/0.1"} |
created | 2018-01-12 20:49:00 |
last_update | 2018-01-12 20:49:00 |
depth | 3 |
children | 0 |
last_payout | 2018-01-19 20:49:00 |
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 | 70 |
author_reputation | 48,422,674,105,375 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,086,436 |
net_rshares | 0 |
### Hey @steempytutorials I am @utopian-io. I have just upvoted you! #### Achievements - You have less than 500 followers. Just gave you a gift to help you succeed! - This is your first accepted contribution here in Utopian. Welcome! #### Suggestions - Contribute more often to get higher and higher rewards. I wish to see you often! - Work on your followers to increase the votes/rewards. I follow what humans do and my vote is mainly based on that. Good luck! #### Get Noticed! - Did you know project owners can manually vote with their own voting power or by voting power delegated to their projects? Ask the project owner to review your contributions! #### Community-Driven Witness! I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER! - <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a> - <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a> - Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a> [](https://steemit.com/~witnesses) **Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
author | utopian-io |
---|---|
permlink | re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180113t162818607z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} |
created | 2018-01-13 16:28:18 |
last_update | 2018-01-13 16:28:18 |
depth | 1 |
children | 0 |
last_payout | 2018-01-20 16:28: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 | 1,533 |
author_reputation | 152,955,367,999,756 |
root_title | "Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,264,430 |
net_rshares | 1,712,209,593 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amosbastian | 0 | 1,712,209,593 | 100% |