Rewardinator STEEM Bot v0.0.1 - Open Source Steem-Python Auto Reward Claim Script

This is a response to @klye's post ...

I present to you :


Tired of seeing awefully comlicated Node.js scripts and code without forced whitespaces ? Me too ! That's why I made this easy to follow Steem-Python tutorial to show, how easy life can be. You don't have to reinvent the wheel - Thanks to @furion and @xeroc it's all there !


1. Install Steem-Python:

First, you need to install steem-python.

pip install -U steem

2. Write the script:

  • Open a new file, called rewardinator.py.
  • Copy this code and replace the values for my_steem_posting_keyand my_steem_account .
  • Save the file.
from steem.steem import Steem
import time

my_steem_posting_key = '5YOURPOSTINGKEY'
my_steem_account = 'youraccount'

steem = Steem(keys = my_steem_posting_key)

def claim_rewards():
    steem.claim_reward_balance(account = my_steem_account)

while 1:

    claim_rewards()
    time.sleep(3600) # in seconds ( 3600 seconds = 1 hour )

3. Run the script:

type python3 rewardinator.py, press ENTER.

Done.

This script will claim your rewards every hour.
It doesn't print any messages to the screen and you can't see how much it claims.
To see that, head to https://steemd.com/@youraccount .


Now before anybody gets mad at me, this was mainly for entertaining purposes. I'm not at all trying to bash @klye - I think he's doing a good job here. I was just trying to be funny and promote Steem-Python along the way, as I'm really enjoying it.

H2
H3
H4
Upload from PC
Video gallery
3 columns
2 columns
1 column
54 Comments