UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners by fyrstikken

View this thread on steempeak.com
· @fyrstikken ·
$3.86
UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners
This Piston/Python-Bot will upvote EVERYONE who post on Steemit with a 2% upvote except if the post is flagged by @cheetah or @steemcleaners to avoid voting for scam, spam & plagiarism (thank you @anyx for providing the code-snippet and to @inertia for making it work)

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


save the following code as: <b>bot.py</b>
```Python
# This Piston/Python-Bot will vote for everyone who post except those flagged by
# @cheetah or @steemcleaners. By Default the Upvote is set at 2%
# Created by: @furion, @contentjunkie, @anyx, @inertia, @fyrstikken
# Make sure you have the latest version of Python and Piston installed
# See Original Post for details and step by step process.
# For help come on http://steemspeak.com or http://steemit.chat

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 = []

# Skiplist functionality has not been added yet, this will be your personal blacklist
with open('skiplist.txt', mode='r') as infile:
    reader = csv.reader(infile)
    for rows in reader:
        v = rows[0]
        top_writers.append(v)
# Add your Account, Posting key for voting and/or Active Key for tipping 
my_subscriptions = top_writers + my_favorites
account = ["your-account-name"]
posting_key = ["your-private-posting-key"]
active_key = []
# This is the range (in seconds) in which your bot will cast a vote
vote_delay = random.randrange(1200,1800)
 
upvote_history = []
 
def feed():
# Starting The Bot
    print("Upvote Bot Started - Waiting for New Posts to Upvote!")
    steem = Steem(wif=posting_key[0])
    for comment in steem.stream_comments():
 
        if True: 
# Just making sure we vote for the post and not a comment.
            if comment.depth == 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()
 
# Tipping Function send $0.001 in STEEM
def send_a_tip(author):
    steem = Steem(wif=active_key)
    steem.transfer(author, 0.001, "STEEM", memo="Keep Blogging", 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)
# Checking if Post is flagged for Plagarism & Spam
         names = ['steemcleaners', 'cheetah']
         for avote in upvote_comment['active_votes']:
           if (avote['voter'] in names and avote['percent'] < 0):
            print("====> Upvote Skipped - Post Flagged by Cheetah or Steemcleaners")
            return False
# If the post has not been flagged by Cheetah or Steemcleaners, it will now upvote the post
# with a 2 % upvote 
         upvote_comment.vote(2, v)
# Upvote has now been done and it will now print a message to your screen:
         print("====> Post Upvoted Successfully!")
         upvote_history.append(upvote_comment.identifier)
     except BroadcastingError as e:
       print("Upvoting failed...")
       print("We have probably already upvoted this post before the author edited it.")
       print(str(e))
 
       if upvote_comment.author in my_favorites:
         send_a_tip(upvote_comment.author)
         print("====> Sent $0.001 STEEM 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...")

# If you want to add more complexity to the Bot, feel free to do so and share it with
# The Steemit community on your own Blog.


```
create an empty text file called: <b>skiplist.txt</b> (does not currently have a purpose)

<center><img src="http://i.imgur.com/RQaoV4t.png"></center>


<h1>Alright - You are now all set and ready to vote for EVERYONE</h1>

When I first arrived to Steemit, everyone was upvoting me - and since then - less and less votes are being cast everyday by everyone to everyone - It is a downward spiral and a vicious circle of doom if we do not change the culture around here and bring people up, new people and returning people - it is very important for the growth of this platform that we are liberal with our votes in a big broad way - voluntarily.

<h1> This is how the Voting-Picture looks like on an average day</h1>

<img src="http://i.imgur.com/359heVR.png">

What you see here is the top 30 list of upvoters ranked after how many posts they have voted for. Now, I want this list to be populated like never seen before, because look at that - the bottom of this list is only 90 votes, and it get much worse if we go down the list, which we will do now:

<img src="http://i.imgur.com/4sOS6RZ.png">

So as you can see - only a few people is voting and they are for the most part only voting for a few people, this can be more optimised by actively using this bot to bring votes out to content-creators without voting for scam and spam and plagiarism. And is something even 3rd party voting-sites should implement so that we get more votes around every day, because it gets much worse then this if we go further down the list:

<img src="http://i.imgur.com/0psyeWD.png">

You see how meaningless it starting to become when we go down the rabbit-hole in status quo, anyone want this to change? then be the change - start with yourself and make sure that you are on the top of the list, it will cost you nothing and gain you something and new and existing users, as well as yourself will benefit from this voluntarily small but effective generosity, because it only get worse if we keep looking at the list:

<img src="http://i.imgur.com/82f0OMG.png">

So basically we have 100 people that votes and about 600 posts per day and according to SteemD: 125,535 registered accounts... Now what is wrong with that picture? Let me sum it up again:

```
125,535 Registered accounts
    600 Posts per day (approx)
    100 People voting for almost nobody
```

<center><h1>If we change the culture, the platform can grow, and there is a good chance that everything will start thriving</h1></center>

Enjoy the bot, and if you have any requests you can reach us all on http://steemspeak.com 
and http://steemit.chat 

<center><img src="http://i.imgur.com/npzFIQJ.png"></center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 303 others
properties (23)
post_id1,729,846
authorfyrstikken
permlinkupdated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or
categoryupvote-bot
json_metadata"{"format": "markdown", "links": ["https://git-scm.com/downloads", "https://www.python.org/downloads/", "http://piston.readthedocs.io/en/stable/installation.html", "http://steemspeak.com", "http://steemit.chat"], "app": "steemit/0.1", "tags": ["upvote-bot", "tip-bot", "plagiarism", "steemit"], "users": ["cheetah", "steemcleaners", "anyx", "inertia"], "image": ["http://i.imgur.com/RQaoV4t.png"]}"
created2017-01-10 18:06:18
last_update2017-01-10 18:06:18
depth0
children38
net_rshares23,542,128,657,278
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value3.548 SBD
curator_payout_value0.309 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length7,185
author_reputation377,282,504,744,699
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (367)
@fubar-bdhr ·
Maybe you should not vote on people who have rep < 25 as well.
properties (22)
post_id1,729,871
authorfubar-bdhr
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t181217008z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 18:12:18
last_update2017-01-10 18:12:18
depth1
children4
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length62
author_reputation64,896,641,536,003
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fyrstikken ·
that is not the purpose of this experiment.
If someone has a low reputation that is in the past. Does not mean that is the future. When I first came to steemit I had ZERO reputation, and if it was not for all the UPVOTES, I would not have stayed.

Would you?
👍  ,
properties (23)
post_id1,729,899
authorfyrstikken
permlinkre-fubar-bdhr-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t181614264z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 18:16:15
last_update2017-01-10 18:16:15
depth2
children3
net_rshares24,944,879,630
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length258
author_reputation377,282,504,744,699
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@simonjay ·
The upvotes and power gaining keep me on steemit.
properties (22)
post_id1,732,180
authorsimonjay
permlinkre-fyrstikken-re-fubar-bdhr-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170111t010237795z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-11 01:02:42
last_update2017-01-11 01:02:42
depth3
children2
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length49
author_reputation464,158,883,361,279
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@runridefly · (edited)
@fyrstikken, this bot looks to kick some real ass.   I wish this bot the very best and maybe one day I will have him working for me.  Thank you for all the bot votes friend.  Steem On!
properties (22)
post_id1,729,876
authorrunridefly
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t181255885z
categoryupvote-bot
json_metadata"{"users": ["fyrstikken"], "tags": ["upvote-bot"]}"
created2017-01-10 18:12:57
last_update2017-01-10 18:14:12
depth1
children2
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length184
author_reputation179,198,072,237,533
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fyrstikken ·
It has been running non stop for a couple of days now to test it and see that it actually works, yeah I hope to see this kind of logic implemented in as many bots and upvote-service sites as possible.

Without the Ebb and the Flo, all we create is a desolated place. So giving and receiving votes is extremely important platform-wide. I hope something good comes out of this.
👍  
properties (23)
post_id1,729,925
authorfyrstikken
permlinkre-runridefly-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t181939893z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 18:19:39
last_update2017-01-10 18:19:39
depth2
children1
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length375
author_reputation377,282,504,744,699
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@barrydutton ·
I have taken a Steemit break this week, so I am guessing that is why my votes are not appearing, I have been about half as active the last few days and it is partly because I work hard on my posts, hardly earning any votes, views, comments or payout 9/10 days - 

-- and is discouraging me the last few weeks - like you said in your comments here and why you are doing this
properties (22)
post_id1,739,598
authorbarrydutton
permlinkre-fyrstikken-re-runridefly-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170112t034559555z
categoryupvote-bot
json_metadata"{"app": "steemit/0.1", "tags": ["upvote-bot"]}"
created2017-01-12 03:45:57
last_update2017-01-12 03:45:57
depth3
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length373
author_reputation333,682,425,228,294
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fulltimegeek ·
Upvoted and resteemed. I love your dedication to Steemit.
properties (22)
post_id1,729,892
authorfulltimegeek
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t181502393z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 18:15:18
last_update2017-01-10 18:15:18
depth1
children1
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length57
author_reputation58,583,832,278,845
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fyrstikken ·
thank you, for better and for worse, right? :)
👍  
properties (23)
post_id1,729,933
authorfyrstikken
permlinkre-fulltimegeek-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t182020312z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 18:20:21
last_update2017-01-10 18:20:21
depth2
children0
net_rshares165,738,936,291
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length46
author_reputation377,282,504,744,699
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@jamesbrown ·
Where did you pull the voting numbers from?
properties (22)
post_id1,729,988
authorjamesbrown
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t182804017z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 18:28:12
last_update2017-01-10 18:28:12
depth1
children2
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length43
author_reputation15,291,301,254,496
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fyrstikken ·
I took them from: https://steemdb.com/labs/rshares by @jesta and ranked it differently in a google spreadsheet.
👍  ,
properties (23)
post_id1,730,288
authorfyrstikken
permlinkre-jamesbrown-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t190353626z
categoryupvote-bot
json_metadata"{"users": ["jesta"], "links": ["https://steemdb.com/labs/rshares"], "tags": ["upvote-bot"]}"
created2017-01-10 19:03:54
last_update2017-01-10 19:03:54
depth2
children1
net_rshares26,531,520,242
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length111
author_reputation377,282,504,744,699
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@jamesbrown ·
Thanks.
properties (22)
post_id1,730,431
authorjamesbrown
permlinkre-fyrstikken-re-jamesbrown-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t192808104z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 19:28:15
last_update2017-01-10 19:28:15
depth3
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length7
author_reputation15,291,301,254,496
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@justtryme90 ·
This is an interesting idea @fyrstikken. Keep up the work, I appreciate your efforts to help the general community.
properties (22)
post_id1,730,018
authorjusttryme90
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t183104876z
categoryupvote-bot
json_metadata"{"users": ["fyrstikken"], "tags": ["upvote-bot"]}"
created2017-01-10 18:31:03
last_update2017-01-10 18:31:03
depth1
children1
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length115
author_reputation140,173,741,834,676
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fyrstikken ·
tnx, I hope we will see more enthusiasm and growth and cultural change, it has to come from us individually because we want to get to the next level with all onboard.
👍  
properties (23)
post_id1,730,312
authorfyrstikken
permlinkre-justtryme90-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t190749484z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 19:07:48
last_update2017-01-10 19:07:48
depth2
children0
net_rshares3,751,313,054
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length166
author_reputation377,282,504,744,699
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@professorx ·
Can we follow the bot as leader in Streemian if we know the account it is on?
properties (22)
post_id1,730,026
authorprofessorx
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t183143315z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 18:31:42
last_update2017-01-10 18:31:42
depth1
children1
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length77
author_reputation2,326,305,067,153
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fyrstikken ·
I have to check out @streemian but maybe you can ask them to implement the same logic in their system so their users can have that option. in addition to the other streems (2% upvotes for everybody keeps my voting-power at 100% most of the time)
properties (22)
post_id1,730,407
authorfyrstikken
permlinkre-professorx-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t192216909z
categoryupvote-bot
json_metadata"{"users": ["streemian"], "tags": ["upvote-bot"]}"
created2017-01-10 19:22:18
last_update2017-01-10 19:22:18
depth2
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length245
author_reputation377,282,504,744,699
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@felixxx ·
$0.02
I made some minor ~~improvements~~ changes  to this, as I'm learning Python.
Will blog about it later.
👍  
properties (23)
post_id1,730,086
authorfelixxx
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t183811976z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 18:38:09
last_update2017-01-10 18:38:09
depth1
children1
net_rshares818,902,353,880
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.023 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length102
author_reputation66,238,594,869,311
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@fyrstikken ·
That is awesome!!
properties (22)
post_id1,730,113
authorfyrstikken
permlinkre-felixxx-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t184208224z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 18:42:09
last_update2017-01-10 18:42:09
depth2
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length17
author_reputation377,282,504,744,699
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@inertia ·
![](https://media.giphy.com/media/dcubXtnbck0RG/giphy.gif)
👍  , ,
properties (23)
post_id1,730,118
authorinertia
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t184234930z
categoryupvote-bot
json_metadata"{"image": ["https://media.giphy.com/media/dcubXtnbck0RG/giphy.gif"], "tags": ["upvote-bot"]}"
created2017-01-10 18:42:33
last_update2017-01-10 18:42:33
depth1
children1
net_rshares377,819,402,359
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length58
author_reputation227,335,189,892,062
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@bola ·
funny.
properties (22)
post_id1,853,628
authorbola
permlinkre-inertia-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170128t074429598z
categoryupvote-bot
json_metadata"{"app": "steemit/0.1", "tags": ["upvote-bot"]}"
created2017-01-28 07:44:30
last_update2017-01-28 07:44:30
depth2
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation51,286,138,399,136
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rynow ·
Good work, keep it coming!!
properties (22)
post_id1,730,219
authorrynow
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t185549435z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 18:55:48
last_update2017-01-10 18:55:48
depth1
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length27
author_reputation139,815,575,791,730
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@valth ·
Great initiative, @fyrstikken!
properties (22)
post_id1,730,857
authorvalth
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t203702277z
categoryupvote-bot
json_metadata"{"users": ["fyrstikken"], "tags": ["upvote-bot"]}"
created2017-01-10 20:37:03
last_update2017-01-10 20:37:03
depth1
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length30
author_reputation74,131,024,130,091
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@freebornangel ·
That is just what I suggested for the steemit account.

How did I get excluded from your list?
Don't tell me I fall between 90 and 95,...
👍  
properties (23)
post_id1,730,988
authorfreebornangel
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t205541615z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 20:55:42
last_update2017-01-10 20:55:42
depth1
children4
net_rshares5,839,232,335
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length137
author_reputation217,103,420,888,695
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@fyrstikken ·
no, you are not on the list: 

<img src="http://i.imgur.com/HF2Snzf.png">
properties (22)
post_id1,731,195
authorfyrstikken
permlinkre-freebornangel-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t213154758z
categoryupvote-bot
json_metadata"{"image": ["http://i.imgur.com/HF2Snzf.png"], "tags": ["upvote-bot"]}"
created2017-01-10 21:31:54
last_update2017-01-10 21:31:54
depth2
children3
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length73
author_reputation377,282,504,744,699
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@freebornangel ·
Is that because my sp weight is too small?
I certainly voted enough to make the list.
properties (22)
post_id1,731,626
authorfreebornangel
permlinkre-fyrstikken-re-freebornangel-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170110t224536417z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-10 22:45:39
last_update2017-01-10 22:45:39
depth3
children2
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length85
author_reputation217,103,420,888,695
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@simonjay ·
Oh my lord is this for reals!? I didn't think it was this bad why the heck is nobody voting. Haha I am so gutted these were taken when I was writing content as I normally do votes daily. I guess %2 is better then no votes.
properties (22)
post_id1,732,170
authorsimonjay
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170111t010044258z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-11 01:00:48
last_update2017-01-11 01:00:48
depth1
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length222
author_reputation464,158,883,361,279
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cryptomancer · (edited)
This is really cool!  I use Steem Voter for now as I haven't been able to find the time to learn how to code bots myself.  I'd love to give it a go, though, and this is one of the clearer tutorials I've seen on the subject, so thanks very much for sharing your knowledge with us!  You've got yourself a new follower.  :-)

How did you generate that list of upvoters?  I'd like to see where I rank on it.  I do try to spread my votes around as much as possible via Steam Voter, but I try to keep my voting power around 80-90% to maximize the benefit of my votes.  Would be useful to know if my vote count has been really low lately so I can tweak the Steam Voter settings.

EDIT:  I think I vote on something like 20-30 posts per day on average, so was somewhat surprised not to see myself on your list.
properties (22)
post_id1,733,095
authorcryptomancer
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170111t042935444z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-11 04:29:36
last_update2017-01-11 04:36:24
depth1
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length802
author_reputation17,333,604,732,440
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@boddhisattva ·
> we have 100 people that votes

I'm not sure you are right... I'm voting every day about 40 times. But:
- I just have a small SP and my vote is nothing for those posts
- I'm not in your list because my voting reward is small (because I have a small SP)

If I will vote more with less voting power it still gives nothing to me and other users.

And there are many people like me.

So I want to make an update to your post. It is important that the owners of large SP have done more votes. So they get more rewards, increase the rewards to other users, create interest for new users.
properties (22)
post_id1,733,314
authorboddhisattva
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170111t052158397z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-11 05:21:57
last_update2017-01-11 05:21:57
depth1
children1
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length582
author_reputation1,023,292,992,280,757
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fyrstikken ·
Yes, I totally agree.
properties (22)
post_id1,736,411
authorfyrstikken
permlinkre-boddhisattva-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170111t174406553z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-11 17:44:06
last_update2017-01-11 17:44:06
depth2
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation377,282,504,744,699
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@barrydutton ·
I vote roughly 40x/ day every day, pretty much, sometimes more.... sometimes less but certainly not much less on average than that.  I have voted so many times at 100% most days my SP drops way way down LOL

Like you, I try to vote lots, help decent content, resteem a lot though I have dialled it way back and try to always look for newer people where my tiny amount of SP will help them a bit, with my higher rep than them

I like how you are always trying to look out for us as a whole, not just a few top writers here being pushed by a certain few people.
properties (22)
post_id1,739,582
authorbarrydutton
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170112t034021578z
categoryupvote-bot
json_metadata"{"tags": ["upvote-bot"]}"
created2017-01-12 03:40:18
last_update2017-01-12 03:40:18
depth1
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length559
author_reputation333,682,425,228,294
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@predictionmarket · (edited)
Can anyone offer me a little more detailed explanation for how to get this bot to work?

For:

> The 3 Simple Tasks You Must Do First!
> Install GIT from This Website
> Install Python 3+ from This Website
> Install Piston from This Website

The first two are straightforward, but I'm not sure how to install Piston, as the site that I'm linked to for it only gives me what appears to be code to enter into ??? (into what?)

Also, 

> save the following code as: bot.py

Save it as what (notepad file?) and save it where (within one of the command prompts of the previous installs?)?

Lastly,

> create an empty text file called: skiplist.txt (does not currently have a purpose)

Where to save it?

I'm sorry to say, I've never dealt a second with programming, so I'm completely lost, here.  Any help on this would be greatly appreciated.  I'd be willing to throw a $5 tip your way, if you can manage to walk my thick scull ( ;) ) through it.  Thanks in advance.
properties (22)
post_id1,743,884
authorpredictionmarket
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170112t194305775z
categoryupvote-bot
json_metadata"{"app": "steemit/0.1", "tags": ["upvote-bot"]}"
created2017-01-12 19:43:15
last_update2017-01-12 19:44:06
depth1
children2
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length961
author_reputation39,204,266,552,701
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fyrstikken ·
well, there has already been improvements done to this bot, you can download it from : https://github.com/TheBatchman/steemit-autovoter

It votes 2% for everyone by default and 100% upvote to your favorites (can be adjusted).

Keep it all in the same directory.
👍  
properties (23)
post_id1,762,352
authorfyrstikken
permlinkre-predictionmarket-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170115t171102136z
categoryupvote-bot
json_metadata"{"app": "steemit/0.1", "links": ["https://github.com/TheBatchman/steemit-autovoter"], "tags": ["upvote-bot"]}"
created2017-01-15 17:11:03
last_update2017-01-15 17:11:03
depth2
children1
net_rshares131,999,726
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length261
author_reputation377,282,504,744,699
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@predictionmarket ·
Thank you :)
properties (22)
post_id1,763,422
authorpredictionmarket
permlinkre-fyrstikken-re-predictionmarket-re-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170115t194735471z
categoryupvote-bot
json_metadata"{"app": "steemit/0.1", "tags": ["upvote-bot"]}"
created2017-01-15 19:47:48
last_update2017-01-15 19:47:48
depth3
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length12
author_reputation39,204,266,552,701
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@grey580 ·
If you are on linux.

go here to look at the command line install options. 

https://git-scm.com/download/linux
properties (22)
post_id1,885,046
authorgrey580
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170202t003939296z
categoryupvote-bot
json_metadata"{"app": "steemit/0.1", "links": ["https://git-scm.com/download/linux"], "tags": ["upvote-bot"]}"
created2017-02-02 00:39:39
last_update2017-02-02 00:39:39
depth1
children0
net_rshares0
last_payout2017-02-10 19:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length111
author_reputation11,452,199,077,076
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@edolo ·
$0.15
“You think Yoda stops teaching, just because his student does not want to hear? A teacher Yoda is. Yoda teaches like drunkards drink, like killers kill." – Yoda
👍  
properties (23)
post_id14,008,758
authoredolo
permlinkre-fyrstikken-updated-winfrey-upvote-bot-will-vote-for-everyone-who-post-on-steemit-with-a-2-upvote-except-posts-flagged-by-cheetah-or-20170928t193245834z
categoryupvote-bot
json_metadata"{"app": "steemit/0.1", "tags": ["upvote-bot"]}"
created2017-09-28 19:32:45
last_update2017-09-28 19:32:45
depth1
children0
net_rshares53,809,588,234
last_payout2017-10-05 19:32:45
cashout_time1969-12-31 23:59:59
total_payout_value0.141 SBD
curator_payout_value0.008 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length160
author_reputation4,665,400,041,487
root_title"UPDATED WINFREY UPVOTE-BOT will vote for EVERYONE who post on STEEMIT with a 2% upvote - except Posts flagged by @cheetah or @steemcleaners"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)