<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>
author | fyrstikken |
---|---|
permlink | is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file |
category | upvote-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"} |
created | 2016-12-21 18:24:54 |
last_update | 2016-12-21 18:24:54 |
depth | 0 |
children | 39 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 6.688 HBD |
curator_payout_value | 0.726 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,662 |
author_reputation | 377,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,057,472 |
net_rshares | 33,081,379,279,833 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
barrie | 0 | 305,390,178,486 | 100% | ||
neogen1 | 0 | 411,496,096,013 | 100% | ||
hermes | 0 | 435,430,132,772 | 100% | ||
hermes-miner | 0 | 523,871,432,434 | 100% | ||
thorium1 | 0 | 298,719,982,363 | 100% | ||
thorium2 | 0 | 261,578,887,190 | 100% | ||
datasecuritynode | 0 | 4,412,307,667,010 | 100% | ||
bunkermining | 0 | 311,760,442,562 | 100% | ||
riverhead | 0 | 8,053,971,245,513 | 100% | ||
bitshares.org | 0 | 134,082,700,922 | 100% | ||
blockchainbunker | 0 | 88,685,126,737 | 100% | ||
blocktech | 0 | 31,898,127,243 | 100% | ||
neominer2016 | 0 | 8,326,019,782 | 100% | ||
abderus | 0 | 132,443,405,219 | 100% | ||
olympus-steemy | 0 | 5,746,331,987 | 100% | ||
hephaestus | 0 | 146,493,251,814 | 100% | ||
aquarius.com | 0 | 73,631,484,088 | 100% | ||
minosman | 0 | 32,103,139,644 | 100% | ||
aphrodite | 0 | 91,777,747,381 | 100% | ||
hotels.com | 0 | 11,178,948,344 | 100% | ||
aries.com | 0 | 9,222,993,932 | 100% | ||
rabbitminer | 0 | 53,477,791,814 | 100% | ||
insurance.com | 0 | 15,072,438,117 | 100% | ||
fund.com | 0 | 66,243,103,062 | 100% | ||
heracles | 0 | 8,847,948,880 | 100% | ||
bunkerchainlabs | 0 | 13,145,921,710 | 100% | ||
wang | 0 | 742,959,340,490 | 49% | ||
boy | 0 | 6,336,423,648 | 100% | ||
bue-witness | 0 | 7,712,393,434 | 100% | ||
bunny | 0 | 1,192,637,961 | 100% | ||
bue | 0 | 120,442,674,622 | 100% | ||
tigerminer | 0 | 1,063,135,517 | 100% | ||
mini | 0 | 3,391,617,602 | 100% | ||
moon | 0 | 432,327,516 | 100% | ||
mineralwasser | 0 | 815,997,121 | 100% | ||
bingo-0 | 0 | 4,476,857,418 | 100% | ||
bingo-1 | 0 | 1,145,496,848 | 100% | ||
pfunk | 0 | 1,329,755,110,546 | 100% | ||
proctologic | 0 | 39,148,746,384 | 50% | ||
healthcare | 0 | 1,270,290,949 | 100% | ||
mecon | 0 | 26,761,457,268 | 100% | ||
daniel.pan | 0 | 2,004,616,648 | 100% | ||
peerplays | 0 | 183,336,336,576 | 100% | ||
full-steem-ahead | 0 | 35,567,958,727 | 50% | ||
apollo | 0 | 11,070,217,450 | 100% | ||
athena | 0 | 7,139,422,790 | 100% | ||
muses | 0 | 1,142,525,415 | 100% | ||
perseus | 0 | 185,370,561 | 100% | ||
proctologic2 | 0 | 893,990,782 | 50% | ||
ash | 0 | 244,599,029,662 | 100% | ||
helen.tan | 0 | 583,898,827 | 100% | ||
chris4210 | 0 | 168,474,690,582 | 100% | ||
acidsun | 0 | 65,134,903,031 | 100% | ||
proctologic3 | 0 | 433,483,722 | 50% | ||
ninzacode | 0 | 21,737,744,486 | 100% | ||
ivan-perez-anies | 0 | 20,438,472,102 | 100% | ||
sock | 0 | 3,365,122,198 | 24% | ||
kingscrown | 0 | 68,547,278,351 | 70% | ||
paco-steem | 0 | 203,158,134 | 25% | ||
spaninv | 0 | 1,386,536,665 | 25% | ||
teamsteem | 0 | 287,636,954,278 | 100% | ||
cryptoctopus | 0 | 385,814,568,366 | 50% | ||
nanzo-scoop | 0 | 1,061,558,631,172 | 100% | ||
daycrypter | 0 | 6,258,374,443 | 100% | ||
mummyimperfect | 0 | 162,220,598,288 | 100% | ||
tmendieta | 0 | 26,663,824,588 | 100% | ||
klye | 0 | 154,437,665,820 | 100% | ||
oaldamster | 0 | 67,867,743,714 | 100% | ||
dragonslayer109 | 0 | 221,220,924,683 | 100% | ||
ak2020 | 0 | 64,197,746,110 | 100% | ||
applecrisp | 0 | 1,037,527,299 | 20% | ||
stiletto | 0 | 80,320,433 | 25% | ||
juanmiguelsalas | 0 | 24,038,007,135 | 60% | ||
kenny-crane | 0 | 116,194,711,513 | 100% | ||
ratel | 0 | 21,881,096,322 | 100% | ||
rednetkjh | 0 | 23,519,028,883 | 100% | ||
will-zewe | 0 | 175,229,342,907 | 90% | ||
bravenewcoin | 0 | 162,556,733,841 | 100% | ||
trogdor | 0 | 252,469,046,025 | 100% | ||
proglobyte | 0 | 246,870,073 | 6.6% | ||
grandpere | 0 | 28,846,860,821 | 80% | ||
igl00 | 0 | 98,271,239,394 | 100% | ||
crok | 0 | 5,785,901,464 | 100% | ||
tyler-fletcher | 0 | 5,222,198,327 | 100% | ||
emily-cook | 0 | 54,143,300,038 | 100% | ||
mctiller | 0 | 59,080,061,707 | 75% | ||
jonnyrevolution | 0 | 1,699,665,177 | 6% | ||
jakevanderark | 0 | 32,087,854,360 | 100% | ||
tskeene | 0 | 24,378,978,962 | 100% | ||
razvanelulmarin | 0 | 85,445,983,704 | 100% | ||
fyrstikken | 0 | 142,646,216,261 | 10% | ||
clement | 0 | 17,000,970,100 | 100% | ||
thebatchman | 0 | 27,622,749,103 | 100% | ||
roelandp | 0 | 136,399,625,148 | 49% | ||
sonyanka | 0 | 1,019,181,361 | 100% | ||
lehard | 0 | 56,454,412,506 | 100% | ||
orly | 0 | 2,966,609,342 | 100% | ||
konstantin | 0 | 14,987,233,872 | 100% | ||
stranger27 | 0 | 11,377,542,531 | 100% | ||
elyaque | 0 | 99,910,216,779 | 100% | ||
sonsy | 0 | 24,107,422,974 | 100% | ||
tcfxyz | 0 | 25,342,424,026 | 100% | ||
futurefood | 0 | 41,766,740,162 | 100% | ||
pipertomcat | 0 | 10,384,303,259 | 100% | ||
busser | 0 | 4,340,115,979 | 100% | ||
knircky | 0 | 362,312,773,060 | 100% | ||
on0tole | 0 | 19,089,326,761 | 100% | ||
anasya | 0 | 41,405,264,052 | 100% | ||
mrwang | 0 | 63,007,143,980 | 100% | ||
vl248 | 0 | 12,624,453,885 | 100% | ||
vortac | 0 | 510,130,956,170 | 100% | ||
steem1653 | 0 | 1,926,981,529 | 60% | ||
sveokla | 0 | 9,019,052,419 | 100% | ||
marinabogumil | 0 | 11,207,222,100 | 100% | ||
steemit-life | 0 | 209,676,231,314 | 61% | ||
asim | 0 | 11,469,975,354 | 100% | ||
toxonaut | 0 | 39,364,577,674 | 100% | ||
incomemonthly | 0 | 10,864,417,062 | 100% | ||
bobbylee | 0 | 380,538,589,045 | 100% | ||
anmuravjev | 0 | 6,751,352,773 | 100% | ||
dwinblood | 0 | 77,607,073,996 | 100% | ||
juvyjabian | 0 | 19,095,697,894 | 100% | ||
raymondspeaks | 0 | 4,152,369,142 | 100% | ||
kell234 | 0 | 3,636,193,428 | 100% | ||
thebatchman1 | 0 | 1,729,349,077 | 100% | ||
hyiparena | 0 | 8,350,770,446 | 100% | ||
inertia | 0 | 131,081,926,688 | 100% | ||
astorm | 0 | 265,029,024 | 100% | ||
artific | 0 | 207,462,931,175 | 100% | ||
thebatchman2 | 0 | 676,344,751 | 100% | ||
the-future | 0 | 25,313,481,271 | 100% | ||
cryptojoy.com | 0 | 1,435,107,222 | 100% | ||
me-tarzan | 0 | 114,048,054,756 | 100% | ||
konti | 0 | 10,273,284,109 | 100% | ||
phenom | 0 | 9,165,864,813 | 100% | ||
sgnsteems | 0 | 29,386,879,533 | 100% | ||
kimmar | 0 | 15,184,246,363 | 100% | ||
thylbom | 0 | 367,889,270,501 | 100% | ||
bones | 0 | 3,364,671,847 | 100% | ||
deanliu | 0 | 57,674,713,391 | 100% | ||
sharker | 0 | 16,049,866,533 | 100% | ||
shredlord | 0 | 24,303,256,802 | 100% | ||
nin0000 | 0 | 6,480,168,681 | 100% | ||
neroru | 0 | 7,998,880,984 | 100% | ||
james212 | 0 | 1,457,336,944,776 | 100% | ||
zaebars | 0 | 83,367,401,238 | 100% | ||
yarly | 0 | 1,597,352,658 | 100% | ||
yarly2 | 0 | 237,057,066 | 100% | ||
yarly3 | 0 | 237,410,064 | 100% | ||
yarly4 | 0 | 136,717,265 | 100% | ||
yarly5 | 0 | 137,501,454 | 100% | ||
yarly7 | 0 | 78,307,251 | 100% | ||
raymonjohnstone | 0 | 8,067,358,643 | 100% | ||
arnob | 0 | 2,804,449,586 | 100% | ||
sokoloffa | 0 | 2,093,489,847 | 100% | ||
alsprinting | 0 | 43,015,197,324 | 100% | ||
carlidos | 0 | 15,143,169,987 | 100% | ||
crypto.owl | 0 | 12,917,961,155 | 100% | ||
summonerrk | 0 | 11,313,873,712 | 70% | ||
clonewarz | 0 | 5,677,913,404 | 100% | ||
favorit | 0 | 14,373,020,072 | 100% | ||
yarly10 | 0 | 381,942,931 | 100% | ||
yarly11 | 0 | 203,507,182 | 100% | ||
brianphobos | 0 | 40,378,046,035 | 100% | ||
royalmacro | 0 | 18,852,218,719 | 50% | ||
yarly12 | 0 | 70,881,605 | 100% | ||
bkkshadow | 0 | 46,406,948,644 | 100% | ||
nadira | 0 | 2,490,780,659 | 100% | ||
smailer | 0 | 87,708,162,633 | 100% | ||
youngkim | 0 | 27,636,197,561 | 100% | ||
bullionstackers | 0 | 50,886,348,314 | 100% | ||
dmilash | 0 | 22,038,728,379 | 100% | ||
michiel | 0 | 11,121,604,181 | 100% | ||
sujoy1990 | 0 | 1,566,092,446 | 100% | ||
gomeravibz | 0 | 78,410,002,145 | 100% | ||
ragini00 | 0 | 1,478,189,132 | 100% | ||
proglobyte-m1 | 0 | 228,661,275 | 2.17% | ||
craigslist | 0 | 861,899,012 | 100% | ||
nekromarinist | 0 | 37,733,509,238 | 100% | ||
sykochica | 0 | 41,648,813,830 | 100% | ||
atkins | 0 | 2,667,331,430 | 100% | ||
ronald0 | 0 | 1,329,145,084 | 100% | ||
jerremie | 0 | 1,541,383,663 | 100% | ||
steampty | 0 | 2,324,526,878 | 100% | ||
rosamund | 0 | 1,266,323,384 | 100% | ||
dumar022 | 0 | 49,558,395,169 | 100% | ||
tingaling | 0 | 256,999,544 | 6.6% | ||
handmade | 0 | 46,055,929,689 | 100% | ||
always1success | 0 | 6,059,386,282 | 100% | ||
transhuman | 0 | 1,898,751,643 | 44% | ||
laoyao | 0 | 34,711,408,880 | 100% | ||
feelapi | 0 | 1,696,627,558 | 100% | ||
augur | 0 | 5,759,060,351 | 100% | ||
sunshine | 0 | 57,625,059,313 | 100% | ||
asdes | 0 | 10,734,850,338 | 100% | ||
poeticsnake | 0 | 55,337,454,828 | 100% | ||
mama-steem | 0 | 2,319,827,703 | 100% | ||
denn | 0 | 10,848,588,487 | 100% | ||
accumulator | 0 | 729,671,716 | 100% | ||
kalimor | 0 | 2,053,567,279 | 100% | ||
achim86 | 0 | 3,945,827,817 | 100% | ||
andrew0 | 0 | 13,161,317,893 | 100% | ||
stephen.king989 | 0 | 25,639,265,689 | 100% | ||
kurtbeil | 0 | 5,691,873,943 | 6.6% | ||
uuuhha | 0 | 21,976,468,753 | 100% | ||
romancs | 0 | 5,295,791,057 | 100% | ||
zahar | 0 | 4,247,127,724 | 100% | ||
ipumba | 0 | 5,077,520,475 | 100% | ||
velourex | 0 | 29,385,161,497 | 100% | ||
bigsambucca | 0 | 660,309,694 | 100% | ||
oflyhigh | 0 | 14,832,765,239 | 100% | ||
steemradio | 0 | 1,564,983,606 | 100% | ||
krishtopa | 0 | 115,475,191,277 | 100% | ||
aigraph | 0 | 62,623,230 | 100% | ||
villainblack | 0 | 14,688,452,544 | 100% | ||
numberone | 0 | 6,452,659,917 | 100% | ||
zentat | 0 | 305,907,154 | 6.6% | ||
matrixdweller | 0 | 20,298,449,157 | 100% | ||
blocho | 0 | 7,198,680,837 | 100% | ||
chinadaily | 0 | 44,342,420,811 | 100% | ||
pjheinz | 0 | 22,646,477,847 | 100% | ||
helene | 0 | 6,761,208,220 | 100% | ||
virtualgrowth | 0 | 6,569,528,336 | 25% | ||
jayfox | 0 | 1,201,270,978 | 100% | ||
lamech-m | 0 | 4,639,053,460 | 100% | ||
serejandmyself | 0 | 220,683,757,833 | 100% | ||
almerri | 0 | 19,499,801,071 | 100% | ||
neptun | 0 | 610,575,759,801 | 100% | ||
jsantana | 0 | 6,558,885,224 | 50% | ||
otisbrown | 0 | 181,367,884,981 | 100% | ||
kenistyles | 0 | 1,407,209,974 | 100% | ||
leahmchenry | 0 | 23,603,054,306 | 100% | ||
generation.easy | 0 | 19,705,254,704 | 100% | ||
harand | 0 | 24,115,738,022 | 100% | ||
shuvo | 0 | 1,297,289,586 | 100% | ||
shadowspub | 0 | 18,803,804,850 | 100% | ||
mattclarke | 0 | 88,932,758,874 | 100% | ||
inchonbitcoin | 0 | 356,717,991,689 | 100% | ||
steembriefing | 0 | 247,142,293 | 6.6% | ||
creatr | 0 | 20,318,575,502 | 100% | ||
runridefly | 0 | 9,022,597,123 | 39% | ||
krnel | 0 | 413,864,599,495 | 100% | ||
pollux.one | 0 | 52,346,962,828 | 100% | ||
jlufer | 0 | 3,401,821,004 | 100% | ||
contentjunkie | 0 | 28,644,180,482 | 100% | ||
funkywanderer | 0 | 3,682,068,406 | 100% | ||
azz | 0 | 81,388,164 | 100% | ||
richardcrill | 0 | 59,060,303,258 | 100% | ||
blockcodes | 0 | 2,561,378,123 | 100% | ||
cryptochart | 0 | 67,376,199 | 100% | ||
nadin3 | 0 | 11,045,456,182 | 100% | ||
xanoxt | 0 | 35,874,987,807 | 100% | ||
jag | 0 | 76,848,357 | 100% | ||
victoriart | 0 | 16,837,094,575 | 100% | ||
sponge-bob | 0 | 205,972,258,081 | 100% | ||
l0k1 | 0 | 64,939,122,117 | 100% | ||
dailybitcoinnews | 0 | 21,821,133,041 | 100% | ||
reaction | 0 | 1,482,551,658 | 100% | ||
titusfrost | 0 | 19,395,232,901 | 100% | ||
tatianka | 0 | 3,975,700,692 | 100% | ||
gsdalex | 0 | 51,170,115 | 100% | ||
zettar | 0 | 1,848,049,542 | 100% | ||
betamusic | 0 | 28,071,772,208 | 100% | ||
smisi | 0 | 1,669,625,032 | 100% | ||
steemit79 | 0 | 52,642,618 | 100% | ||
maarnio | 0 | 6,865,273,647 | 100% | ||
richardjuckes | 0 | 25,718,089,471 | 100% | ||
elena-singer | 0 | 4,653,776,861 | 100% | ||
renzoarg | 0 | 25,954,700,738 | 100% | ||
allyouneedtoknow | 0 | 14,200,518,047 | 100% | ||
sterneye | 0 | 53,812,685 | 100% | ||
patelincho | 0 | 13,486,293,097 | 100% | ||
movietrailers | 0 | 2,271,260,744 | 100% | ||
brains | 0 | 214,193,787,324 | 100% | ||
nordland | 0 | 55,057,319 | 100% | ||
burnin | 0 | 11,606,710,293 | 100% | ||
z3r0d4yz | 0 | 1,244,372,329 | 100% | ||
bitcoinparadise | 0 | 8,844,327,419 | 100% | ||
anton333 | 0 | 10,570,092,302 | 100% | ||
ballinconscious | 0 | 6,673,990,522 | 100% | ||
whatsup | 0 | 41,956,396,486 | 100% | ||
inphiknit | 0 | 10,380,314,143 | 100% | ||
freebornangel | 0 | 4,063,149,844 | 75% | ||
nelyp | 0 | 9,328,458,031 | 100% | ||
rynow | 0 | 27,031,107,979 | 100% | ||
steemmeets | 0 | 1,734,642,843 | 100% | ||
ekaterinka | 0 | 3,653,867,577 | 100% | ||
statsbot | 0 | 72,521,061 | 100% | ||
newsbot | 0 | 72,515,084 | 100% | ||
lllchoselll | 0 | 1,391,744,763 | 100% | ||
cathi-xx | 0 | 7,639,436,555 | 100% | ||
crashoverride | 0 | 50,114,118 | 100% | ||
cartman | 0 | 221,115,883 | 100% | ||
borishaifa | 0 | 12,523,949,470 | 100% | ||
mapalatv | 0 | 3,267,257,372 | 100% | ||
xoxo | 0 | 1,121,592,833 | 100% | ||
thegame | 0 | 1,614,612,545 | 25% | ||
faded-gravity | 0 | 10,987,108,504 | 90% | ||
psych101 | 0 | 1,112,743,226 | 100% | ||
timbot606 | 0 | 15,240,193,031 | 100% | ||
steembets | 0 | 1,588,025,388 | 25% | ||
dickbutt | 0 | 97,045,968 | 100% | ||
steemint | 0 | 132,206,880 | 2.17% | ||
peeweeherman | 0 | 118,182,803 | 100% | ||
cowboycurtis | 0 | 102,500,809 | 100% | ||
jambii | 0 | 100,302,038 | 100% | ||
coolcat | 0 | 174,936,909 | 100% | ||
opall | 0 | 174,298,511 | 100% | ||
lifeisamazing | 0 | 857,698,753 | 100% | ||
elviss | 0 | 149,326,459 | 100% | ||
chair | 0 | 174,724,781 | 100% | ||
conky | 0 | 207,335,897 | 100% | ||
artists | 0 | 2,487,878,768 | 100% | ||
sjamayee | 0 | 2,002,016,012 | 100% | ||
dademurphy | 0 | 173,320,334 | 100% | ||
tintin | 0 | 1,743,382,187 | 100% | ||
htyfn | 0 | 4,334,327,213 | 100% | ||
rusteemitblog | 0 | 10,131,027,755 | 100% | ||
chart | 0 | 172,556,047 | 100% | ||
mrssteve | 0 | 176,778,977 | 100% | ||
michaelstobiersk | 0 | 30,379,956,389 | 100% | ||
towelie | 0 | 583,917,474 | 100% | ||
steem-hunter | 0 | 1,091,842,510 | 100% | ||
philipjfry | 0 | 371,344,946 | 100% | ||
mrhanky | 0 | 171,562,058 | 100% | ||
steem-it | 0 | 1,824,927,508 | 100% | ||
popcornmachine | 0 | 171,466,313 | 100% | ||
wilburtsmythe | 0 | 171,071,173 | 100% | ||
bitrx | 0 | 170,727,523 | 100% | ||
hobit | 0 | 1,163,489,503 | 100% | ||
bluetrade | 0 | 170,063,213 | 100% | ||
shape | 0 | 169,628,319 | 100% | ||
goldmatters | 0 | 116,877,977,131 | 100% | ||
budgiebee | 0 | 746,985,347 | 100% | ||
sherlock-holmes | 0 | 1,306,608,374 | 100% | ||
bleujay | 0 | 60,144,660,363 | 100% | ||
highfive | 0 | 167,606,448 | 100% | ||
jebus | 0 | 167,524,691 | 100% | ||
clarence | 0 | 167,524,650 | 100% | ||
gamer00 | 0 | 25,145,765,336 | 42% | ||
vannour | 0 | 15,833,905,747 | 100% | ||
steemet | 0 | 166,695,672 | 100% | ||
sujoyks | 0 | 1,212,249,423 | 100% | ||
rgeddes | 0 | 145,759,715,405 | 97% | ||
marel | 0 | 2,500,458,685 | 100% | ||
qantheman | 0 | 165,563,873 | 100% | ||
soyjoseluis | 0 | 7,113,182,695 | 50% | ||
steemlift | 0 | 5,316,364,745 | 100% | ||
charity | 0 | 168,079,898 | 100% | ||
annul | 0 | 164,412,797 | 100% | ||
marialin | 0 | 2,103,441,756 | 100% | ||
suntzu | 0 | 163,249,081 | 100% | ||
mchammer | 0 | 163,226,409 | 100% | ||
vanilla | 0 | 166,027,011 | 100% | ||
guerilla | 0 | 165,790,007 | 100% | ||
icet | 0 | 162,129,180 | 100% | ||
frankches | 0 | 3,920,585,754 | 100% | ||
nedd | 0 | 161,425,151 | 100% | ||
kickass | 0 | 160,795,801 | 100% | ||
oreo | 0 | 160,723,777 | 100% | ||
lalala | 0 | 363,872,090 | 100% | ||
papergirl | 0 | 2,505,475,391 | 100% | ||
curei | 0 | 162,950,973 | 100% | ||
currie | 0 | 158,533,087 | 100% | ||
giantbear | 0 | 24,734,666,983 | 100% | ||
austinpowers | 0 | 156,705,766 | 100% | ||
shapeshifter | 0 | 155,213,312 | 100% | ||
goodgirl | 0 | 146,652,466 | 100% | ||
stun | 0 | 158,153,283 | 100% | ||
icecube | 0 | 154,218,104 | 100% | ||
view | 0 | 154,153,520 | 100% | ||
kitt | 0 | 152,868,699 | 100% | ||
katt | 0 | 152,655,742 | 100% | ||
itchy | 0 | 152,593,233 | 100% | ||
scratchy | 0 | 152,585,882 | 100% | ||
ianboil | 0 | 2,015,666,506 | 100% | ||
krusty | 0 | 152,329,232 | 100% | ||
ebryans | 0 | 10,544,678,000 | 100% | ||
scene | 0 | 155,328,092 | 100% | ||
fyrst-witness | 0 | 15,636,843,413 | 100% | ||
voterinterstpool | 0 | 142,059,939 | 100% | ||
max-max | 0 | 5,815,056,180 | 100% | ||
quimby | 0 | 153,946,187 | 100% | ||
lovethepeople | 0 | 67,882,339 | 50% | ||
wiggum | 0 | 155,956,505 | 100% | ||
steemaccess | 0 | 72,722,062,177 | 100% | ||
sideshowbob | 0 | 149,559,391 | 100% | ||
jejujinfarm | 0 | 184,025,356,476 | 100% | ||
drnick | 0 | 702,447,759 | 100% | ||
technocomanche | 0 | 680,033,745 | 100% | ||
steemland.com | 0 | 1,239,041,482 | 25% | ||
porco-bastardo | 0 | 65,962,544 | 50% | ||
ammy009 | 0 | 1,799,799,878 | 100% | ||
mowgli | 0 | 940,024,292 | 100% | ||
joanaltres | 0 | 18,378,323,656 | 25% | ||
chotto | 0 | 2,256,025,193 | 100% | ||
iit | 0 | 1,691,285,338 | 100% | ||
arjunmartavela | 0 | 1,537,341,776 | 100% | ||
steemgames | 0 | 124,233,376 | 100% | ||
trans-juanmi | 0 | 4,985,494,377 | 60% | ||
zefa | 0 | 63,379,881,226 | 100% | ||
achintya | 0 | 1,302,053,627 | 100% | ||
countryfolk1 | 0 | 468,392,894 | 100% | ||
fentan99 | 0 | 2,090,149,552 | 100% | ||
steemprentice | 0 | 7,946,737,819 | 25% | ||
mafeeva | 0 | 20,207,423,104 | 100% | ||
reisman | 0 | 843,724,941 | 100% | ||
witze | 0 | 520,576,274 | 100% | ||
curators | 0 | 655,617,876 | 100% | ||
seablue | 0 | 7,400,779,864 | 100% | ||
chappers | 0 | 17,885,340,115 | 100% | ||
cardboard | 0 | 2,754,337,471 | 100% | ||
songkran | 0 | 467,478,416 | 100% | ||
val-c | 0 | 467,390,213 | 100% | ||
bittrax | 0 | 423,223,462 | 100% | ||
polloniex | 0 | 432,741,896 | 100% | ||
qubes | 0 | 127,851,151,499 | 100% | ||
saleg25 | 0 | 495,167,800 | 100% | ||
juliosalas | 0 | 730,520,432 | 60% | ||
tonicbbleking | 0 | 792,413,487 | 100% | ||
ladder | 0 | 649,673,357 | 100% | ||
codydeeds | 0 | 1,330,859,111 | 100% | ||
throughtheglass | 0 | 2,599,384,811 | 100% | ||
germanlifestyle | 0 | 1,662,148,326 | 100% | ||
manna | 0 | 4,187,586,387 | 100% | ||
networker5 | 0 | 903,581,209 | 100% | ||
alt1001 | 0 | 759,230,221 | 100% | ||
fajarsdq | 0 | 250,578,659 | 100% | ||
cgame | 0 | 781,054,207 | 100% | ||
riaansteynberg | 0 | 0 | 100% | ||
weekendbender | 0 | 0 | 100% | ||
longconjack | 0 | 0 | 100% | ||
sophistryproof | 0 | 0 | 100% | ||
ironshield | 0 | 0 | 100% | ||
vexedkiller007 | 0 | 0 | 100% | ||
jorgedr0id | 0 | 0 | 100% | ||
catherina | 0 | 0 | 100% | ||
mcsamm | 0 | 0 | 100% | ||
winburn | 0 | 0 | 100% | ||
androsform | 0 | 0 | 100% | ||
mrrifat1 | 0 | 0 | 100% | ||
anaman | 0 | 0 | 100% | ||
talalofficial | 0 | 0 | 100% | ||
inversio | 0 | 0 | 100% | ||
raviraj4you | 0 | 0 | 100% | ||
neilbhabuta | 0 | 0 | 100% | ||
jerrycthulhu | 0 | 0 | 100% | ||
creampielord | 0 | 0 | 100% | ||
kakaobank | 0 | 0 | 100% | ||
dinhtrongnib | 0 | 0 | 100% | ||
vedantpatel | 0 | 0 | 100% | ||
tarunchaudhary | 0 | 0 | 100% | ||
seldos | 0 | 0 | 100% | ||
edinho | 0 | 0 | -100% | ||
lorden | 0 | 0 | 100% | ||
magicalbot | 0 | 0 | 100% |
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 ^_^
author | ballinconscious |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t211916410z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"]} |
created | 2016-12-21 21:19:15 |
last_update | 2016-12-21 21:19:15 |
depth | 1 |
children | 2 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 231 |
author_reputation | 34,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,058,559 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ranjansingh | 0 | 0 | 100% |
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.
author | fyrstikken |
---|---|
permlink | re-ballinconscious-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161222t002635598z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"]} |
created | 2016-12-22 00:26:36 |
last_update | 2016-12-22 00:26:36 |
depth | 2 |
children | 1 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 462 |
author_reputation | 377,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,059,658 |
net_rshares | 31,820,277,824 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ballinconscious | 0 | 6,674,512,488 | 100% | ||
gamer00 | 0 | 25,145,765,336 | 42% |
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?
author | ballinconscious |
---|---|
permlink | re-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 |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"]} |
created | 2016-12-22 03:20:45 |
last_update | 2016-12-22 03:20:45 |
depth | 3 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 373 |
author_reputation | 34,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,060,744 |
net_rshares | 0 |
cool
author | banjomad |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170715t005428186z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"app":"steemit/0.1"} |
created | 2017-07-15 00:54:24 |
last_update | 2017-07-15 00:54:24 |
depth | 1 |
children | 1 |
last_payout | 2017-07-22 00:54:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,517,434 |
net_rshares | 0 |
<p>Vedi hai parlato in italiano ciao รจ una parola italiana.</p>
author | fyrstikken |
---|---|
permlink | re-banjomad-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170715t005514576z |
category | upvote-bot |
json_metadata | {"app":"freakazoid/0.0.1","tags":["upvote-bot"]} |
created | 2017-07-15 00:55:27 |
last_update | 2017-07-15 00:55:27 |
depth | 2 |
children | 0 |
last_payout | 2017-07-22 00:55:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 377,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,517,488 |
net_rshares | 0 |
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/
author | binkley |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170905t181513374z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"links":["https://steemthat.com/all-bots-stats-live/"],"app":"steemit/0.1"} |
created | 2017-09-05 18:14:33 |
last_update | 2017-09-05 18:14:33 |
depth | 1 |
children | 2 |
last_payout | 2017-09-12 18:14:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 508 |
author_reputation | 2,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,972,653 |
net_rshares | 0 |
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.
author | crystalhuman |
---|---|
permlink | re-binkley-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20180412t023736228z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"app":"steemit/0.1"} |
created | 2018-04-12 02:37:39 |
last_update | 2018-04-12 02:37:39 |
depth | 2 |
children | 1 |
last_payout | 2018-04-19 02:37:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 168 |
author_reputation | 37,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,594,664 |
net_rshares | 0 |
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.
author | binkley |
---|---|
permlink | re-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 |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"links":["https://SteemThat.com","https://Stish.io"],"app":"steemit/0.1"} |
created | 2018-04-12 03:47:03 |
last_update | 2018-04-12 03:47:51 |
depth | 3 |
children | 0 |
last_payout | 2018-04-19 03:47:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 559 |
author_reputation | 2,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,602,060 |
net_rshares | 1,457,268,287 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
crystalhuman | 0 | 1,457,268,287 | 100% |
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.
author | bleujay |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t210012250z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"users":["fyrstikken"]} |
created | 2016-12-21 21:00:15 |
last_update | 2016-12-21 21:00:15 |
depth | 1 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 225 |
author_reputation | 222,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,058,459 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sophistryproof | 0 | 0 | 100% |
Thanks @fyrstikken The bots looks Cute
author | bullionstackers |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t193418256z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"users":["fyrstikken"]} |
created | 2016-12-21 19:34:18 |
last_update | 2016-12-21 19:34:18 |
depth | 1 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 163,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,057,905 |
net_rshares | 6,939,767,250 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bleujay | 0 | 6,939,767,250 | 11% |
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>
author | codypanama |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170614t172246130z |
category | upvote-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"} |
created | 2017-06-14 17:22:45 |
last_update | 2017-06-14 17:22:45 |
depth | 1 |
children | 0 |
last_payout | 2017-06-21 17:22:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 504 |
author_reputation | 3,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,844,226 |
net_rshares | 0 |
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>
author | creatr |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t191201062z |
category | upvote-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"]} |
created | 2016-12-21 19:12:00 |
last_update | 2016-12-21 19:12:00 |
depth | 1 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 299 |
author_reputation | 136,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,057,754 |
net_rshares | 6,939,768,503 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bleujay | 0 | 6,939,768,503 | 11% |
It says the page to download piston doesn't exist yet. Any advice?
author | fungiflora |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20171024t024635514z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"app":"steemit/0.1"} |
created | 2017-10-24 02:46:33 |
last_update | 2017-10-24 02:46:33 |
depth | 1 |
children | 0 |
last_payout | 2017-10-31 02:46:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 3,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,418,417 |
net_rshares | 0 |
Highly encourage people to use this script. Make Steemit a better place. @ironshield
author | ironshield |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170607t220006859z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"users":["ironshield"],"app":"steemit/0.1"} |
created | 2017-06-07 22:00:00 |
last_update | 2017-06-07 22:00:00 |
depth | 1 |
children | 0 |
last_payout | 2017-06-14 22:00:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 648,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,364,263 |
net_rshares | 0 |
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
author | ishan-pandey |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t182834752z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"links":["https://steemit.com/@ishan-pandey","https://steemit.com/history/@ishan-pandey/the-rockfeller-empire-or-behistorybuff-or"]} |
created | 2016-12-21 18:28:33 |
last_update | 2016-12-21 18:28:33 |
depth | 1 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 216 |
author_reputation | 4,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,057,489 |
net_rshares | 380,390,257,594 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fyrstikken | 0 | 380,390,257,594 | 25% |
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...?
author | justusagenstum |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161222t214722055z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"links":["https://steemvoter.com/"]} |
created | 2016-12-22 21:46:48 |
last_update | 2016-12-22 21:46:48 |
depth | 1 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 196 |
author_reputation | 17,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,066,599 |
net_rshares | 7,406,043,216 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
seablue | 0 | 7,406,043,216 | 100% |
 Everybody is welcome to use our service @litasio.
author | litasio |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20171228t212707169z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"users":["litasio"],"image":["http://litas.io/upvote-litasio.jpg"],"app":"steemit/0.1"} |
created | 2017-12-28 21:27:06 |
last_update | 2017-12-28 21:27:06 |
depth | 1 |
children | 0 |
last_payout | 2018-01-04 21:27:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 90 |
author_reputation | 60,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 25,758,049 |
net_rshares | 0 |
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?
author | masterspecialist |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20180318t045251306z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot","from"],"app":"steemit/0.1"} |
created | 2018-03-18 04:52:51 |
last_update | 2018-03-18 04:52:51 |
depth | 1 |
children | 0 |
last_payout | 2018-03-25 04:52:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 600 |
author_reputation | 264,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 45,075,238 |
net_rshares | 581,895,218 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
resteemsamurai | 0 | 581,895,218 | 100% |
This is wonderful job...l love the styling...thanks for such a great content bro... # steemitghana
author | mcsamm |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170930t213048647z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"app":"steemit/0.1"} |
created | 2017-09-30 21:30:48 |
last_update | 2017-09-30 21:30:48 |
depth | 1 |
children | 0 |
last_payout | 2017-10-07 21:30:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,413,423 |
net_rshares | 0 |
Thanks soo much @fyrstikken This will definitely help me in curations... I will give this a look and try it out very soon
author | mrwang |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t183922472z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"users":["fyrstikken"]} |
created | 2016-12-21 18:39:21 |
last_update | 2016-12-21 18:39:21 |
depth | 1 |
children | 4 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 86,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,057,561 |
net_rshares | 444,710,019,703 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fyrstikken | 0 | 380,390,257,594 | 25% | ||
mrwang | 0 | 64,319,762,109 | 100% |
Awesome - If you need any help, youยดll find me on @steemspeak radio :)
author | fyrstikken |
---|---|
permlink | re-mrwang-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t190015729z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"users":["steemspeak"]} |
created | 2016-12-21 19:00:15 |
last_update | 2016-12-21 19:00:15 |
depth | 2 |
children | 3 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 377,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,057,683 |
net_rshares | 63,007,174,058 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mrwang | 0 | 63,007,174,058 | 100% | ||
magicalbot | 0 | 0 | 100% |
<h3>It Works!!</h3><a href="http://imgur.com/fV6yyyz"><img src="http://i.imgur.com/fV6yyyz.png" title="source: imgur.com" /></a>
author | fyrstikken |
---|---|
permlink | re-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 |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"image":["http://i.imgur.com/fV6yyyz.png"],"links":["http://imgur.com/fV6yyyz"]} |
created | 2016-12-21 20:37:36 |
last_update | 2016-12-21 20:37:36 |
depth | 3 |
children | 2 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 377,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,058,347 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
magicalbot | 0 | 0 | 100% |
Time delayed upvotes? Stop upvote at X remaining voting strength?
author | pqlenator |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20180220t092150058z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"app":"steemit/0.1"} |
created | 2018-02-20 09:21:48 |
last_update | 2018-02-20 09:25:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-27 09:21:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 6,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,021,711 |
net_rshares | 0 |
Join Steemit Upvote Exchange Group http://www.doze.io
author | raviraj4you |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170717t161829879z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"links":["http://www.doze.io"],"app":"steemit/0.1"} |
created | 2017-07-17 16:20:21 |
last_update | 2017-07-17 16:20:21 |
depth | 1 |
children | 2 |
last_payout | 2017-07-24 16:20:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,783,368 |
net_rshares | 0 |
<p>Haha there's a religion based on everything these days.</p>
author | fyrstikken |
---|---|
permlink | re-raviraj4you-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170717t162137123z |
category | upvote-bot |
json_metadata | {"app":"freakazoid/0.0.1","tags":["upvote-bot"]} |
created | 2017-07-17 16:21:42 |
last_update | 2017-07-17 16:21:42 |
depth | 2 |
children | 1 |
last_payout | 2017-07-24 16:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 377,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,783,496 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
crystalhuman | 0 | 0 | 100% |
Pastafarianism is my personal favorite.
author | crystalhuman |
---|---|
permlink | re-fyrstikken-re-raviraj4you-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20180412t023441070z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"app":"steemit/0.1"} |
created | 2018-04-12 02:34:42 |
last_update | 2018-04-12 02:34:42 |
depth | 3 |
children | 0 |
last_payout | 2018-04-19 02:34:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 37,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,594,370 |
net_rshares | 0 |
@fyrstikken, never thought that I would be thinking of using a bot. Thank you for sharing my friend.
author | runridefly |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t184146633z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"users":["fyrstikken"]} |
created | 2016-12-21 18:41:48 |
last_update | 2016-12-21 18:41:48 |
depth | 1 |
children | 1 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 102 |
author_reputation | 519,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,057,577 |
net_rshares | 387,330,024,844 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fyrstikken | 0 | 380,390,257,594 | 25% | ||
bleujay | 0 | 6,939,767,250 | 11% | ||
wunrok | 0 | 0 | 100% |
Yeah, we need you to be the master of your own bot @runridefly :)
author | fyrstikken |
---|---|
permlink | re-runridefly-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t185939391z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"users":["runridefly"]} |
created | 2016-12-21 18:59:39 |
last_update | 2016-12-21 18:59:39 |
depth | 2 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 377,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,057,681 |
net_rshares | 0 |
Hi @fyrstikken Thank you for sharing, currently I will stick with manual voting, but in future I might change.
author | rynow |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t190530209z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"users":["fyrstikken"]} |
created | 2016-12-21 19:05:27 |
last_update | 2016-12-21 19:05:27 |
depth | 1 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 240,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,057,709 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wunrok | 0 | 0 | 100% | ||
al7mn | 0 | 0 | 100% |
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.
author | seablue |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161222t102654393z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"]} |
created | 2016-12-22 10:26:54 |
last_update | 2016-12-22 10:36:33 |
depth | 1 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 328 |
author_reputation | 18,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,062,470 |
net_rshares | 0 |
Failed to adapt it to GOLOS platform. Could you help me with it?
author | stranger27 |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161224t134910688z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"]} |
created | 2016-12-24 13:49:12 |
last_update | 2016-12-24 13:49:12 |
depth | 1 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 49,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,077,637 |
net_rshares | 0 |
I totally second your conclusion.
author | teamsteem |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161222t015118793z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"]} |
created | 2016-12-22 01:50:57 |
last_update | 2016-12-22 01:50:57 |
depth | 1 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 284,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,060,333 |
net_rshares | 0 |
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.
author | teamsteem |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161222t015837846z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"]} |
created | 2016-12-22 01:58:18 |
last_update | 2016-12-22 01:58:18 |
depth | 1 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 359 |
author_reputation | 284,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,060,373 |
net_rshares | 0 |
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?
author | vexedkiller007 |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170713t174505631z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"app":"steemit/0.1"} |
created | 2017-07-13 17:45:06 |
last_update | 2017-07-13 17:45:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-20 17:45:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 266 |
author_reputation | 255,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,364,755 |
net_rshares | 2,525,616,370 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vexedkiller007 | 0 | 2,525,616,370 | 100% |
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)
author | virtualgrowth |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t184115814z |
category | upvote-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"]} |
created | 2016-12-21 18:41:21 |
last_update | 2016-12-21 18:41:21 |
depth | 1 |
children | 1 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 260 |
author_reputation | 194,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,057,574 |
net_rshares | 382,422,924,517 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fyrstikken | 0 | 380,390,257,594 | 25% | ||
virtualgrowth | 0 | 656,952,833 | 1% | ||
thegame | 0 | 146,782,958 | 1% | ||
steembets | 0 | 132,335,449 | 1% | ||
steemland.com | 0 | 103,253,456 | 1% | ||
steemprentice | 0 | 993,342,227 | 1% | ||
edinho | 0 | 0 | 100% |
###  **[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 & Download the ZIP-File! [steemit.com/upvote-bot/@fyโฆ](https://t.co/4DsEO33g6r) @Beyond_Bitcoin ###  **[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 & Download the ZIP-File! [steemit.com/upvote-bot/@fyโฆ](https://t.co/4DsEO33g6r) @steemit @steemiobot ###  **[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 & Download ZIP-File! [steemit.com/upvote-bot/@fyโฆ](https://t.co/4DsEO33g6r) @SteemUps @SteemitPosts ###### *Disclaimer: I am just a bot trying to be helpful.*
author | twitterbot |
---|---|
permlink | re-re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20161221t184115814z-20161221t184227 |
category | upvote-bot |
json_metadata | "" |
created | 2016-12-21 18:42:27 |
last_update | 2016-12-21 18:42:27 |
depth | 2 |
children | 0 |
last_payout | 2017-01-21 19:24:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,207 |
author_reputation | 2,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,057,582 |
net_rshares | 0 |
Thanks
author | winburn |
---|---|
permlink | re-fyrstikken-is-this-the-best-upvote-bot-on-steemit-get-started-in-3-easy-steps-and-download-the-zip-file-20170630t030142677z |
category | upvote-bot |
json_metadata | {"tags":["upvote-bot"],"app":"steemit/0.1"} |
created | 2017-06-30 03:01:42 |
last_update | 2017-06-30 03:01:42 |
depth | 1 |
children | 0 |
last_payout | 2017-07-07 03:01:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 50,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 6,709,014 |
net_rshares | 0 |