create account

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

View this thread on: hive.blogpeakd.comecency.com
· @fyrstikken ·
$7.41
Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!
<center><img src="http://cliparting.com/wp-content/uploads/2016/09/Robot-clipart-clipart-kid-3.png"></center>

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

<center><h1>The 3 Simple Tasks You Must Do First!</h1></center>

- Install GIT from <a href="https://git-scm.com/downloads">This Website</a>
- Install Python 3+ from <a href="https://www.python.org/downloads/">This Website</a>
- Install Piston from <a href="http://piston.readthedocs.io/en/stable/installation.html">This Website</a>

<center><h1>Now You Are Ready To Use The Upvote-Bot!</h1></center>

<h1><center><a href="https://www.dropbox.com/s/9eergyk4mfnd5o8/steemit-upvote-bot.zip?dl=1">Download The Steemit Upvote-Bot Here</a></center></h1>

Inside the ZIP-File you will find two files. The <b>votebot.py</b> and the <b>votelist.txt</b> 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 <a href="http://steemspeak.com">SteemSpeak</a> and we will help you as best we can.

<h3>votebot.py</h3>
````
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 <b>python-script</b> 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.

<h3>votelist.txt</h3>
````
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.

<h3>This is how you run the Upvote-Bot</h3>
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:

- <h1>The First Method</h1>
<h4>Open a Terminal-Window and use the following command from the directory your bot-files are placed:</h4>

`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:

- <h1>The Second Method</h1>
<h4>Open a Terminal-Window and use the following command from the directory your bot-files are placed:</h4>

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

<h1><center><a href="https://www.dropbox.com/s/9eergyk4mfnd5o8/steemit-upvote-bot.zip?dl=1">Download The Steemit Upvote-Bot Here</a></center></h1>

---
<center><h1>To Bot or not to Bot - that is the question</h1></center>

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!

---


<center><a href="http://imgur.com/B7uroJk"><img src="http://i.imgur.com/B7uroJk.png" title="source: imgur.com" /></a></center>

<center>To make me a Proxy for your witness-votes go to: https://steemit.com/~witnesses and type in <b>fyrstikken</b> in the proxy-field</center>
๐Ÿ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 391 others
๐Ÿ‘Ž  
properties (23)
authorfyrstikken
permlinkis-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file
categoryupvote-bot
json_metadata{"tags":["upvote-bot","steemit","piston","python"],"users":["furion","contentjunkie","fyrstikken","xeroc","inertia"],"image":["http://cliparting.com/wp-content/uploads/2016/09/Robot-clipart-clipart-kid-3.png","http://i.imgur.com/B7uroJk.png"],"links":["https://git-scm.com/downloads","https://www.python.org/downloads/","http://piston.readthedocs.io/en/stable/installation.html","https://www.dropbox.com/s/9eergyk4mfnd5o8/steemit-upvote-bot.zip?dl=1","http://steemspeak.com","http://imgur.com/B7uroJk","https://steemit.com/~witnesses"],"app":"steemit/0.1","format":"markdown"}
created2016-12-21 18:24:54
last_update2016-12-21 18:24:54
depth0
children39
last_payout2017-01-21 19:24:57
cashout_time1969-12-31 23:59:59
total_payout_value6.688 HBD
curator_payout_value0.726 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,662
author_reputation377,187,606,449,589
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,057,472
net_rshares33,081,379,279,833
author_curate_reward""
vote details (456)
@ballinconscious ·
Thanks, for the tutorial!  Does this bot have any advantages over using steemvoter?

I completely agree about supporting the writer that I want to see flourish on steemit more.   I later go back and comment when I have time too ^_^
๐Ÿ‘  
properties (23)
authorballinconscious
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t211916410z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"]}
created2016-12-21 21:19:15
last_update2016-12-21 21:19:15
depth1
children2
last_payout2017-01-21 19:24: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_length231
author_reputation34,517,590,256,369
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,058,559
net_rshares0
author_curate_reward""
vote details (1)
@fyrstikken ·
I am not familiar with steemvoter, but this bot has everything you need for voting on posts, comments and even sending tips to people you really want to support.

I prefer to run my own software on my own hardware instead of sending my posting and/or active key to a third party website.

Once you got the bot running, you can leave it running 24/7 on a $5 WPS or your home-computer. Whatever suits you the best, and you and nobody else has full control over it.
๐Ÿ‘  ,
properties (23)
authorfyrstikken
permlinkre-ballinconscious-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161222t002635598z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"]}
created2016-12-22 00:26:36
last_update2016-12-22 00:26:36
depth2
children1
last_payout2017-01-21 19:24: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_length462
author_reputation377,187,606,449,589
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,059,658
net_rshares31,820,277,824
author_curate_reward""
vote details (2)
@ballinconscious ·
Ahhh ok, well it is on steemvoter.com.  This bot looks promising !  If it can vote on comments and send tip that is more than steemvoter can do.  I will try it out for sure, thanks!

Agreed,  Then you can be in full control and aware what is going on with your voting at all time! 

Yeah that sounds good, but you have to leave your computer on, correct?  What is a 5$ WPS?
properties (22)
authorballinconscious
permlinkre-fyrstikken-re-ballinconscious-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161222t032046584z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"]}
created2016-12-22 03:20:45
last_update2016-12-22 03:20:45
depth3
children0
last_payout2017-01-21 19:24: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_length373
author_reputation34,517,590,256,369
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,060,744
net_rshares0
@banjomad ·
cool
properties (22)
authorbanjomad
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170715t005428186z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"app":"steemit/0.1"}
created2017-07-15 00:54:24
last_update2017-07-15 00:54:24
depth1
children1
last_payout2017-07-22 00:54:24
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_length4
author_reputation-1,212,426,677,290
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,517,434
net_rshares0
@fyrstikken ·
<p>Vedi hai parlato in italiano ciao รจ una parola italiana.</p>
properties (22)
authorfyrstikken
permlinkre-banjomad-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170715t005514576z
categoryupvote-bot
json_metadata{"app":"freakazoid/0.0.1","tags":["upvote-bot"]}
created2017-07-15 00:55:27
last_update2017-07-15 00:55:27
depth2
children0
last_payout2017-07-22 00:55:27
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_reputation377,187,606,449,589
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,517,488
net_rshares0
@binkley ·
I know this post is a little old but is ranked number one on google for a lot of searches related to bots. I recently launched a [tool that allows users to see all of the upvote bots data in one place](https://steemthat.com/all-bots-stats-live/) on one page. 

This allows users to see the upvote power and not waste money when bidding. Most upvote bots tell you to got to steemd which is nice but when using multiple bots this is tedious. Problem solved using this https://steemthat.com/all-bots-stats-live/
properties (22)
authorbinkley
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170905t181513374z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"links":["https://steemthat.com/all-bots-stats-live/"],"app":"steemit/0.1"}
created2017-09-05 18:14:33
last_update2017-09-05 18:14:33
depth1
children2
last_payout2017-09-12 18:14:33
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_length508
author_reputation2,427,294,020,876
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,972,653
net_rshares0
@crystalhuman ·
I was really hoping this had taken off and was flourishing but it seems like an abvandoned project :(  I hope to see some updates in the future.  This looked promising.
properties (22)
authorcrystalhuman
permlinkre-binkley-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20180412t023736228z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"app":"steemit/0.1"}
created2018-04-12 02:37:39
last_update2018-04-12 02:37:39
depth2
children1
last_payout2018-04-19 02:37: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_length168
author_reputation37,829,501,059,627
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,594,664
net_rshares0
@binkley · (edited)
The project is actually very alive and active. We just drastically changed direction. We were focused on helping only those that could afford to buy our promotion services and now we are a very successful growing community which has 7 curation accounts as part of a whale pool that helps members of the community grow. Abandoned No Way. Modified for the future to be more beneficial longterm is more like it.  Take a look and see for yourself. https://SteemThat.com and https://Stish.io

The all bots stats live tool is obsoleted with the steembottracker now.
๐Ÿ‘  
properties (23)
authorbinkley
permlinkre-crystalhuman-re-binkley-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20180412t034702706z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"links":["https://SteemThat.com","https://Stish.io"],"app":"steemit/0.1"}
created2018-04-12 03:47:03
last_update2018-04-12 03:47:51
depth3
children0
last_payout2018-04-19 03:47: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_length559
author_reputation2,427,294,020,876
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,602,060
net_rshares1,457,268,287
author_curate_reward""
vote details (1)
@bleujay ·
Thank you for posting @fyrstikken. Appreciate this well thought out article.  It is nice to know how you curate and receive more information on how bots work.

Wishing you a Happy Christ-mas and thanking you for your support.
๐Ÿ‘  
properties (23)
authorbleujay
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t210012250z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"users":["fyrstikken"]}
created2016-12-21 21:00:15
last_update2016-12-21 21:00:15
depth1
children0
last_payout2017-01-21 19:24: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_length225
author_reputation222,148,899,763,308
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,058,459
net_rshares0
author_curate_reward""
vote details (1)
@bullionstackers ·
Thanks @fyrstikken
The bots looks Cute
๐Ÿ‘  
properties (23)
authorbullionstackers
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t193418256z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"users":["fyrstikken"]}
created2016-12-21 19:34:18
last_update2016-12-21 19:34:18
depth1
children0
last_payout2017-01-21 19:24: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_length38
author_reputation163,180,943,634,376
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,057,905
net_rshares6,939,767,250
author_curate_reward""
vote details (1)
@codypanama ·
This is very cool of you :-)
not sure if I can find the time to learn these now, I've bookmarked for a later date.
 Thanks for sharing, I'll follow you from now on...
You can find me here...
<center>_**My Signature Post --->**_ [_**Fun & Has Great Misic !**_](https://steemit.com/signature/@codypanama/signature-reference-post-only-might-work-for-you-too) *feedback always welcome*</center> 
## <center>*Cheers* https://steemitimages.com/DQmRmt3iSJnJCWMMLshw2w1sMdPLvFcfdsMAixkQ2Rgngvw/emo13.png</center>
properties (22)
authorcodypanama
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170614t172246130z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"image":["https://steemitimages.com/DQmRmt3iSJnJCWMMLshw2w1sMdPLvFcfdsMAixkQ2Rgngvw/emo13.png"],"links":["https://steemit.com/signature/@codypanama/signature-reference-post-only-might-work-for-you-too"],"app":"steemit/0.1"}
created2017-06-14 17:22:45
last_update2017-06-14 17:22:45
depth1
children0
last_payout2017-06-21 17:22: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_length504
author_reputation3,879,315,360,846
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,844,226
net_rshares0
@creatr ·
This is fantastic, *thanks!* Now I just need to take the time to set this up... ๐Ÿ˜„๐Ÿ˜‡๐Ÿ˜„
<a href="https://steemit.com/introducemyself/@creatr/a-periodic-table-of-contents-my-blog-circa-december-2016" target="_blank">
  <img src="http://i.giphy.com/L9fgkQC2UyB32.gif" alt="@creatr" style="border:0;">
</a>
๐Ÿ‘  
properties (23)
authorcreatr
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t191201062z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"image":["http://i.giphy.com/L9fgkQC2UyB32.gif"],"links":["https://steemit.com/introducemyself/@creatr/a-periodic-table-of-contents-my-blog-circa-december-2016"]}
created2016-12-21 19:12:00
last_update2016-12-21 19:12:00
depth1
children0
last_payout2017-01-21 19:24: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_length299
author_reputation136,627,187,742,915
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,057,754
net_rshares6,939,768,503
author_curate_reward""
vote details (1)
@fungiflora ·
It says the page to download piston doesn't exist yet. Any advice?
properties (22)
authorfungiflora
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20171024t024635514z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"app":"steemit/0.1"}
created2017-10-24 02:46:33
last_update2017-10-24 02:46:33
depth1
children0
last_payout2017-10-31 02:46:33
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_length66
author_reputation3,918,925,164
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,418,417
net_rshares0
@ironshield ·
Highly encourage people to use this script.  Make Steemit a better place.  @ironshield
properties (22)
authorironshield
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170607t220006859z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"users":["ironshield"],"app":"steemit/0.1"}
created2017-06-07 22:00:00
last_update2017-06-07 22:00:00
depth1
children0
last_payout2017-06-14 22:00: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_length86
author_reputation648,787,896,432,262
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,364,263
net_rshares0
@ishan-pandey ·
please see my blogs , I have been working hard but I need some limelight :) .
Much appreciated .

https://steemit.com/@ishan-pandey

https://steemit.com/history/@ishan-pandey/the-rockfeller-empire-or-behistorybuff-or
๐Ÿ‘  
properties (23)
authorishan-pandey
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t182834752z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"links":["https://steemit.com/@ishan-pandey","https://steemit.com/history/@ishan-pandey/the-rockfeller-empire-or-behistorybuff-or"]}
created2016-12-21 18:28:33
last_update2016-12-21 18:28:33
depth1
children0
last_payout2017-01-21 19:24: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_length216
author_reputation4,654,110,444,906
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,057,489
net_rshares380,390,257,594
author_curate_reward""
vote details (1)
@justusagenstum ·
Seems like an awful lot of work compared to [steemvoter.com](https://steemvoter.com/) which you just have to sign up for and set some very basic bot rules...or am I missing something else here...?
๐Ÿ‘  
properties (23)
authorjustusagenstum
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161222t214722055z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"links":["https://steemvoter.com/"]}
created2016-12-22 21:46:48
last_update2016-12-22 21:46:48
depth1
children0
last_payout2017-01-21 19:24: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_length196
author_reputation17,945,348,503,776
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,066,599
net_rshares7,406,043,216
author_curate_reward""
vote details (1)
@litasio ·
![](http://litas.io/upvote-litasio.jpg)

Everybody is welcome to use our service @litasio.
properties (22)
authorlitasio
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20171228t212707169z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"users":["litasio"],"image":["http://litas.io/upvote-litasio.jpg"],"app":"steemit/0.1"}
created2017-12-28 21:27:06
last_update2017-12-28 21:27:06
depth1
children0
last_payout2018-01-04 21:27: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_length90
author_reputation60,330,360,021
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,758,049
net_rshares0
@masterspecialist ·
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?
๐Ÿ‘  
properties (23)
authormasterspecialist
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20180318t045251306z
categoryupvote-bot
json_metadata{"tags":["upvote-bot","from"],"app":"steemit/0.1"}
created2018-03-18 04:52:51
last_update2018-03-18 04:52:51
depth1
children0
last_payout2018-03-25 04:52:51
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_length600
author_reputation264,597,413,235
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,075,238
net_rshares581,895,218
author_curate_reward""
vote details (1)
@mcsamm ·
This is wonderful job...l love the styling...thanks for such a great content bro... 
# steemitghana
properties (22)
authormcsamm
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170930t213048647z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"app":"steemit/0.1"}
created2017-09-30 21:30:48
last_update2017-09-30 21:30:48
depth1
children0
last_payout2017-10-07 21:30:48
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_length99
author_reputation1,559,156,611,574,885
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,413,423
net_rshares0
@mrwang ·
Thanks soo much @fyrstikken
This will definitely help me in curations...
I will give this a look and try it out very soon
๐Ÿ‘  ,
properties (23)
authormrwang
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t183922472z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"users":["fyrstikken"]}
created2016-12-21 18:39:21
last_update2016-12-21 18:39:21
depth1
children4
last_payout2017-01-21 19:24: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_length121
author_reputation86,273,439,427,466
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,057,561
net_rshares444,710,019,703
author_curate_reward""
vote details (2)
@fyrstikken ·
Awesome - If you need any help, youยดll find me on @steemspeak radio :)
๐Ÿ‘  ,
properties (23)
authorfyrstikken
permlinkre-mrwang-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t190015729z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"users":["steemspeak"]}
created2016-12-21 19:00:15
last_update2016-12-21 19:00:15
depth2
children3
last_payout2017-01-21 19:24: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_length70
author_reputation377,187,606,449,589
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,057,683
net_rshares63,007,174,058
author_curate_reward""
vote details (2)
@fyrstikken ·
<h3>It Works!!</h3><a href="http://imgur.com/fV6yyyz"><img src="http://i.imgur.com/fV6yyyz.png" title="source: imgur.com" /></a>
๐Ÿ‘  
properties (23)
authorfyrstikken
permlinkre-fyrstikken-re-mrwang-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t203736600z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"image":["http://i.imgur.com/fV6yyyz.png"],"links":["http://imgur.com/fV6yyyz"]}
created2016-12-21 20:37:36
last_update2016-12-21 20:37:36
depth3
children2
last_payout2017-01-21 19:24: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_length128
author_reputation377,187,606,449,589
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,058,347
net_rshares0
author_curate_reward""
vote details (1)
@pqlenator · (edited)
Time delayed upvotes? Stop upvote at X remaining voting strength?
properties (22)
authorpqlenator
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20180220t092150058z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"app":"steemit/0.1"}
created2018-02-20 09:21:48
last_update2018-02-20 09:25:03
depth1
children0
last_payout2018-02-27 09:21:48
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_reputation6,852,849,487,588
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,021,711
net_rshares0
@raviraj4you ·
Join Steemit Upvote Exchange Group http://www.doze.io
properties (22)
authorraviraj4you
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170717t161829879z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"links":["http://www.doze.io"],"app":"steemit/0.1"}
created2017-07-17 16:20:21
last_update2017-07-17 16:20:21
depth1
children2
last_payout2017-07-24 16:20:21
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_length53
author_reputation-181,820,563,375
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,783,368
net_rshares0
@fyrstikken ·
<p>Haha there's a religion based on everything these days.</p>
๐Ÿ‘  
properties (23)
authorfyrstikken
permlinkre-raviraj4you-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170717t162137123z
categoryupvote-bot
json_metadata{"app":"freakazoid/0.0.1","tags":["upvote-bot"]}
created2017-07-17 16:21:42
last_update2017-07-17 16:21:42
depth2
children1
last_payout2017-07-24 16: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_length63
author_reputation377,187,606,449,589
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,783,496
net_rshares0
author_curate_reward""
vote details (1)
@crystalhuman ·
Pastafarianism is my personal favorite.
properties (22)
authorcrystalhuman
permlinkre-fyrstikken-re-raviraj4you-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20180412t023441070z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"app":"steemit/0.1"}
created2018-04-12 02:34:42
last_update2018-04-12 02:34:42
depth3
children0
last_payout2018-04-19 02:34: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_length39
author_reputation37,829,501,059,627
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id49,594,370
net_rshares0
@runridefly ·
@fyrstikken, never thought that I would be thinking of using a bot.   Thank you for sharing my friend.
๐Ÿ‘  , ,
properties (23)
authorrunridefly
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t184146633z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"users":["fyrstikken"]}
created2016-12-21 18:41:48
last_update2016-12-21 18:41:48
depth1
children1
last_payout2017-01-21 19:24: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_length102
author_reputation519,048,558,501,344
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,057,577
net_rshares387,330,024,844
author_curate_reward""
vote details (3)
@fyrstikken ·
Yeah, we need you to be the master of your own bot @runridefly :)
properties (22)
authorfyrstikken
permlinkre-runridefly-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t185939391z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"users":["runridefly"]}
created2016-12-21 18:59:39
last_update2016-12-21 18:59:39
depth2
children0
last_payout2017-01-21 19:24: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_length65
author_reputation377,187,606,449,589
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,057,681
net_rshares0
@rynow ·
Hi @fyrstikken
Thank you for sharing, currently I will stick with manual voting, but in future I might change.
๐Ÿ‘  ,
properties (23)
authorrynow
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t190530209z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"users":["fyrstikken"]}
created2016-12-21 19:05:27
last_update2016-12-21 19:05:27
depth1
children0
last_payout2017-01-21 19:24: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_length110
author_reputation240,466,017,478,936
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,057,709
net_rshares0
author_curate_reward""
vote details (2)
@seablue · (edited)
I tried installing piston on a fresh digitalocean droplet (Ubuntu 16.10).  Couldn't get piston to compile no matter how many dependencies I pulled in. :-)  Frustrating.

I kept getting errors relating to scrypt, openssl  and aes.  I pulled in everything I could find related to that hoping to get lucky, but ultimately, no luck.
properties (22)
authorseablue
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161222t102654393z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"]}
created2016-12-22 10:26:54
last_update2016-12-22 10:36:33
depth1
children0
last_payout2017-01-21 19:24: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_length328
author_reputation18,862,018,948,644
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,062,470
net_rshares0
@stranger27 ·
Failed to adapt it to GOLOS platform. Could you help me with it?
properties (22)
authorstranger27
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161224t134910688z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"]}
created2016-12-24 13:49:12
last_update2016-12-24 13:49:12
depth1
children0
last_payout2017-01-21 19:24: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_reputation49,402,308,343,439
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,077,637
net_rshares0
@teamsteem ·
I totally second your conclusion.
properties (22)
authorteamsteem
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161222t015118793z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"]}
created2016-12-22 01:50:57
last_update2016-12-22 01:50:57
depth1
children0
last_payout2017-01-21 19:24: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_length33
author_reputation284,804,541,406,803
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,060,333
net_rshares0
@teamsteem ·
Thank you very much. I'll use it. I was about to ask you back about it. 

Is it possible to have different delays for all the different people. 

Are the vote delay in seconds? Anyway, thank you. I'll begin to dabble with it and if I have have any issues I'll ask you on Steemspeak. 

I have already python and piston install so hopefully it should go smooth.
properties (22)
authorteamsteem
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161222t015837846z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"]}
created2016-12-22 01:58:18
last_update2016-12-22 01:58:18
depth1
children0
last_payout2017-01-21 19:24: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_length359
author_reputation284,804,541,406,803
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,060,373
net_rshares0
@vexedkiller007 ·
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?
๐Ÿ‘  
properties (23)
authorvexedkiller007
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170713t174505631z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"app":"steemit/0.1"}
created2017-07-13 17:45:06
last_update2017-07-13 17:45:06
depth1
children0
last_payout2017-07-20 17:45: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_length266
author_reputation255,136,403,745
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,364,755
net_rshares2,525,616,370
author_curate_reward""
vote details (1)
@virtualgrowth ·
Thanks for this.  Will be setting up in the near future.  Also [shared](https://twitter.com/Steem_Land/status/811642366880870400) [on](https://twitter.com/Steem_Land/status/811642262245482496) [twitter](https://twitter.com/Steem_Land/status/811642159170539520)
๐Ÿ‘  , , , , , ,
properties (23)
authorvirtualgrowth
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t184115814z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"links":["https://twitter.com/Steem_Land/status/811642366880870400","https://twitter.com/Steem_Land/status/811642262245482496","https://twitter.com/Steem_Land/status/811642159170539520"]}
created2016-12-21 18:41:21
last_update2016-12-21 18:41:21
depth1
children1
last_payout2017-01-21 19:24: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_length260
author_reputation194,332,334,708,783
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,057,574
net_rshares382,422,924,517
author_curate_reward""
vote details (7)
@twitterbot ·
### ![Steem_Land](https://pbs.twimg.com/profile_images/796481381366804481/GZiD2MS0_normal.jpg) **[Steem_Land](https://twitter.com/@Steem_Land/status/811642366880870400)** tweeted @ 21 Dec 2016 - 18:39 UTC

> Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps &amp; Download the ZIP-File!
[steemit.com/upvote-bot/@fyโ€ฆ](https://t.co/4DsEO33g6r)
@Beyond_Bitcoin


### ![Steem_Land](https://pbs.twimg.com/profile_images/796481381366804481/GZiD2MS0_normal.jpg) **[Steem_Land](https://twitter.com/@Steem_Land/status/811642262245482496)** tweeted @ 21 Dec 2016 - 18:39 UTC

> Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps &amp; Download the ZIP-File!
[steemit.com/upvote-bot/@fyโ€ฆ](https://t.co/4DsEO33g6r)
@steemit @steemiobot


### ![Steem_Land](https://pbs.twimg.com/profile_images/796481381366804481/GZiD2MS0_normal.jpg) **[Steem_Land](https://twitter.com/@Steem_Land/status/811642159170539520)** tweeted @ 21 Dec 2016 - 18:39 UTC

> Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps &amp; Download ZIP-File!
[steemit.com/upvote-bot/@fyโ€ฆ](https://t.co/4DsEO33g6r)
@SteemUps @SteemitPosts


###### *Disclaimer: I am just a bot trying to be helpful.*
properties (22)
authortwitterbot
permlinkre-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t184115814z-20161221t184227
categoryupvote-bot
json_metadata""
created2016-12-21 18:42:27
last_update2016-12-21 18:42:27
depth2
children0
last_payout2017-01-21 19:24: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_length1,207
author_reputation2,792,128,643,772
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,057,582
net_rshares0
@winburn ·
Thanks
properties (22)
authorwinburn
permlinkre-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170630t030142677z
categoryupvote-bot
json_metadata{"tags":["upvote-bot"],"app":"steemit/0.1"}
created2017-06-30 03:01:42
last_update2017-06-30 03:01:42
depth1
children0
last_payout2017-07-07 03:01: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_length6
author_reputation50,663,344,228
root_title"Is this the BEST UPVOTE BOT ON STEEMIT? - Get started in 3 easy steps & Download the ZIP-File!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,709,014
net_rshares0