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

in steemdev •  7 years ago  (edited)

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.

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Now we are waiting what someone will come up with browser version :D I guess it will be a little tweak of klye's version.

I saw one already - it was weeks ago, can be that it was even an old article. :)

Loading...

Awesome post (again) - keep on!

Amazing. I love it when i see some Python love - as we all know, the best languages are the ones that force you to have clean whitespace :)

hah :D i like the name --> Rewardinator ^_°

Super, Vielen Dank! Vor ein paar Tagen noch mit jemandem darüber gesprochen, dass ich ein Script dafür erstellen könnte und schon hat es sich von selbst erledigt :) Werde ich morgen gleich mal ausprobieren...

Upvote for the term "Rewardinator" :)
I won't pretend I understand the rest of this posts... :D

How about multiple accounts then?

Tired of seeing awefully comlicated Node.js scripts and code without forced whitespaces ? Me too !

I don't understand any of this developer banter, but it sure sounds amusing :)

Loading...

mhm

Loading...

@stuffy сможешь такое?)))

niet parlet parusky :D

Ne govorju po russkij:)))

hey bottie! come over here ! thanks @felixxx

Can i be your bot too?

I upvoted your post and I hope I'll stay in touch with you @felixxx
Follow me as well @denise.kluch

well, hello.
Should account name start from @ or not?

no @ in the account name ;)

thanks a lot. Any advice or link for posting bot?
Would be much appreciated.
This new Official Python Library for STEEM https://github.com/steemit/steem-python
it killed piston or not?
Can I still use piston or I'd better switch to steem-python lib?

It's a piston fork. Piston seems abandoned.

A posting bot ? what exactly do you mean ?

auto-reply on replies that account recieves.
Is it ok or no-no at steemit?

I'd say that's spam and I wouldn't want to encourage it.

ok, thanks.
have you seen @ionlysaymeep account? Is it spam, what do you think?

Great post, didnt get most of it... =)
Will check more of your posting... Thx for the help!

  ·  7 years ago (edited)

Hi,
Can you please vote me for my witness? To introduce myself a little: I'm an expert developer who can contribute to this project well. I've just started to learn more and more on Steem project and last week I set up my Witness.
I really appreciate if you can vote for my witness.

Thanks a lot

After reading that you used jerry banfield's guide to set up your witness, I'm a bit skeptic ...

I followed you now and if I can see any cool projects from your end, I will consider giving you a witness vote.

Thanks for that. Actually I used @someguy123 guide to set up my witness. I also appreciate if you can tell me what do you mean with cool projects? In other words how I can contribute to the community better? Is there any document/instruction?

Witnesses are encouraged to help the steem economy.
There isn't a guide for that ...

impressive!

  ·  7 years ago (edited)

Thank You Felixxx for your report! I will try to install it . But I neet to admit that it look quite advance ! 🤕

Früher wurden die Rewards ja automatisch gutgeschrieben. Bis jemand der Ansicht war, den Programmierern müsse mal wieder ein wenig Arbeit beschafft werden.

Congratulations! You have been chosen to appear on "Who to Follow Daily". Thank you for adding such value to the Steemit community. Steem on!

On running install steem i get cli.exe error on cmd ,what to do, thanks in advance :)

I have no idea, what you are trying to do ...

im running script from command prompt (using python 3.6), getting message:from steem.steem import Steem
ModuleNotFoundError: No module named 'steem'

The instructions above are for Linux.

Not sure how to run Python in Windows.

I see, i'll try installing ubuntu and give it a go again :) thanks

Try VM Ware Workstation Player

Installed ubuntu on vmware, was using piston with python 3, scripts did not work so left it.
Tried to install steem-python but it didn't work saying i didnt have python 3.5 or higher eventhough i had python 3.6 installed. So tried pip3 install-U steem instead of pip and Voila!!

Thanks

@felixxx.. I appreciate your efforts but, please don't pity my knowledge. I have a doubt.. "Auto rewards claim Bot" means it will claim the rewards of our Author and Curation rewards automatically for every hour whether we are online or not.. right..!

Is this a question ?

yes...Question mark button on keyboard won't work..so never mind..

  ·  7 years ago (edited)

This script will, when employed, claim your author and curation rewards every hour.

Ok thanks..

Awesome post bro :)