<html> <center> <h1>Introducing Dorabot</h1><br> <div class="pull-right"><img src="http://i.imgur.com/hXbhekf.jpg?1" alt="dorabot"/><sub>@dorabot Protector of Peace</sub></div></center> <p> Dear Steemit friends,<br><br> I have recently released my Steemit & Discord bot which I now present to you. <h3>Please welcome @dorabot!</h3><br> <p> She might not look like much 😉 but she has some usable features which I hope you will enjoy. Features to view stats and perform various actions and searches on Steemit. </p> <p> <center>https://i.imgur.com/llf1MG6.png</center> </p> <p> It all started out as a number of standalone scripts, created in python and running on a Linux Ubuntu machine. I created the python scripts utilizing the official steem python library, steem-python (https://github.com/steemit/steem-python). </p> <center><div class="pull-left"><img src="http://i.imgur.com/5Vlt1dF.jpg" alt="dorabot full picture"/><sub><a href=http://takishop.vn>Source: My Doraemon Captain America Toy</a></sub></div></center> <p> One of my first scripts was built to help me keep track and stay in touch with my most important followers.</p> <p>The Steemit feed page can quickly be cluttered, both with resteems and non-important posts. Even if you try to clean up in your follwers list, you might feel like myself, that some followers are more important, followers that would fit on a VIP list. For me, these are followers that consistently comments and upvotes my posts. And I want to make sure I stay in touch with them, to send some love back.</p> <p> This script allowed me to input a list of my VIP followers and it returned a list of their most recent posts. Running this a few times every week I made sure I kept up a frequent contact without being forced to look through my Steemit feed. </p> <p> As I became active in the Minnow Support Project and started to engage with other community members via Discord, via MSP's own server, <a href="https://discordapp.com/invite/E4t4efP" rel="nofollow noopener">PALnet</a>, I thought these scripts would be a nice addition for our Discord server. So that was how the idea of @dorabot came to life, a Steemit & Discord bot, ready to serve and promote Peace, Abundance & Liberty(PAL). 😉 </p> <h3> Are you new to Minnow Support Project (MSP) and never heard of PALnet? </h3> <h5> At the end of this post you will find a link with additional info about MSP and a link to connect to <a href="https://discordapp.com/invite/E4t4efP" rel="nofollow noopener">PALnet</a>, MSP's Discord server. </h5> <p> <center>https://i.imgur.com/plV52Q7.png</center> </p> <p> See below screenshot to get an overview of @dorabot's Discord interface. The bot is active in most channels, but it is recommended to keep usage to the <i>playingwithbots</i> channel. Output in the <i>general</i> channel is prohibited to avoid spam and flooding of messages. </p> <h3>Activate with: <i>?help</i></h3> <p> https://i.imgur.com/A4gRKQw.png </p> <p> Below I will give you a rundown of the feature described above, the feature that returns recent posts from your VIP followers.</p> <p> Access it by running the <b><i>?curate</i></b> command. </p> <p> https://i.imgur.com/Dxtn7xS.png </p> <p> As described in ?help, the list of users should be separated with space or new line. So prepare a list of users and just paste it in after the <b>?curate</b> command. At the end, you can add an optional number to indicate the number of posts to be fetched. You can return a maximum of 5 posts. </p> <p> In the example below, you see me running the command, getting the 3 latest posts from: minnowsupport, danielsaori, aggroed and ausbitbank. I have also added a non-existing account, which will return an error message. So in case of a spelling mistake in your list, you can easily spot it. In this example, I have combined separating the names with both spaces and new lines. </p> <p> https://i.imgur.com/ZlJUBKt.png </p><br> <p> <center>https://i.imgur.com/lTLM7XD.png</center> </p> <p> Find below the extract of the python code for the main function. This is the function definition: <pre><code>def getposts(user : str, postnr = 1):</code></pre> It accepts a string for the username and an integer for the number of posts. In my main Discord bot, I'm looping through the list of users and calling this for each one. It is the also the code part of the Discord bot that limits the output to 5 posts. So there is no limit to the output in the code below. </p> <p> Uncomment the last line in the code below if you want to try it out in a standalone python file. Just save it, for example: test.py, and execute it. Of course you need to have the <a href='https://github.com/steemit/steem-python'>steem-python</a> library installed. </p> <pre><code> from steem import Steem from steem.post import Post from steem.account import Account #Call function with a Steemit-username(string) and the number-of-posts(integer). #The postnr variable is optional with a default value of 1. def getposts(user : str, postnr = 1): #Check if user is a real Steemit account. try: account = Account(user) except Exception: res = 0 else: res = 1 #if real account. if(res == 1): s = Steem() #Initiate an empty list. postlist = "" #Get 50 latest blog entries from the user. We fetch 50 as this will include reblogs. posts = s.steemd.get_blog_entries(user,0, 50) #Loop through all 50 posts. for post in posts: #Check that it is not a reblogged post. if post['author'] == user: #Fetch the Post object itself. p = Post(post['author'] + '/' + post['permlink']) #Format the url and add a timestamp. url = "*https://steemit.com/@" + post['author'] + "/" + post['permlink'] + "* - " + p.created.ctime() + "\n" #Add the url to the list. postlist += url postnr -= 1 #Stop the loop if we reached the wanted number of posts. if postnr == 0: break return str(postlist) #if fake account. else: return "Doesn't seem to be a valid Steemit account." #Added it here for testing of the function. #print(getposts("danielsaori", 3)) </code></pre> <center> <h2>Thank you for reading!<br>Stayed tune for future updates.</h2> <h3>Please let me know if you have any questions.<br> And please ping me (@danielsaori) if you connect to Discord.</h3> </center> <center><img src="https://steemitimages.com/0x0/https://steemitimages.com/0x0/https://steemitimages.com/DQmRSmRyg4MdRdiKsWTMbfyiAG673K1yP65MoUTbCXGp9Xi/palfoot.gif" /></center> <center> <p>Proud member of <a href="https://steemit.com/trending/minnowsupportproject">#minnowsupportproject</a> & <a href="/trending/teamaustralia">#teamaustralia</a><br> Thank you <a href="https://steemit.com/@aggroed">@aggroed</a>, <a href="https://steemit.com/@ausbitbank">@ausbitbank</a>, <a href="https://steemit.com/@teamsteem">@teamsteem</a>,<br /> <a href="/@theprophet0">@theprophet0, <a href="/@someguy123">@someguy123, <a href="https://steemit.com/@canadian-coconut">@canadian-coconut </a>and <a href="/@sirknight">@sirknight</a><br><br> Click <a href="http://minnowsupportproject.org/"><b>HERE</b></a> to learn more about Minnow Support Project.<br /> Click <a href="https://discordapp.com/invite/E4t4efP" rel="nofollow noopener"><b>HERE</b></a> to connect to our Discord chat server. </p> <p><br /></p> <p><img src="https://steemitimages.com/0x0/https://media.giphy.com/media/xUPGcmv20b7T9cHWzm/giphy.gif" /></p></center> </html>
author | danielsaori |
---|---|
permlink | steemit-and-discord-bot-built-on-steem-python-and-discord-py |
category | bot |
json_metadata | {"tags":["bot","minnowsupportproject","steemdev","coding","python"],"users":["dorabot"],"image":["http://i.imgur.com/hXbhekf.jpg?1","https://i.imgur.com/llf1MG6.png","http://i.imgur.com/5Vlt1dF.jpg","https://i.imgur.com/plV52Q7.png","https://i.imgur.com/A4gRKQw.png","https://i.imgur.com/Dxtn7xS.png","https://i.imgur.com/ZlJUBKt.png","https://i.imgur.com/lTLM7XD.png","https://steemitimages.com/0x0/https://steemitimages.com/0x0/https://steemitimages.com/DQmRSmRyg4MdRdiKsWTMbfyiAG673K1yP65MoUTbCXGp9Xi/palfoot.gif","https://steemitimages.com/0x0/https://media.giphy.com/media/xUPGcmv20b7T9cHWzm/giphy.gif"],"links":["https://github.com/steemit/steem-python","http://takishop.vn","https://discordapp.com/invite/E4t4efP","https://steemit.com/trending/minnowsupportproject","/trending/teamaustralia","https://steemit.com/@aggroed","https://steemit.com/@ausbitbank","https://steemit.com/@teamsteem","/@theprophet0","/@someguy123","https://steemit.com/@canadian-coconut","/@sirknight","http://minnowsupportproject.org/"],"app":"steemit/0.1","format":"html"} |
created | 2017-09-10 18:32:24 |
last_update | 2017-09-10 18:32:24 |
depth | 0 |
children | 60 |
last_payout | 2017-09-17 18:32:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 36.439 HBD |
curator_payout_value | 9.825 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,444 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,482,704 |
net_rshares | 16,574,265,914,264 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
xeldal | 0 | 52,617,823,982 | 0.32% | ||
pharesim | 0 | 103,015,859,663 | 0.1% | ||
proctologic | 0 | 5,705,395,564 | 5% | ||
drifter1 | 0 | 3,854,326,447 | 100% | ||
germanaure | 0 | 218,258,712 | 0.5% | ||
cheftony | 0 | 3,514,931,665 | 1.5% | ||
albertogm | 0 | 7,865,105,617 | 27% | ||
endaksi1 | 0 | 305,751,828 | 1% | ||
ausbitbank | 0 | 168,154,924,989 | 0.8% | ||
edrivegom | 0 | 219,693,407 | 0.1% | ||
transisto | 0 | 11,603,962,128,641 | 100% | ||
raymondspeaks | 0 | 1,755,474,019 | 1% | ||
krystle | 0 | 16,119,466,463 | 10% | ||
alexpmorris | 0 | 0 | 30% | ||
stephen.king989 | 0 | 1,009,387,755 | 0.2% | ||
instahater | 0 | 185,523,310 | 10% | ||
anarcho-andrei | 0 | 198,318,887 | 0.24% | ||
benjamin.still | 0 | 309,333,627 | 1% | ||
allyouneedtoknow | 0 | 720,183,145 | 0.24% | ||
abh12345 | 0 | 3,247,894,777 | 6% | ||
jhermanbeans | 0 | 399,883,066 | 0.1% | ||
steemprentice | 0 | 1,237,174,602 | 0.1% | ||
lastminuteman | 0 | 3,132,241,610 | 0.4% | ||
silent.screamer | 0 | 60,591,867,811 | 100% | ||
pomperipossa | 0 | 317,020,315 | 0.1% | ||
libertylol | 0 | 133,585,201 | 0.1% | ||
sixexgames | 0 | 58,947,936 | 1% | ||
banjo | 0 | 210,360,950 | 1% | ||
oscarps | 0 | 3,419,243,480 | 100% | ||
alexis555 | 0 | 347,304,744,470 | 12% | ||
danielsaori | 0 | 128,404,512,424 | 100% | ||
singa | 0 | 51,846,003 | 0.1% | ||
numpypython | 0 | 110,684,245 | 0.1% | ||
decibel | 0 | 145,037,462 | 0.5% | ||
choogirl | 0 | 1,947,271,339 | 1% | ||
jhagi.bhai | 0 | 91,177,918 | 0.1% | ||
newsdesk | 0 | 10,330,875,327 | 50% | ||
gindor | 0 | 403,225,911 | 0.2% | ||
whatamidoing | 0 | 142,374,774 | 0.1% | ||
shawnfishbit | 0 | 1,200,177,370 | 0.1% | ||
stackin | 0 | 15,269,602,107 | 1% | ||
beng05 | 0 | 168,395,766 | 1% | ||
elowin | 0 | 18,717,001,285 | 100% | ||
shellyduncan | 0 | 352,352,618 | 0.08% | ||
timbalabuch | 0 | 101,542,784 | 1% | ||
swelker101 | 0 | 45,306,313,616 | 100% | ||
qwasert | 0 | 109,364,520 | 0.2% | ||
kubbyelizabeth | 0 | 2,769,299,584 | 100% | ||
kathieletalis | 0 | 5,816,175,002 | 20% | ||
nanosesame | 0 | 13,542,360,140 | 100% | ||
taica | 0 | 165,475,188 | 0.1% | ||
pusteblume | 0 | 432,154,864 | 1% | ||
wandrnrose7 | 0 | 2,045,948,211 | 100% | ||
cryptohustler | 0 | 183,704,773 | 1% | ||
stuffy | 0 | 2,732,034,366 | 100% | ||
somethingsubtle | 0 | 74,625,373 | 0.1% | ||
minnowsupport | 0 | 183,706,020,378 | 10% | ||
tinashe | 0 | 186,997,693 | 1% | ||
creativesoul | 0 | 11,430,516,385 | 100% | ||
diggerdugg | 0 | 141,024,677 | 1% | ||
linda-rose | 0 | 64,432,773 | 0.08% | ||
andrewgenaille | 0 | 146,653,174 | 0.2% | ||
n1kofi | 0 | 257,847,112 | 1% | ||
ch00fy | 0 | 383,022,385 | 1% | ||
crimsonclad | 0 | 59,599,730,336 | 25% | ||
todderic | 0 | 1,142,590,902 | 100% | ||
mumofmany | 0 | 2,126,660,963 | 10% | ||
centerlink | 0 | 49,859,724,779 | 10% | ||
myday | 0 | 161,243,027 | 0.1% | ||
gamerveda | 0 | 700,870,901 | 0.5% | ||
digitalking | 0 | 1,482,726,657 | 100% | ||
alexander.alexis | 0 | 55,272,903 | 0.1% | ||
markfitzgerald | 0 | 116,641,628 | 1% | ||
calinconst | 0 | 58,854,400 | 10% | ||
pps | 0 | 745,608,462 | 100% | ||
ausbitbot | 0 | 160,264,580 | 6% | ||
pilcrow | 0 | 23,481,491,122 | 50% | ||
nataliejohnson | 0 | 787,054,388 | 5% | ||
philogyny | 0 | 619,685,178 | 100% | ||
nesbitt | 0 | 81,490,752 | 1% | ||
semasping | 0 | 691,528,393 | 100% | ||
cheeto.blue | 0 | 5,301,019,182 | 20% | ||
juliakponsford | 0 | 24,239,659,932 | 32% | ||
auditoryorgasms | 0 | 1,357,793,310 | 100% | ||
ccmut | 0 | 6,394,370,360 | 100% | ||
coffeedrinker51 | 0 | 6,614,676,708 | 25% | ||
bluchr | 0 | 179,096,856 | 0.2% | ||
thinknzombie | 0 | 53,014,040,504 | 21.6% | ||
glex | 0 | 52,214,190 | 0.1% | ||
jorgebit | 0 | 4,093,850,308 | 100% | ||
massive-pop | 0 | 270,014,525 | 10% | ||
jeffrey24864 | 0 | 2,345,978,417 | 100% | ||
glitchout01 | 0 | 793,016,087 | 100% | ||
kerlund74 | 0 | 794,203,954 | 100% | ||
jpederson96 | 0 | 2,181,677,336 | 13% | ||
minnowbooster | 0 | 3,102,316,636,027 | 5% | ||
msp-lovebot | 0 | 35,985,750,513 | 15% | ||
msp-creativebot | 0 | 102,065,538,866 | 8% | ||
bigboysdream | 0 | 5,148,425,711 | 40% | ||
steembusiness | 0 | 810,855,689 | 2% | ||
upgoat | 0 | 669,829,736 | 5% | ||
resheep | 0 | 1,023,550,598 | 5% | ||
fishmon | 0 | 5,458,429,389 | 100% | ||
i53 | 0 | 0 | 100% | ||
thegoldenphoenix | 0 | 2,530,887,397 | 100% | ||
msp-shanehug | 0 | 26,136,844,087 | 20% | ||
ramzialhaddadtm | 0 | 671,959,840 | 100% | ||
beet | 0 | 1,618,192,307 | 5% | ||
techtek | 0 | 9,868,336,144 | 100% | ||
barber78 | 0 | 52,664,484 | 100% | ||
jjb777 | 0 | 1,862,446,697 | 100% | ||
dorabot | 0 | 1,283,656,695 | 100% | ||
chrisdavidphoto | 0 | 861,768,818 | 1% | ||
hmushtaq | 0 | 564,563,185 | 100% | ||
childcare | 0 | 1,292,834,755 | 100% | ||
mrsquiggle | 0 | 15,526,654,378 | 10% | ||
stsl | 0 | 2,531,077,699 | 4% | ||
mikepm74 | 0 | 49,121,235,846 | 50% | ||
ondetours | 0 | 252,389,164 | 40% | ||
corganmusic | 0 | 3,491,798,515 | 100% | ||
josefinemk | 0 | 407,204,525 | 100% | ||
paps | 0 | 290,106,226 | 100% | ||
unmentionable | 0 | 111,543,031,003 | 100% | ||
meshy | 0 | 998,135,678 | 100% | ||
hikaru09 | 0 | 377,202,336 | 100% | ||
msp-foundation | 0 | 1,765,999,992 | 100% | ||
mariafuen | 0 | 168,289,566 | 100% | ||
burtybasset | 0 | 1,177,575,421 | 100% | ||
micayla | 0 | 174,092,451 | 25% | ||
dannycrypto | 0 | 0 | 100% | ||
israelany | 0 | 0 | 100% | ||
mrbong | 0 | 0 | 100% | ||
darkhorrow | 0 | 0 | 100% |
Thanks for that information man it can help me a lot especially to the newbie @ danielsaori
author | agentzero |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t220419385z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-12 22:04:21 |
last_update | 2017-09-12 22:04:21 |
depth | 1 |
children | 1 |
last_payout | 2017-09-19 22:04:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 2,656,035,667,454 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,702,390 |
net_rshares | 17,952,530,260 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 17,952,530,260 | 14% |
Thanks to you for passing by! Are you part MSP and have you joined our Discord server?
author | danielsaori |
---|---|
permlink | re-agentzero-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170913t205005824z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-13 20:49:42 |
last_update | 2017-09-13 20:49:42 |
depth | 2 |
children | 0 |
last_payout | 2017-09-20 20:49: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 | 86 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,798,660 |
net_rshares | 0 |
Another useful feature for a newbie like me thanks @danielsaori for new introduction
author | aleahsan |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t152522736z |
category | bot |
json_metadata | {"tags":["bot"],"users":["danielsaori"],"app":"steemit/0.1"} |
created | 2017-09-12 15:25:27 |
last_update | 2017-09-12 15:25:27 |
depth | 1 |
children | 1 |
last_payout | 2017-09-19 15:25:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.048 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 143,458,509,724 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,670,106 |
net_rshares | 21,047,732,460 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 19,369,942,227 | 15% | ||
aleahsan | 0 | 627,432,811 | 100% | ||
junaidji | 0 | 1,050,357,422 | 100% |
Thank you @aleahsan! Are you part of MSP and did you try to "play" with @dorabot on Discord?
author | danielsaori |
---|---|
permlink | re-aleahsan-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t183551782z |
category | bot |
json_metadata | {"tags":["bot"],"users":["aleahsan","dorabot"],"app":"steemit/0.1"} |
created | 2017-09-12 18:35:48 |
last_update | 2017-09-12 18:56:48 |
depth | 2 |
children | 0 |
last_payout | 2017-09-19 18:35: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 | 92 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,687,578 |
net_rshares | 0 |
Awesome. I'm gonna have to give this a whirl. Just getting familiar with HTML/CSS, I'm sure I can figure out some Python. Resteemed!
author | burtybasset |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170913t015826823z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-13 01:58:27 |
last_update | 2017-09-13 01:58:27 |
depth | 1 |
children | 2 |
last_payout | 2017-09-20 01:58:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 135 |
author_reputation | 23,555,299,292 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,715,056 |
net_rshares | 17,952,530,260 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 17,952,530,260 | 14% | ||
burtybasset | 0 | 0 | 0% |
Thank you for the support! Let me know how you get along if you start building something.
author | danielsaori |
---|---|
permlink | re-burtybasset-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170913t204848222z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-13 20:48:27 |
last_update | 2017-09-13 20:48:27 |
depth | 2 |
children | 1 |
last_payout | 2017-09-20 20:48: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 | 89 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,798,553 |
net_rshares | 1,159,823,027 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
burtybasset | 0 | 1,159,823,027 | 100% |
Welcome. Will do, I have a few plans. Mwa ha ha (evil laugh! 😈)
author | burtybasset |
---|---|
permlink | re-danielsaori-re-burtybasset-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170913t224347542z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-13 22:43:48 |
last_update | 2017-09-13 22:43:48 |
depth | 3 |
children | 0 |
last_payout | 2017-09-20 22:43: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 | 72 |
author_reputation | 23,555,299,292 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,805,791 |
net_rshares | 0 |
Wow!! Great work!! I love Discord bots that can interact with Steemit 😃
author | cheeto.blue |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t152139842z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-12 15:21:39 |
last_update | 2017-09-12 15:21:39 |
depth | 1 |
children | 2 |
last_payout | 2017-09-19 15:21:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.455 HBD |
curator_payout_value | 0.816 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 10,255,622,430,914 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,669,730 |
net_rshares | 1,143,679,503,846 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 39,457,289,723 | 31% | ||
tatenda | 0 | 1,104,222,214,123 | 100% | ||
ghostkiller | 0 | 0 | 100% | ||
blackfox86 | 0 | 0 | 100% |
Great to have you here and thanks for your comment! In the future I might add ways to interact via comments as well. But at the moment I wanted to avoid causing Steemit spam :) so I decided to keep it a pure Discord interface.
author | danielsaori |
---|---|
permlink | re-cheetoblue-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t192640152z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-12 19:26:39 |
last_update | 2017-09-12 19:26:39 |
depth | 2 |
children | 1 |
last_payout | 2017-09-19 19:26: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 | 226 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,691,543 |
net_rshares | 0 |
Awesome! Looking forward to seeing what you can all add to this bot too 😎
author | cheeto.blue |
---|---|
permlink | re-danielsaori-re-cheetoblue-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t203026571z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-12 20:30:27 |
last_update | 2017-09-12 20:30:27 |
depth | 3 |
children | 0 |
last_payout | 2017-09-19 20:30: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 | 73 |
author_reputation | 10,255,622,430,914 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,696,284 |
net_rshares | 0 |
Great job! This is so much faster than searching every individual profile!
author | corganmusic |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t165512937z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-12 16:54:12 |
last_update | 2017-09-12 16:54:12 |
depth | 1 |
children | 2 |
last_payout | 2017-09-19 16:54:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.073 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 1,431,247,649,266 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,678,695 |
net_rshares | 34,251,917,188 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 31,565,831,778 | 25% | ||
corganmusic | 0 | 2,686,085,410 | 100% |
Thank you for dropping by. How is it going with your music? Any plans for more Open Mic contests?
author | danielsaori |
---|---|
permlink | re-corganmusic-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t191431569z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-12 19:14:27 |
last_update | 2017-09-12 19:14:27 |
depth | 2 |
children | 1 |
last_payout | 2017-09-19 19:14: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 | 97 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,690,525 |
net_rshares | 1,880,259,787 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
corganmusic | 0 | 1,880,259,787 | 100% |
Yep! [Just posted one today](https://steemit.com/openmic/@corganmusic/steemit-openmic-week-50-original-song-numbs-okay-ft-adam-schofield)!! I've got today off, so I'm going to try and get another song done... Any suggestions?
author | corganmusic |
---|---|
permlink | re-danielsaori-re-corganmusic-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t200841356z |
category | bot |
json_metadata | {"tags":["bot"],"links":["https://steemit.com/openmic/@corganmusic/steemit-openmic-week-50-original-song-numbs-okay-ft-adam-schofield"],"app":"steemit/0.1"} |
created | 2017-09-12 20:07:39 |
last_update | 2017-09-12 20:07:39 |
depth | 3 |
children | 0 |
last_payout | 2017-09-19 20:07: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 | 225 |
author_reputation | 1,431,247,649,266 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,694,691 |
net_rshares | 0 |
#spamcard
author | danielsaori |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170919t073830929z |
category | bot |
json_metadata | {"tags":["spamcard","bot"],"app":"steemit/0.1"} |
created | 2017-09-19 07:38:30 |
last_update | 2017-09-19 07:38:30 |
depth | 1 |
children | 1 |
last_payout | 2017-09-26 07:38:30 |
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 | 9 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,302,388 |
net_rshares | 0 |

author | fishmon |
---|---|
permlink | re-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170919t073830929z-20170919t073933 |
category | bot |
json_metadata | "" |
created | 2017-09-19 07:39:33 |
last_update | 2017-09-19 07:39:33 |
depth | 2 |
children | 0 |
last_payout | 2017-09-26 07:39: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 | 119 |
author_reputation | 4,373,835,902,560 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,302,460 |
net_rshares | 0 |
Very good job @danielsaori. I am glad that i had the chance to try it. The ?curate feature that allows to see the latest posts of selected users is very useful. Thanks for posting the code. Gongratulations and keep up the good work !
author | digitalking |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t184603459z |
category | bot |
json_metadata | {"tags":["bot"],"users":["danielsaori"],"app":"steemit/0.1"} |
created | 2017-09-10 18:46:06 |
last_update | 2017-09-10 18:46:06 |
depth | 1 |
children | 2 |
last_payout | 2017-09-17 18:46:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.251 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 234 |
author_reputation | 5,860,368,288,312 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,483,839 |
net_rshares | 102,409,855,766 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 101,145,453,921 | 81% | ||
dorabot | 0 | 1,264,401,845 | 100% |
Thank you for helping out with the testing. I will keep you posted on future developments. https://i.imgur.com/0xf54Nk.png
author | danielsaori |
---|---|
permlink | re-digitalking-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t190233229z |
category | bot |
json_metadata | {"tags":["bot"],"image":["https://i.imgur.com/0xf54Nk.png"],"app":"steemit/0.1"} |
created | 2017-09-10 19:02:21 |
last_update | 2017-09-10 19:02:21 |
depth | 2 |
children | 0 |
last_payout | 2017-09-17 19:02: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 | 122 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,485,118 |
net_rshares | 1,451,836,519 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
digitalking | 0 | 1,451,836,519 | 100% |
Thx! You made me a better bot!
author | dorabot |
---|---|
permlink | re-digitalking-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t185934948z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-10 18:59:24 |
last_update | 2017-09-10 18:59:24 |
depth | 2 |
children | 0 |
last_payout | 2017-09-17 18:59: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 | 30 |
author_reputation | 874,171,289,680 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,484,854 |
net_rshares | 1,482,726,657 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
digitalking | 0 | 1,482,726,657 | 100% |
I'm very pleased to run this code on my 4 cores... ;)
author | dorabot |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t185837207z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-10 18:58:27 |
last_update | 2017-09-10 18:58:27 |
depth | 1 |
children | 0 |
last_payout | 2017-09-17 18:58:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 874,171,289,680 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,484,783 |
net_rshares | 12,912,185,606 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 12,912,185,606 | 10% |
Wow... Nice post..I am glad to have been privileged to have tested @dorabot... Great work you have done @danielsaori... Keep up the good work bro... Steem on!!
author | dray91eu |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170915t114334263z |
category | bot |
json_metadata | {"tags":["bot"],"users":["dorabot","danielsaori"],"app":"steemit/0.1"} |
created | 2017-09-15 11:43:48 |
last_update | 2017-09-15 11:43:48 |
depth | 1 |
children | 1 |
last_payout | 2017-09-22 11:43:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 159 |
author_reputation | 10,280,384,358,136 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,958,726 |
net_rshares | 12,785,907,724 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 12,785,907,724 | 10% |
Thanks mate! See you around.
author | danielsaori |
---|---|
permlink | re-dray91eu-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170916t075713792z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-16 07:56:42 |
last_update | 2017-09-16 07:56:42 |
depth | 2 |
children | 0 |
last_payout | 2017-09-23 07:56: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 | 28 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,035,087 |
net_rshares | 0 |
Awesome man! I am also planning to built one such bot in the future. This post would be very helpful for me in achieving that goal :)! Followed and resteemed!
author | hmushtaq |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t151929129z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-12 15:19:30 |
last_update | 2017-09-12 15:20:36 |
depth | 1 |
children | 2 |
last_payout | 2017-09-19 15:19:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 158 |
author_reputation | 5,954,376,833,183 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,669,492 |
net_rshares | 19,369,942,227 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 19,369,942,227 | 15% |
That sounds great! Wish you all the best of luck. Which language are you thinking of using? Thank you for your support!
author | danielsaori |
---|---|
permlink | re-hmushtaq-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t191557236z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-12 19:15:54 |
last_update | 2017-09-12 19:15:54 |
depth | 2 |
children | 1 |
last_payout | 2017-09-19 19:15:54 |
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 | 119 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,690,649 |
net_rshares | 576,704,329 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hmushtaq | 0 | 576,704,329 | 100% |
Python of course :)
author | hmushtaq |
---|---|
permlink | re-danielsaori-re-hmushtaq-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t193146115z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-12 19:31:45 |
last_update | 2017-09-12 19:31:45 |
depth | 3 |
children | 0 |
last_payout | 2017-09-19 19:31: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 | 19 |
author_reputation | 5,954,376,833,183 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,691,950 |
net_rshares | 6,461,275,089 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 6,461,275,089 | 5% |
##### It was really cute!!! Ahahaha...
author | kennyroy |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t214941055z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-10 21:49:45 |
last_update | 2017-09-10 21:49:45 |
depth | 1 |
children | 2 |
last_payout | 2017-09-17 21:49:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 64,694,645,595,688 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,496,437 |
net_rshares | 18,652,536,960 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 18,652,536,960 | 15% |
Thx a million!! Hope you have a chance to check her out. This is what she created for you. :) https://steemitimages.com/DQmb12BJt1SQYhFYVYPUqHVFBEMJqkdFJxPsKJttCwxrxT9/image.png
author | danielsaori |
---|---|
permlink | re-kennyroy-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170911t163708573z |
category | bot |
json_metadata | {"tags":["bot"],"image":["https://steemitimages.com/DQmb12BJt1SQYhFYVYPUqHVFBEMJqkdFJxPsKJttCwxrxT9/image.png"],"app":"steemit/0.1"} |
created | 2017-09-11 16:37:09 |
last_update | 2017-09-11 16:37:09 |
depth | 2 |
children | 1 |
last_payout | 2017-09-18 16:37:09 |
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 | 177 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,572,632 |
net_rshares | 5,937,603,570 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kennyroy | 0 | 5,937,603,570 | 100% |
##### Wow!! Amazing!! This is really great... 😎♨😎
author | kennyroy |
---|---|
permlink | re-danielsaori-re-kennyroy-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170911t175103488z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-11 17:51:06 |
last_update | 2017-09-11 17:51:06 |
depth | 3 |
children | 0 |
last_payout | 2017-09-18 17:51:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 64,694,645,595,688 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,578,791 |
net_rshares | 18,652,536,960 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 18,652,536,960 | 15% |
This is really a great idea, but I hardly understand the technical parts... But I understand the use of this bot and I think that is excellent.
author | kerlund74 |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t200634912z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-10 20:06:36 |
last_update | 2017-09-10 20:06:36 |
depth | 1 |
children | 1 |
last_payout | 2017-09-17 20:06:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 143 |
author_reputation | 1,801,083,516,525 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,489,865 |
net_rshares | 19,368,278,410 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 19,368,278,410 | 16% |
Thank you! Happy to hear that @kerlund74! Hopefully she will come to good use. Please try out the ?rewhist command. Will give you graph of all your steemit rewards. 😀 Will feature that in the next post. God Natt!
author | danielsaori |
---|---|
permlink | re-kerlund74-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t211106129z |
category | bot |
json_metadata | {"tags":["bot"],"users":["kerlund74"],"app":"steemit/0.1"} |
created | 2017-09-10 21:11:06 |
last_update | 2017-09-10 21:11:06 |
depth | 2 |
children | 0 |
last_payout | 2017-09-17 21:11: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 | 212 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,493,925 |
net_rshares | 570,696,682 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kerlund74 | 0 | 570,696,682 | 100% |
Very help and I was wondering about this new bot I saw roaming in the channel. Welcome to the team. Glad to have you here help us all.
author | kubbyelizabeth |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t201921903z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-10 20:19:24 |
last_update | 2017-09-10 20:19:24 |
depth | 1 |
children | 1 |
last_payout | 2017-09-17 20:19:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 134 |
author_reputation | 37,451,356,924,198 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,490,659 |
net_rshares | 19,368,278,410 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 19,368,278,410 | 16% |
She is a bit shy ☺️ and was hiding in the corner for some time. But @dorabot tells me she is happy to be here. Thank you! 😘
author | danielsaori |
---|---|
permlink | re-kubbyelizabeth-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t211511778z |
category | bot |
json_metadata | {"tags":["bot"],"users":["dorabot"],"app":"steemit/0.1"} |
created | 2017-09-10 21:15:15 |
last_update | 2017-09-10 21:15:15 |
depth | 2 |
children | 0 |
last_payout | 2017-09-17 21:15:15 |
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 | 123 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,494,195 |
net_rshares | 2,484,224,627 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kubbyelizabeth | 0 | 2,484,224,627 | 100% |
This is great! Right on the money with the wanting to keep up with certain people more than others. I don't understand the code, but I can grasp the functionality! Thank you for all of your hard work and effort in putting dora together for us!!
author | mikepm74 |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t161214270z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-12 16:12:15 |
last_update | 2017-09-12 16:12:15 |
depth | 1 |
children | 1 |
last_payout | 2017-09-19 16:12:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.067 HBD |
curator_payout_value | 0.022 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 249 |
author_reputation | 50,476,601,169,361 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,674,764 |
net_rshares | 31,565,831,778 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 31,565,831,778 | 25% |
Thank you, Mike!! The important thing is to understand the functionality. Leave the code for @dorabot. ;) SteemOn!
author | danielsaori |
---|---|
permlink | re-mikepm74-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t193114771z |
category | bot |
json_metadata | {"tags":["bot"],"users":["dorabot"],"app":"steemit/0.1"} |
created | 2017-09-12 19:31:15 |
last_update | 2017-09-12 19:31:15 |
depth | 2 |
children | 0 |
last_payout | 2017-09-19 19:31:15 |
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 | 114 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,691,915 |
net_rshares | 0 |
 *@juliakponsford got you a $1.68 @minnowbooster upgoat, nice! (Image: pixabay.com)* --- [Want a boost? Click here to read more!](https://steemit.com/minnowbooster/@minnowbooster/6rt2mn-introducing-minnowbooster-beta)
author | minnowbooster |
---|---|
permlink | comment-1505291226784 |
category | bot |
json_metadata | "" |
created | 2017-09-13 08:27:06 |
last_update | 2017-09-13 08:27:06 |
depth | 1 |
children | 0 |
last_payout | 2017-09-20 08: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 | 374 |
author_reputation | 230,546,282,483,083 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,739,249 |
net_rshares | 0 |
 *@danielsaori got you a $8.0 @minnowbooster upgoat, nice! (Image: pixabay.com)* --- [Want a boost? Click here to read more!](https://steemit.com/minnowbooster/@minnowbooster/6rt2mn-introducing-minnowbooster-beta)
author | minnowbooster |
---|---|
permlink | comment-1505549412095 |
category | bot |
json_metadata | "" |
created | 2017-09-16 08:10:12 |
last_update | 2017-09-16 08:10:12 |
depth | 1 |
children | 0 |
last_payout | 2017-09-23 08:10:12 |
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 | 362 |
author_reputation | 230,546,282,483,083 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,035,795 |
net_rshares | 0 |
<p>Congratulations! This post has been upvoted from the communal account, @minnowsupport, by danielsaori from the Minnow Support Project. It's a witness project run by aggroed, ausbitbank, teamsteem, theprophet0, someguy123, neoxian, followbtcnews/crimsonclad, and netuoso. The goal is to help Steemit grow by supporting Minnows and creating a social network. Please find us in the <a href="https://discord.gg/HYj4yvw">Peace, Abundance, and Liberty Network (PALnet) Discord Channel</a>. It's a completely public and open space to all members of the Steemit community who voluntarily choose to be there.</p>
author | minnowsupport |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170911t160219319z |
category | bot |
json_metadata | {"tags":["bot"],"app":"cosgrove/0.0.1rc9"} |
created | 2017-09-11 16:02:18 |
last_update | 2017-09-11 16:02:18 |
depth | 1 |
children | 0 |
last_payout | 2017-09-18 16:02:18 |
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 | 612 |
author_reputation | 148,902,805,319,183 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,569,292 |
net_rshares | 0 |
This post has been resteemed by @minnowsupport courtesy of @juliakponsford from the Minnow Support Project ( @minnowsupport ). [Join us in Discord](https://discord.gg/tuJsjYk). Upvoting this comment will help support @minnowsupport.
author | minnowsupport | ||||||
---|---|---|---|---|---|---|---|
permlink | this-post-has-been-resteemed-from-msp3k-com-1505229279 | ||||||
category | bot | ||||||
json_metadata | {"tags":["minnowsupport","msp3k","minnowsupportproject","steemit","minnowsunite"],"app":"msp3k/1.0","format":"markdown+html","community":"minnowsupport"} | ||||||
created | 2017-09-12 15:14:39 | ||||||
last_update | 2017-09-12 15:14:39 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-19 15:14: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 | 233 | ||||||
author_reputation | 148,902,805,319,183 | ||||||
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 14,668,957 | ||||||
net_rshares | 0 |
This post received a 10% vote by @minnowsupport courtesy of @juliakponsford from the Minnow Support Project ( @minnowsupport ). [Join us in Discord](https://discord.gg/tuJsjYk). Upvoting this comment will help support @minnowsupport.
author | minnowsupport | ||||||
---|---|---|---|---|---|---|---|
permlink | this-post-received-an-upvote-from-msp3k-com-1505229211 | ||||||
category | bot | ||||||
json_metadata | {"tags":["minnowsupport","msp3k","minnowsupportproject","steemit","minnowsunite"],"app":"msp3k/1.0","format":"markdown+html","community":"minnowsupport"} | ||||||
created | 2017-09-12 15:13:30 | ||||||
last_update | 2017-09-12 15:13:30 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-19 15:13:30 | ||||||
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 | 234 | ||||||
author_reputation | 148,902,805,319,183 | ||||||
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 14,668,829 | ||||||
net_rshares | 0 |
This is amazing, gonna look into this more. upvoted and followed. Thank's @danielsaori.
author | mrbong |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20180301t030139972z |
category | bot |
json_metadata | {"tags":["bot"],"users":["danielsaori"],"app":"steemit/0.1"} |
created | 2018-03-01 03:01:39 |
last_update | 2018-03-01 03:01:39 |
depth | 1 |
children | 1 |
last_payout | 2018-03-08 03:01:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.023 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 70,733,488,986 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,273,036 |
net_rshares | 6,135,782,813 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 6,135,782,813 | 6% |
Please let me know if you have any questions.
author | danielsaori |
---|---|
permlink | re-mrbong-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20180301t210157906z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2018-03-01 21:01:57 |
last_update | 2018-03-01 21:01:57 |
depth | 2 |
children | 0 |
last_payout | 2018-03-08 21:01: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 | 45 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,472,181 |
net_rshares | 157,301,087 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mrbong | 0 | 157,301,087 | 100% |
This post has been resteemed by @msp-lovebot courtesy of @juliakponsford from the Minnow Support Project ( @minnowsupport ). [Join us in Discord](https://discord.gg/tuJsjYk). Upvoting this comment will help support @minnowsupport.
author | msp-lovebot | ||||||
---|---|---|---|---|---|---|---|
permlink | this-post-has-been-resteemed-from-msp3k-com-1505229254 | ||||||
category | bot | ||||||
json_metadata | {"tags":["minnowsupport","msp3k","minnowsupportproject","steemit","minnowsunite"],"app":"msp3k/1.0","format":"markdown+html","community":"minnowsupport"} | ||||||
created | 2017-09-12 15:14:15 | ||||||
last_update | 2017-09-12 15:14:15 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-19 15:14:15 | ||||||
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 | 365,118,307,242 | ||||||
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 14,668,907 | ||||||
net_rshares | 0 |
This post has been resteemed by @msp-nomad courtesy of @juliakponsford from the Minnow Support Project ( @minnowsupport ). [Join us in Discord](https://discord.gg/tuJsjYk). Upvoting this comment will help support @minnowsupport.
author | msp-nomad | ||||||
---|---|---|---|---|---|---|---|
permlink | this-post-has-been-resteemed-from-msp3k-com-1505229261 | ||||||
category | bot | ||||||
json_metadata | {"tags":["minnowsupport","msp3k","minnowsupportproject","steemit","minnowsunite"],"app":"msp3k/1.0","format":"markdown+html","community":"minnowsupport"} | ||||||
created | 2017-09-12 15:14:21 | ||||||
last_update | 2017-09-12 15:14:21 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-19 15:14: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 | 229 | ||||||
author_reputation | 9,973,533,168 | ||||||
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 14,668,923 | ||||||
net_rshares | 0 |
This post has been resteemed by @msp-shanehug courtesy of @juliakponsford from the Minnow Support Project ( @minnowsupport ). [Join us in Discord](https://discord.gg/tuJsjYk). Upvoting this comment will help support @minnowsupport.
author | msp-shanehug | ||||||
---|---|---|---|---|---|---|---|
permlink | this-post-has-been-resteemed-from-msp3k-com-1505229265 | ||||||
category | bot | ||||||
json_metadata | {"tags":["minnowsupport","msp3k","minnowsupportproject","steemit","minnowsunite"],"app":"msp3k/1.0","format":"markdown+html","community":"minnowsupport"} | ||||||
created | 2017-09-12 15:14:24 | ||||||
last_update | 2017-09-12 15:14:24 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-19 15:14: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 | 232 | ||||||
author_reputation | 296,025,250,544 | ||||||
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 14,668,934 | ||||||
net_rshares | 0 |
This post has been resteemed by @msp-waves courtesy of @juliakponsford from the Minnow Support Project ( @minnowsupport ). [Join us in Discord](https://discord.gg/tuJsjYk). Upvoting this comment will help support @minnowsupport.
author | msp-waves | ||||||
---|---|---|---|---|---|---|---|
permlink | this-post-has-been-resteemed-from-msp3k-com-1505229258 | ||||||
category | bot | ||||||
json_metadata | {"tags":["minnowsupport","msp3k","minnowsupportproject","steemit","minnowsunite"],"app":"msp3k/1.0","format":"markdown+html","community":"minnowsupport"} | ||||||
created | 2017-09-12 15:14:18 | ||||||
last_update | 2017-09-12 15:14:18 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-09-19 15:14:18 | ||||||
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 | 229 | ||||||
author_reputation | 73,212,220,799,572 | ||||||
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 14,668,920 | ||||||
net_rshares | 1,142,070,634 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
burtybasset | 0 | 1,142,070,634 | 100% |
Thanks for sharing and showing us the code behind the product, I hope this get the traction it deserves.
author | newsdesk |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t153318273z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-12 15:33:18 |
last_update | 2017-09-12 15:33:18 |
depth | 1 |
children | 1 |
last_payout | 2017-09-19 15:33:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.324 HBD |
curator_payout_value | 0.106 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 153,960,090,054 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,670,900 |
net_rshares | 150,512,104,107 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 129,850,353,453 | 100% | ||
newsdesk | 0 | 20,661,750,654 | 100% |
Thank you for your support buddy! And as I checked the comments I just noticed a massive upvote. Super excited!! :)
author | danielsaori |
---|---|
permlink | re-newsdesk-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t183426638z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-12 18:34:24 |
last_update | 2017-09-13 16:38:36 |
depth | 2 |
children | 0 |
last_payout | 2017-09-19 18:34: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 | 116 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,687,473 |
net_rshares | 0 |
Great service, I'm glad I read this post, regards @danielsaori
author | oscarps |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t183644603z |
category | bot |
json_metadata | {"tags":["bot"],"users":["danielsaori"],"app":"steemit/0.1"} |
created | 2017-09-10 18:36:45 |
last_update | 2017-09-10 18:36:45 |
depth | 1 |
children | 3 |
last_payout | 2017-09-17 18:36:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.049 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 430,777,015,489,433 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,483,057 |
net_rshares | 19,368,278,410 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 19,368,278,410 | 15% |
Thx! I hope she doesn't crash or runs into too many bugs... :)
author | danielsaori |
---|---|
permlink | re-oscarps-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t184833554z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-10 18:48:21 |
last_update | 2017-09-10 18:48:21 |
depth | 2 |
children | 2 |
last_payout | 2017-09-17 18:48: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 | 62 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,484,000 |
net_rshares | 0 |
Ok, I'll try not to stumble a lot, lol thanks and regards @danielsaori
author | oscarps |
---|---|
permlink | re-danielsaori-re-oscarps-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t185103969z |
category | bot |
json_metadata | {"tags":["bot"],"users":["danielsaori"],"app":"steemit/0.1"} |
created | 2017-09-10 18:51:03 |
last_update | 2017-09-10 18:51:03 |
depth | 3 |
children | 1 |
last_payout | 2017-09-17 18:51: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 | 70 |
author_reputation | 430,777,015,489,433 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,484,195 |
net_rshares | 6,456,092,803 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 6,456,092,803 | 5% |
Hi
author | saidbelfellah |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20171123t063127302z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-11-23 06:31:33 |
last_update | 2017-11-23 06:31:33 |
depth | 1 |
children | 1 |
last_payout | 2017-11-30 06:31: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 | 2 |
author_reputation | 38,189,884,569 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,268,737 |
net_rshares | 0 |
Hello
author | danielsaori |
---|---|
permlink | re-saidbelfellah-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20171123t161700371z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-11-23 16:17:03 |
last_update | 2017-11-23 16:17:03 |
depth | 2 |
children | 0 |
last_payout | 2017-11-30 16:17: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 | 5 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,312,293 |
net_rshares | 0 |
Looks really well done. Congrats! Might give it a try soon :)
author | silent.screamer |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t183621027z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-10 18:36:21 |
last_update | 2017-09-10 18:36:21 |
depth | 1 |
children | 1 |
last_payout | 2017-09-17 18:36:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.215 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 2,048,728,903,911 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,483,033 |
net_rshares | 78,748,308,865 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
silent.screamer | 0 | 59,380,030,455 | 100% | ||
danielsaori | 0 | 19,368,278,410 | 15% |
Thank you for passing by and for the nice comment!
author | danielsaori |
---|---|
permlink | re-silentscreamer-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t184653655z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-10 18:46:42 |
last_update | 2017-09-10 18:47:27 |
depth | 2 |
children | 0 |
last_payout | 2017-09-17 18:46: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 | 50 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,483,881 |
net_rshares | 0 |
sorry, but i can't connect to discord channel PAL... what't wrong? could you help me, please?
author | smartell |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20171203t192018109z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-12-03 19:20:18 |
last_update | 2017-12-03 19:20:18 |
depth | 1 |
children | 1 |
last_payout | 2017-12-10 19:20:18 |
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 | 93 |
author_reputation | 121,882,720,711,648 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 22,296,500 |
net_rshares | 0 |
Please connect here to the MSP-probation server and ask for help: https://discordapp.com/invite/Sx5RfvK
author | danielsaori |
---|---|
permlink | re-smartell-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20171204t230240660z |
category | bot |
json_metadata | {"tags":["bot"],"links":["https://discordapp.com/invite/Sx5RfvK"],"app":"steemit/0.1"} |
created | 2017-12-04 23:02:39 |
last_update | 2017-12-04 23:02:39 |
depth | 2 |
children | 0 |
last_payout | 2017-12-11 23:02: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 | 103 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 22,407,419 |
net_rshares | 0 |
You've received a FULL upvote from #TheUnmentionables - a SteemIt community full of members who like to kick ass, take names, and occasionally do it wearing (or forgetting to wear) our unmentionables... <center><h1>Click the Image to Join Our Discord Server:</h1></center> <center><a href="https://discord.gg/7kYYrw9"><img src="https://steemitimages.com/DQmTovGJdSiCENY18pGU7Wi5kd38HFvZEFDVWDWpdfdk9cS/DISE%C3%91Osmall.png" title="Example Image Link" width="1000" height="600" /></a></center> <center><h2>*Please upvote this comment so we can help our members grow faster!*</h2></center>
author | unmentionable |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170916t050226143z |
category | bot |
json_metadata | {"tags":["theunmentionables","bot"],"image":["https://steemitimages.com/DQmTovGJdSiCENY18pGU7Wi5kd38HFvZEFDVWDWpdfdk9cS/DISE%C3%91Osmall.png"],"links":["https://discord.gg/7kYYrw9"],"app":"steemit/0.1"} |
created | 2017-09-16 05:02:30 |
last_update | 2017-09-17 02:51:24 |
depth | 1 |
children | 1 |
last_payout | 2017-09-23 05:02:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.190 HBD |
curator_payout_value | 0.061 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 590 |
author_reputation | 3,952,475,400,411 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,025,869 |
net_rshares | 93,767,710,295 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 12,785,907,724 | 10% | ||
holbein81 | 0 | 80,981,802,571 | 51% | ||
ghostkiller | 0 | 0 | 100% |
Awesome! Thanks @fatpandadesign & @unmentionable
author | danielsaori |
---|---|
permlink | re-unmentionable-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170916t080718122z |
category | bot |
json_metadata | {"tags":["bot"],"users":["fatpandadesign","unmentionable"],"app":"steemit/0.1"} |
created | 2017-09-16 08:06:48 |
last_update | 2017-09-16 08:06:48 |
depth | 2 |
children | 0 |
last_payout | 2017-09-23 08:06: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 | 48 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,035,613 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ghostkiller | 0 | 0 | 100% |
This is a wonderful idea and we really need a way to be able to separate resteems from blog posts. I love the graphic, too!
author | wandrnrose7 |
---|---|
permlink | re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170913t023747383z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-13 02:37:48 |
last_update | 2017-09-13 02:37:48 |
depth | 1 |
children | 1 |
last_payout | 2017-09-20 02:37:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.043 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 123 |
author_reputation | 79,658,173,920,768 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,717,326 |
net_rshares | 20,104,883,652 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danielsaori | 0 | 20,104,883,652 | 16% |
Yes, this way it is easy to get an overview of important users you are following. I will modify it a bit later so it will highlight all posts already upvoted. Thank you for the comment!
author | danielsaori |
---|---|
permlink | re-wandrnrose7-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170913t164357699z |
category | bot |
json_metadata | {"tags":["bot"],"app":"steemit/0.1"} |
created | 2017-09-13 16:43:57 |
last_update | 2017-09-13 16:43:57 |
depth | 2 |
children | 0 |
last_payout | 2017-09-20 16:43: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 | 185 |
author_reputation | 19,949,800,673,455 |
root_title | "Steemit & Discord bot - Built on Steem-Python and discord.py" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,778,772 |
net_rshares | 0 |