Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!

in #upvote-bot8 years ago

I use this fantastic easy bot every day, it run extremely smooth and gets the job done without any hassle. You will love it!

The 3 Simple Tasks You Must Do First!

Now You Are Ready To Use The Upvote-Bot!

Download The Steemit Upvote-Bot Here

Inside the ZIP-File you will find two files. The votebot.py and the votelist.txt and for full transparency this is how they look like. If you need any help setting them up or fiddle with the settings, please come to SteemSpeak and we will help you as best we can.

votebot.py

from piston.steem import Steem
from piston.steem import BroadcastingError
import threading
import time
import random
import csv
 
# my favorite blogs on steemit
top_writers = []

# add my favorites
my_favorites = []
 
with open('votelist.txt', mode='r') as infile:
    reader = csv.reader(infile)
    for rows in reader:
        v = rows[0]
        top_writers.append(v)
 
my_subscriptions = top_writers + my_favorites
account = ["your-account-name"]
posting_key = ["your-posting-key"]
active_key = []
vote_delay = random.randrange(500,1000)
 
upvote_history = []
 
def feed():
    print("Waiting for new posts by %s\n" % my_subscriptions)
    steem = Steem(wif=posting_key[0])
    for comment in steem.stream_comments():
 
        if comment.author in my_subscriptions:
            # Comments don't have titles. This is how we can know if we have a post or a comment.
            if len(comment.title) > 0:
 
                # check if we already upvoted this. Sometimes the feed will give duplicates.
                if comment.identifier in upvote_history:
                    continue
 
                print("New post by @%s %s" % (comment.author, url_builder(comment)))
                workerThread = threading.Thread(name=comment.identifier, target=worker, args=(comment,))
                workerThread.start()
 
# send $0.1 in SBD
def send_a_tip(author):
    steem = Steem(wif=active_key)
    steem.transfer(author, 0.001, "SBD", memo="I love your blog. Here is a small gift for you.", account=account)
 
 
def url_builder(comment):
    return "https://steemit.com/%s/%s" % (comment.category, comment.identifier)
 
def worker(worker_comment):
     time.sleep(vote_delay)
     try:
       for (k,v) in enumerate(account):
         worker_steem = Steem(wif=posting_key[k])
         upvote_comment = worker_steem.get_content(worker_comment.identifier)
         upvote_comment.vote(100, v)
         print("====> Upvoted")
         upvote_history.append(upvote_comment.identifier)
     except BroadcastingError as e:
       print("Upvoting failed...")
       print("We have probably reached the upvote rate limit.")
       print(str(e))
 
       if upvote_comment.author in my_favorites:
         send_a_tip(upvote_comment.author)
         print("====> Sent $0.01 SBD to @%s" % upvote_comment.author)
 
 
if __name__ == "__main__":
    while True:
        try:
            feed()
        except (KeyboardInterrupt, SystemExit):
            print("Quitting...")
            break
        except Exception as e:
            traceback.print_exc()
            print("### Exception Occurred: Restarting...")

So, the above python-script is the instructions for your bot, but you need to put in your own account-name (without the @) and the private posting-key for that account. If you have multiple accounts, you can comma-separate them on the same line, and the same with your private posting-keys if you run a curation-guild or something like that.

votelist.txt

fyrstikken
furion
contentjunkie
xeroc
steempowertwins

This is where you store the people you want to upvote, you can add as many as you want. The bot was originally created by @furion, upgraded and maintained by @contentjunkie, tested hard and brutally by @fyrstikken and @xeroc of course is the brilliant mind behind Piston.

This is how you run the Upvote-Bot


You can either doubleclick or open your upvote-bot with Python3, or you can use command-lines. I will show you two command-lines you can use to make the bot run:

  • The First Method


    Open a Terminal-Window and use the following command from the directory your bot-files are placed:

python3 votebot.py
This command will run your bot, but if it crashes and refuse to restart in the middle of the night, that is a problem so a little hack around that problem by @inertia is to use this command instead from the terminal-window:

  • The Second Method


    Open a Terminal-Window and use the following command from the directory your bot-files are placed:

while :; do python3 votebot.py; sleep 5; done
This command will make your bot loop, so if it crashes - it will wait 5 seconds and start it up again.

Download The Steemit Upvote-Bot Here


To Bot or not to Bot - that is the question

over the past many months I have heard all kinds of arguments for use, abuse and do not use bots for voting, and I personally think that is pretty lame. Everybody should run upvote-bots and make sure their favorite writers, photographers, artists, promoters and whatever you subscribe/follow gets your upvote while there is time to upvote.

I personally cannot read all the articles people post immediately when they post, I have other obligations - but when I have the time, I sit down and I read and comment - even if the article is a week old. Every blogger on steemit that I upvote is someone I want to encourage to keep posting on steemit, and I am looking forward to read their stuff when I have the time.

Steemit is GREAT for content-creators, and we all have plenty of votes to go around, so let us all start using them!


To make me a Proxy for your witness-votes go to: https://steemit.com/~witnesses and type in fyrstikken in the proxy-field

Sort:  

Thanks soo much @fyrstikken
This will definitely help me in curations...
I will give this a look and try it out very soon

Awesome - If you need any help, you´ll find me on @steemspeak radio :)

It Works!!

Loaded with 120,000+ Steemit-account in Santa Claus mode :)



And it upvotes, no crash - very cool :)

Just out of curiosity, how did you manage to find all these accounts?

@fyrstikken, never thought that I would be thinking of using a bot. Thank you for sharing my friend.

Yeah, we need you to be the master of your own bot @runridefly :)

Steem_Land Steem_Land tweeted @ 21 Dec 2016 - 18:39 UTC

Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!

steemit.com/upvote-bot/@fy… / https://t.co/4DsEO33g6r

@Beyond_Bitcoin

Steem_Land Steem_Land tweeted @ 21 Dec 2016 - 18:39 UTC

Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!

steemit.com/upvote-bot/@fy… / https://t.co/4DsEO33g6r

@steemit @steemiobot

Steem_Land Steem_Land tweeted @ 21 Dec 2016 - 18:39 UTC

Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download ZIP-File!

steemit.com/upvote-bot/@fy… / https://t.co/4DsEO33g6r

@SteemUps @SteemitPosts

Disclaimer: I am just a bot trying to be helpful.

Seems like an awful lot of work compared to steemvoter.com which you just have to sign up for and set some very basic bot rules...or am I missing something else here...?

This is fantastic, thanks! Now I just need to take the time to set this up... 😄😇😄

@creatr

I have little experience programming I'm trying to make one of friends account auto upvote me. He essentially sold me his account. I was able to download both step 1 and 2 but the third piston link is broken. Do you have a updated link that I can use to follow this?

I cant seem to get it working. At first I was getting the piston error but then I read somewhere to make the follwing changes at the start of the code:
from steem.steem import Steem
#from piston.steem import BroadcastingError

I can start up the code then and it does pick up the accounts creating new posts but fails right after giving me this error:

self._target(*self._args, **self._kwargs)

File "vote-bot.py", line 63, in worker
except BroadcastingError as e:
NameError: name 'BroadcastingError' is not defined

I can't seem to figure out how to fix this. Does anyone have any idea's?

Hi @fyrstikken
Thank you for sharing, currently I will stick with manual voting, but in future I might change.

Coin Marketplace

STEEM 0.19
TRX 0.15
JST 0.029
BTC 63004.58
ETH 2548.62
USDT 1.00
SBD 2.81