create account

Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python by steempytutorials

View this thread on: hive.blogpeakd.comecency.com
· @steempytutorials · (edited)
$34.35
Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python
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```
![Screenshot 2018-01-12 17.24.13.png](https://steemitimages.com/DQmZwes1f9vTrmqKQdXv5VSZ84VvYRMiDNdFfUH1aFuoWXf/Screenshot%202018-01-12%2017.24.13.png)

##### 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.

![Screenshot 2018-01-12 17.29.25.png](https://steemitimages.com/DQmP4y2u4LUfHRLR3dAivQx5CuyqpMakmRa22b9GC1TpyH6/Screenshot%202018-01-12%2017.29.25.png)

##### 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).

![Screenshot 2018-01-12 17.56.30.png](https://steemitimages.com/DQmZ9TsMFvSw7Eu8weiSwBDs1uGtUE65BtC81rmRWRr7YUP/Screenshot%202018-01-12%2017.56.30.png)

#### 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/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorsteempytutorials
permlinkpart-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python
categoryutopian-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}}
created2018-01-12 17:16:39
last_update2018-01-13 04:06:57
depth0
children19
last_payout2018-01-19 17:16:39
cashout_time1969-12-31 23:59:59
total_payout_value27.228 HBD
curator_payout_value7.120 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,690
author_reputation31,094,047,689,691
root_title"Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,050,273
net_rshares5,483,265,099,834
author_curate_reward""
vote details (31)
@anonymslibertas ·
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?
properties (22)
authoranonymslibertas
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180519t124409109z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-05-19 12:44:09
last_update2018-05-19 12:44:09
depth1
children0
last_payout2018-05-26 12:44:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation7,544,623,494
root_title"Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,539,479
net_rshares0
@bitcoinjake09 ·
this is exactly what i was looking for thanks!
properties (22)
authorbitcoinjake09
permlinkpucthp
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-07-09 02:56:12
last_update2019-07-09 02:56:12
depth1
children0
last_payout2019-07-16 02:56:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation4,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,033,024
net_rshares0
@corionersmex ·
Im interested with this. Ill look for part one for me to have a good start in this learning.
properties (22)
authorcorionersmex
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180302t133134524z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-02 13:31:39
last_update2018-03-02 13:31:39
depth1
children0
last_payout2018-03-09 13:31:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation19,559,509,650
root_title"Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,637,162
net_rshares0
@drakernoise ·
$0.11
Giving us home work? .... XD
Thank you so much for the tutorial , a new item to the list of to-do stuff
Cheers
👍  
properties (23)
authordrakernoise
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t184734802z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-12 18:47:36
last_update2018-01-12 18:47:36
depth1
children1
last_payout2018-01-19 18:47:36
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation15,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,066,539
net_rshares13,716,071,291
author_curate_reward""
vote details (1)
@juliank ·
There will indeed be homework in the future, we will be doing weekly challenges. Where a puzzle will be introduced and also prize money ;)
properties (22)
authorjuliank
permlinkre-drakernoise-re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t204131470z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-12 20:41:30
last_update2018-01-12 20:41:30
depth2
children0
last_payout2018-01-19 20:41:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation117,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,085,273
net_rshares0
@edinho ·
@dimby it’s here
properties (22)
authoredinho
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180121t212143490z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["dimby"],"app":"steemit/0.1"}
created2018-01-21 21:21:42
last_update2018-01-21 21:21:42
depth1
children0
last_payout2018-01-28 21:21:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation2,478,060,019
root_title"Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,201,259
net_rshares0
@itajasrii ·
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
properties (22)
authoritajasrii
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t184745137z
categoryutopian-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"}
created2018-01-12 18:47:45
last_update2018-01-12 18:47:45
depth1
children0
last_payout2018-01-19 18:47:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length211
author_reputation2,848,164,461
root_title"Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,066,567
net_rshares0
@kvng1 ·
Finally
properties (22)
authorkvng1
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t174850925z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-12 17:48:57
last_update2018-01-12 17:48:57
depth1
children0
last_payout2018-01-19 17:48:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation617,626,018,410
root_title"Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,056,332
net_rshares0
@manishmike10 ·
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)**
properties (22)
authormanishmike10
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180113t040703155z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-01-13 04:07:03
last_update2018-01-13 04:07:03
depth1
children0
last_payout2018-01-20 04:07:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation20,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,146,725
net_rshares0
@newworldtech ·
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 :)
👍  
properties (23)
authornewworldtech
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180113t183114619z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-13 17:34:09
last_update2018-01-13 17:34:09
depth1
children0
last_payout2018-01-20 17:34:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation5,347,536,301
root_title"Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,277,610
net_rshares279,597,500
author_curate_reward""
vote details (1)
@palik ·
How would pure python solution look?
I mean without any `steempy` CLI's
properties (22)
authorpalik
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180131t184306333z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-31 18:43:06
last_update2018-01-31 18:43:06
depth1
children0
last_payout2018-02-07 18:43:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation286,107,230,366
root_title"Part 1: How To Configure The Steempy CLI Wallet And Upvote An Article With Steem-Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,923,277
net_rshares0
@ppss · (edited)
.
properties (22)
authorppss
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20190225t154306470z
categoryutopian-io
json_metadata{"app":"steemit/0.1"}
created2019-02-25 15:43:06
last_update2019-10-07 05:02:15
depth1
children0
last_payout2019-03-04 15:43:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation57,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id80,377,432
net_rshares0
@samic ·
Is it possible to configure how many posts per day or per week to vote for a user account etc?
properties (22)
authorsamic
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t174617168z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-12 17:46:03
last_update2018-01-12 17:46:03
depth1
children1
last_payout2018-01-19 17:46:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation23,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,055,826
net_rshares0
@amosbastian ·
I will probably write a tutorial on how to do this in the future!
properties (22)
authoramosbastian
permlinkre-samic-re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t180808389z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-12 18:08:09
last_update2018-01-12 18:08:09
depth2
children0
last_payout2018-01-19 18:08:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation174,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,059,689
net_rshares0
@steem-network ·
<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>
properties (22)
authorsteem-network
permlinkre-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180113t140157
categoryutopian-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"}"
created2018-01-13 14:01:57
last_update2018-01-13 14:01:57
depth1
children0
last_payout2018-01-20 14:01:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length993
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,235,445
net_rshares0
@travoved ·
$0.11
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!
👍  
properties (23)
authortravoved
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t175227548z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-12 17:52:30
last_update2018-01-12 17:52:30
depth1
children2
last_payout2018-01-19 17:52:30
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation48,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,056,930
net_rshares13,716,071,291
author_curate_reward""
vote details (1)
@juliank ·
Awesome, make sure to subscribe. A lot more content is coming ;)
👍  
properties (23)
authorjuliank
permlinkre-travoved-re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t204158122z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-01-12 20:41:57
last_update2018-01-12 20:41:57
depth2
children1
last_payout2018-01-19 20:41:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation117,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,085,346
net_rshares0
author_curate_reward""
vote details (1)
@travoved ·
Thanks @juliank! I'll obligatorily subscribe! And waiting new content!
properties (22)
authortravoved
permlinkre-juliank-re-travoved-re-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180112t204858898z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["juliank"],"app":"steemit/0.1"}
created2018-01-12 20:49:00
last_update2018-01-12 20:49:00
depth3
children0
last_payout2018-01-19 20:49:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation48,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,086,436
net_rshares0
@utopian-io ·
### 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>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](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**
👍  
properties (23)
authorutopian-io
permlinkre-steempytutorials-part-1-how-to-configure-the-steempy-cli-wallet-and-upvote-an-article-with-steem-python-20180113t162818607z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-01-13 16:28:18
last_update2018-01-13 16:28:18
depth1
children0
last_payout2018-01-20 16:28:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,533
author_reputation152,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,264,430
net_rshares1,712,209,593
author_curate_reward""
vote details (1)