create account

Steemit & Discord bot - Built on Steem-Python and discord.py by danielsaori

View this thread on: hive.blogpeakd.comecency.com
· @danielsaori ·
$46.26
Steemit & Discord bot - Built on Steem-Python and discord.py
<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> &amp; <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>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 69 others
properties (23)
authordanielsaori
permlinksteemit-and-discord-bot-built-on-steem-python-and-discord-py
categorybot
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"}
created2017-09-10 18:32:24
last_update2017-09-10 18:32:24
depth0
children60
last_payout2017-09-17 18:32:24
cashout_time1969-12-31 23:59:59
total_payout_value36.439 HBD
curator_payout_value9.825 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,444
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,482,704
net_rshares16,574,265,914,264
author_curate_reward""
vote details (133)
@agentzero ·
$0.05
Thanks for that information man it can help me a lot especially to the newbie @ danielsaori
👍  
properties (23)
authoragentzero
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t220419385z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-12 22:04:21
last_update2017-09-12 22:04:21
depth1
children1
last_payout2017-09-19 22:04:21
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation2,656,035,667,454
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,702,390
net_rshares17,952,530,260
author_curate_reward""
vote details (1)
@danielsaori ·
Thanks to you for passing by!
Are you part MSP and have you joined our Discord server?
properties (22)
authordanielsaori
permlinkre-agentzero-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170913t205005824z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-13 20:49:42
last_update2017-09-13 20:49:42
depth2
children0
last_payout2017-09-20 20:49:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,798,660
net_rshares0
@aleahsan ·
$0.06
Another useful feature for a newbie like me thanks @danielsaori for new introduction
👍  , ,
properties (23)
authoraleahsan
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t152522736z
categorybot
json_metadata{"tags":["bot"],"users":["danielsaori"],"app":"steemit/0.1"}
created2017-09-12 15:25:27
last_update2017-09-12 15:25:27
depth1
children1
last_payout2017-09-19 15:25:27
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation143,458,509,724
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,670,106
net_rshares21,047,732,460
author_curate_reward""
vote details (3)
@danielsaori · (edited)
Thank you @aleahsan! Are you part of MSP and did you try to "play" with @dorabot on Discord?
properties (22)
authordanielsaori
permlinkre-aleahsan-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t183551782z
categorybot
json_metadata{"tags":["bot"],"users":["aleahsan","dorabot"],"app":"steemit/0.1"}
created2017-09-12 18:35:48
last_update2017-09-12 18:56:48
depth2
children0
last_payout2017-09-19 18:35:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,687,578
net_rshares0
@burtybasset ·
$0.05
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!
👍  ,
properties (23)
authorburtybasset
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170913t015826823z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-13 01:58:27
last_update2017-09-13 01:58:27
depth1
children2
last_payout2017-09-20 01:58:27
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation23,555,299,292
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,715,056
net_rshares17,952,530,260
author_curate_reward""
vote details (2)
@danielsaori ·
Thank you for the support!
Let me know how you get along if you start building something.
👍  
properties (23)
authordanielsaori
permlinkre-burtybasset-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170913t204848222z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-13 20:48:27
last_update2017-09-13 20:48:27
depth2
children1
last_payout2017-09-20 20:48:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,798,553
net_rshares1,159,823,027
author_curate_reward""
vote details (1)
@burtybasset ·
Welcome.

Will do, I have a few plans. Mwa ha ha (evil laugh! &#128520;)
properties (22)
authorburtybasset
permlinkre-danielsaori-re-burtybasset-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170913t224347542z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-13 22:43:48
last_update2017-09-13 22:43:48
depth3
children0
last_payout2017-09-20 22:43:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation23,555,299,292
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,805,791
net_rshares0
@cheeto.blue ·
$3.27
Wow!! Great work!! I love Discord bots that can interact with Steemit 😃
👍  , , ,
properties (23)
authorcheeto.blue
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t152139842z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-12 15:21:39
last_update2017-09-12 15:21:39
depth1
children2
last_payout2017-09-19 15:21:39
cashout_time1969-12-31 23:59:59
total_payout_value2.455 HBD
curator_payout_value0.816 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation10,255,622,430,914
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,669,730
net_rshares1,143,679,503,846
author_curate_reward""
vote details (4)
@danielsaori ·
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.
properties (22)
authordanielsaori
permlinkre-cheetoblue-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t192640152z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-12 19:26:39
last_update2017-09-12 19:26:39
depth2
children1
last_payout2017-09-19 19:26:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length226
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,691,543
net_rshares0
@cheeto.blue ·
Awesome! Looking forward to seeing what you can all add to this bot too 😎
properties (22)
authorcheeto.blue
permlinkre-danielsaori-re-cheetoblue-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t203026571z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-12 20:30:27
last_update2017-09-12 20:30:27
depth3
children0
last_payout2017-09-19 20:30:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation10,255,622,430,914
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,696,284
net_rshares0
@corganmusic ·
$0.10
Great job! This is so much faster than searching every individual profile!
👍  ,
properties (23)
authorcorganmusic
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t165512937z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-12 16:54:12
last_update2017-09-12 16:54:12
depth1
children2
last_payout2017-09-19 16:54:12
cashout_time1969-12-31 23:59:59
total_payout_value0.073 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation1,431,247,649,266
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,678,695
net_rshares34,251,917,188
author_curate_reward""
vote details (2)
@danielsaori ·
Thank you for dropping by.
How is it going with your music? Any plans for more Open Mic contests?
👍  
properties (23)
authordanielsaori
permlinkre-corganmusic-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t191431569z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-12 19:14:27
last_update2017-09-12 19:14:27
depth2
children1
last_payout2017-09-19 19:14:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,690,525
net_rshares1,880,259,787
author_curate_reward""
vote details (1)
@corganmusic ·
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?
properties (22)
authorcorganmusic
permlinkre-danielsaori-re-corganmusic-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t200841356z
categorybot
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"}
created2017-09-12 20:07:39
last_update2017-09-12 20:07:39
depth3
children0
last_payout2017-09-19 20:07:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation1,431,247,649,266
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,694,691
net_rshares0
@danielsaori ·
#spamcard
properties (22)
authordanielsaori
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170919t073830929z
categorybot
json_metadata{"tags":["spamcard","bot"],"app":"steemit/0.1"}
created2017-09-19 07:38:30
last_update2017-09-19 07:38:30
depth1
children1
last_payout2017-09-26 07:38:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,302,388
net_rshares0
@fishmon ·
![stemit cards 5.png](https://steemitimages.com/DQmPhsX1EZRWMKkjE8aX8RuUZjYxPJ2WeAHV9tJqYtQnid9/stemit%20cards%205.png)
properties (22)
authorfishmon
permlinkre-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170919t073830929z-20170919t073933
categorybot
json_metadata""
created2017-09-19 07:39:33
last_update2017-09-19 07:39:33
depth2
children0
last_payout2017-09-26 07:39:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation4,373,835,902,560
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,302,460
net_rshares0
@digitalking ·
$0.28
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 !
👍  ,
properties (23)
authordigitalking
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t184603459z
categorybot
json_metadata{"tags":["bot"],"users":["danielsaori"],"app":"steemit/0.1"}
created2017-09-10 18:46:06
last_update2017-09-10 18:46:06
depth1
children2
last_payout2017-09-17 18:46:06
cashout_time1969-12-31 23:59:59
total_payout_value0.251 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length234
author_reputation5,860,368,288,312
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,483,839
net_rshares102,409,855,766
author_curate_reward""
vote details (2)
@danielsaori ·
Thank you for helping out with the testing. I will keep you posted on future developments.
https://i.imgur.com/0xf54Nk.png
👍  
properties (23)
authordanielsaori
permlinkre-digitalking-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t190233229z
categorybot
json_metadata{"tags":["bot"],"image":["https://i.imgur.com/0xf54Nk.png"],"app":"steemit/0.1"}
created2017-09-10 19:02:21
last_update2017-09-10 19:02:21
depth2
children0
last_payout2017-09-17 19:02:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,485,118
net_rshares1,451,836,519
author_curate_reward""
vote details (1)
@dorabot ·
Thx! You made me a better bot!
👍  
properties (23)
authordorabot
permlinkre-digitalking-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t185934948z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-10 18:59:24
last_update2017-09-10 18:59:24
depth2
children0
last_payout2017-09-17 18:59:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation874,171,289,680
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,484,854
net_rshares1,482,726,657
author_curate_reward""
vote details (1)
@dorabot ·
$0.03
I'm very pleased to run this code on my 4 cores... ;)
👍  
properties (23)
authordorabot
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t185837207z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-10 18:58:27
last_update2017-09-10 18:58:27
depth1
children0
last_payout2017-09-17 18:58:27
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation874,171,289,680
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,484,783
net_rshares12,912,185,606
author_curate_reward""
vote details (1)
@dray91eu ·
$0.03
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!!
👍  
properties (23)
authordray91eu
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170915t114334263z
categorybot
json_metadata{"tags":["bot"],"users":["dorabot","danielsaori"],"app":"steemit/0.1"}
created2017-09-15 11:43:48
last_update2017-09-15 11:43:48
depth1
children1
last_payout2017-09-22 11:43:48
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length159
author_reputation10,280,384,358,136
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,958,726
net_rshares12,785,907,724
author_curate_reward""
vote details (1)
@danielsaori ·
Thanks mate! See you around.
properties (22)
authordanielsaori
permlinkre-dray91eu-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170916t075713792z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-16 07:56:42
last_update2017-09-16 07:56:42
depth2
children0
last_payout2017-09-23 07:56:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,035,087
net_rshares0
@hmushtaq · (edited)
$0.05
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!
👍  
properties (23)
authorhmushtaq
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t151929129z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-12 15:19:30
last_update2017-09-12 15:20:36
depth1
children2
last_payout2017-09-19 15:19:30
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length158
author_reputation5,954,376,833,183
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,669,492
net_rshares19,369,942,227
author_curate_reward""
vote details (1)
@danielsaori ·
That sounds great! Wish you all the best of luck. Which language are you thinking of using?
Thank you for your support!
👍  
properties (23)
authordanielsaori
permlinkre-hmushtaq-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t191557236z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-12 19:15:54
last_update2017-09-12 19:15:54
depth2
children1
last_payout2017-09-19 19:15:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,690,649
net_rshares576,704,329
author_curate_reward""
vote details (1)
@hmushtaq ·
Python of course :)
👍  
properties (23)
authorhmushtaq
permlinkre-danielsaori-re-hmushtaq-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t193146115z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-12 19:31:45
last_update2017-09-12 19:31:45
depth3
children0
last_payout2017-09-19 19:31:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation5,954,376,833,183
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,691,950
net_rshares6,461,275,089
author_curate_reward""
vote details (1)
@kennyroy ·
$0.05
##### It was really cute!!! Ahahaha...
👍  
properties (23)
authorkennyroy
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t214941055z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-10 21:49:45
last_update2017-09-10 21:49:45
depth1
children2
last_payout2017-09-17 21:49:45
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation64,694,645,595,688
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,496,437
net_rshares18,652,536,960
author_curate_reward""
vote details (1)
@danielsaori ·
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
👍  
properties (23)
authordanielsaori
permlinkre-kennyroy-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170911t163708573z
categorybot
json_metadata{"tags":["bot"],"image":["https://steemitimages.com/DQmb12BJt1SQYhFYVYPUqHVFBEMJqkdFJxPsKJttCwxrxT9/image.png"],"app":"steemit/0.1"}
created2017-09-11 16:37:09
last_update2017-09-11 16:37:09
depth2
children1
last_payout2017-09-18 16:37:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,572,632
net_rshares5,937,603,570
author_curate_reward""
vote details (1)
@kennyroy ·
$0.05
##### Wow!! Amazing!! This is really great... 😎♨😎
👍  
properties (23)
authorkennyroy
permlinkre-danielsaori-re-kennyroy-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170911t175103488z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-11 17:51:06
last_update2017-09-11 17:51:06
depth3
children0
last_payout2017-09-18 17:51:06
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation64,694,645,595,688
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,578,791
net_rshares18,652,536,960
author_curate_reward""
vote details (1)
@kerlund74 ·
$0.05
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.
👍  
properties (23)
authorkerlund74
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t200634912z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-10 20:06:36
last_update2017-09-10 20:06:36
depth1
children1
last_payout2017-09-17 20:06:36
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length143
author_reputation1,801,083,516,525
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,489,865
net_rshares19,368,278,410
author_curate_reward""
vote details (1)
@danielsaori ·
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!
👍  
properties (23)
authordanielsaori
permlinkre-kerlund74-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t211106129z
categorybot
json_metadata{"tags":["bot"],"users":["kerlund74"],"app":"steemit/0.1"}
created2017-09-10 21:11:06
last_update2017-09-10 21:11:06
depth2
children0
last_payout2017-09-17 21:11:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length212
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,493,925
net_rshares570,696,682
author_curate_reward""
vote details (1)
@kubbyelizabeth ·
$0.05
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.
👍  
properties (23)
authorkubbyelizabeth
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t201921903z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-10 20:19:24
last_update2017-09-10 20:19:24
depth1
children1
last_payout2017-09-17 20:19:24
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation37,451,356,924,198
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,490,659
net_rshares19,368,278,410
author_curate_reward""
vote details (1)
@danielsaori ·
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! 😘
👍  
properties (23)
authordanielsaori
permlinkre-kubbyelizabeth-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t211511778z
categorybot
json_metadata{"tags":["bot"],"users":["dorabot"],"app":"steemit/0.1"}
created2017-09-10 21:15:15
last_update2017-09-10 21:15:15
depth2
children0
last_payout2017-09-17 21:15:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,494,195
net_rshares2,484,224,627
author_curate_reward""
vote details (1)
@mikepm74 ·
$0.09
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!!
👍  
properties (23)
authormikepm74
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t161214270z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-12 16:12:15
last_update2017-09-12 16:12:15
depth1
children1
last_payout2017-09-19 16:12:15
cashout_time1969-12-31 23:59:59
total_payout_value0.067 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length249
author_reputation50,476,601,169,361
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,674,764
net_rshares31,565,831,778
author_curate_reward""
vote details (1)
@danielsaori ·
Thank you, Mike!!
The important thing is to understand the functionality. Leave the code for @dorabot. ;)
SteemOn!
properties (22)
authordanielsaori
permlinkre-mikepm74-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t193114771z
categorybot
json_metadata{"tags":["bot"],"users":["dorabot"],"app":"steemit/0.1"}
created2017-09-12 19:31:15
last_update2017-09-12 19:31:15
depth2
children0
last_payout2017-09-19 19:31:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,691,915
net_rshares0
@minnowbooster ·
@minnowbooster upvoted this post!
![@juliakponsford got you a $1.68 @minnowbooster upgoat, nice!](http://minnowshares.net/upgoat/?user=juliakponsford&receiver=danielsaori&value=1.68&hash=471)
*@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)
properties (22)
authorminnowbooster
permlinkcomment-1505291226784
categorybot
json_metadata""
created2017-09-13 08:27:06
last_update2017-09-13 08:27:06
depth1
children0
last_payout2017-09-20 08:27:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length374
author_reputation230,546,282,483,083
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,739,249
net_rshares0
@minnowbooster ·
@minnowbooster upvoted this post!
![@danielsaori got you a $8.0 @minnowbooster upgoat, nice!](http://minnowshares.net/upgoat/?user=danielsaori&receiver=danielsaori&value=8.0&hash=845)
*@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)
properties (22)
authorminnowbooster
permlinkcomment-1505549412095
categorybot
json_metadata""
created2017-09-16 08:10:12
last_update2017-09-16 08:10:12
depth1
children0
last_payout2017-09-23 08:10:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length362
author_reputation230,546,282,483,083
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,035,795
net_rshares0
@minnowsupport ·
<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>
properties (22)
authorminnowsupport
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170911t160219319z
categorybot
json_metadata{"tags":["bot"],"app":"cosgrove/0.0.1rc9"}
created2017-09-11 16:02:18
last_update2017-09-11 16:02:18
depth1
children0
last_payout2017-09-18 16:02:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length612
author_reputation148,902,805,319,183
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,569,292
net_rshares0
@minnowsupport ·
This post has been resteemed from MSP3k.com
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.
properties (22)
authorminnowsupport
permlinkthis-post-has-been-resteemed-from-msp3k-com-1505229279
categorybot
json_metadata{"tags":["minnowsupport","msp3k","minnowsupportproject","steemit","minnowsunite"],"app":"msp3k/1.0","format":"markdown+html","community":"minnowsupport"}
created2017-09-12 15:14:39
last_update2017-09-12 15:14:39
depth1
children0
last_payout2017-09-19 15:14:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length233
author_reputation148,902,805,319,183
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries
0.
accountmsp3k
weight5,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,668,957
net_rshares0
@minnowsupport ·
This post received an upvote from MSP3k.com
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.
properties (22)
authorminnowsupport
permlinkthis-post-received-an-upvote-from-msp3k-com-1505229211
categorybot
json_metadata{"tags":["minnowsupport","msp3k","minnowsupportproject","steemit","minnowsunite"],"app":"msp3k/1.0","format":"markdown+html","community":"minnowsupport"}
created2017-09-12 15:13:30
last_update2017-09-12 15:13:30
depth1
children0
last_payout2017-09-19 15:13:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length234
author_reputation148,902,805,319,183
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries
0.
accountmsp3k
weight5,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,668,829
net_rshares0
@mrbong ·
$0.03
This is amazing, gonna look into this more. upvoted and followed.
Thank's @danielsaori.
👍  
properties (23)
authormrbong
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20180301t030139972z
categorybot
json_metadata{"tags":["bot"],"users":["danielsaori"],"app":"steemit/0.1"}
created2018-03-01 03:01:39
last_update2018-03-01 03:01:39
depth1
children1
last_payout2018-03-08 03:01:39
cashout_time1969-12-31 23:59:59
total_payout_value0.023 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation70,733,488,986
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,273,036
net_rshares6,135,782,813
author_curate_reward""
vote details (1)
@danielsaori ·
Please let me know if you have any questions.
👍  
properties (23)
authordanielsaori
permlinkre-mrbong-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20180301t210157906z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2018-03-01 21:01:57
last_update2018-03-01 21:01:57
depth2
children0
last_payout2018-03-08 21:01:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,472,181
net_rshares157,301,087
author_curate_reward""
vote details (1)
@msp-lovebot ·
This post has been resteemed from MSP3k.com
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.
properties (22)
authormsp-lovebot
permlinkthis-post-has-been-resteemed-from-msp3k-com-1505229254
categorybot
json_metadata{"tags":["minnowsupport","msp3k","minnowsupportproject","steemit","minnowsunite"],"app":"msp3k/1.0","format":"markdown+html","community":"minnowsupport"}
created2017-09-12 15:14:15
last_update2017-09-12 15:14:15
depth1
children0
last_payout2017-09-19 15:14:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length231
author_reputation365,118,307,242
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries
0.
accountmsp3k
weight5,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,668,907
net_rshares0
@msp-nomad ·
This post has been resteemed from MSP3k.com
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.
properties (22)
authormsp-nomad
permlinkthis-post-has-been-resteemed-from-msp3k-com-1505229261
categorybot
json_metadata{"tags":["minnowsupport","msp3k","minnowsupportproject","steemit","minnowsunite"],"app":"msp3k/1.0","format":"markdown+html","community":"minnowsupport"}
created2017-09-12 15:14:21
last_update2017-09-12 15:14:21
depth1
children0
last_payout2017-09-19 15:14:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length229
author_reputation9,973,533,168
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries
0.
accountmsp3k
weight5,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,668,923
net_rshares0
@msp-shanehug ·
This post has been resteemed from MSP3k.com
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.
properties (22)
authormsp-shanehug
permlinkthis-post-has-been-resteemed-from-msp3k-com-1505229265
categorybot
json_metadata{"tags":["minnowsupport","msp3k","minnowsupportproject","steemit","minnowsunite"],"app":"msp3k/1.0","format":"markdown+html","community":"minnowsupport"}
created2017-09-12 15:14:24
last_update2017-09-12 15:14:24
depth1
children0
last_payout2017-09-19 15:14:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length232
author_reputation296,025,250,544
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries
0.
accountmsp3k
weight5,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,668,934
net_rshares0
@msp-waves ·
This post has been resteemed from MSP3k.com
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.
👍  
properties (23)
authormsp-waves
permlinkthis-post-has-been-resteemed-from-msp3k-com-1505229258
categorybot
json_metadata{"tags":["minnowsupport","msp3k","minnowsupportproject","steemit","minnowsunite"],"app":"msp3k/1.0","format":"markdown+html","community":"minnowsupport"}
created2017-09-12 15:14:18
last_update2017-09-12 15:14:18
depth1
children0
last_payout2017-09-19 15:14:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length229
author_reputation73,212,220,799,572
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries
0.
accountmsp3k
weight5,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,668,920
net_rshares1,142,070,634
author_curate_reward""
vote details (1)
@newsdesk ·
$0.43
Thanks for sharing and showing us the code behind the product, I hope this get the traction it deserves.
👍  ,
properties (23)
authornewsdesk
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t153318273z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-12 15:33:18
last_update2017-09-12 15:33:18
depth1
children1
last_payout2017-09-19 15:33:18
cashout_time1969-12-31 23:59:59
total_payout_value0.324 HBD
curator_payout_value0.106 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation153,960,090,054
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,670,900
net_rshares150,512,104,107
author_curate_reward""
vote details (2)
@danielsaori · (edited)
Thank you for your support buddy! 
And as I checked the comments I just noticed a massive upvote.
Super excited!! :)
properties (22)
authordanielsaori
permlinkre-newsdesk-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170912t183426638z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-12 18:34:24
last_update2017-09-13 16:38:36
depth2
children0
last_payout2017-09-19 18:34:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,687,473
net_rshares0
@oscarps ·
$0.05
Great service, I'm glad I read this post, regards  @danielsaori
👍  
properties (23)
authoroscarps
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t183644603z
categorybot
json_metadata{"tags":["bot"],"users":["danielsaori"],"app":"steemit/0.1"}
created2017-09-10 18:36:45
last_update2017-09-10 18:36:45
depth1
children3
last_payout2017-09-17 18:36:45
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation430,777,015,489,433
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,483,057
net_rshares19,368,278,410
author_curate_reward""
vote details (1)
@danielsaori ·
Thx! I hope she doesn't crash or runs into too many bugs... :)
properties (22)
authordanielsaori
permlinkre-oscarps-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t184833554z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-10 18:48:21
last_update2017-09-10 18:48:21
depth2
children2
last_payout2017-09-17 18:48:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,484,000
net_rshares0
@oscarps ·
Ok, I'll try not to stumble a lot, lol thanks and regards @danielsaori
👍  
properties (23)
authoroscarps
permlinkre-danielsaori-re-oscarps-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t185103969z
categorybot
json_metadata{"tags":["bot"],"users":["danielsaori"],"app":"steemit/0.1"}
created2017-09-10 18:51:03
last_update2017-09-10 18:51:03
depth3
children1
last_payout2017-09-17 18:51:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation430,777,015,489,433
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,484,195
net_rshares6,456,092,803
author_curate_reward""
vote details (1)
@saidbelfellah ·
Hi
properties (22)
authorsaidbelfellah
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20171123t063127302z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-11-23 06:31:33
last_update2017-11-23 06:31:33
depth1
children1
last_payout2017-11-30 06:31:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2
author_reputation38,189,884,569
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,268,737
net_rshares0
@danielsaori ·
Hello
properties (22)
authordanielsaori
permlinkre-saidbelfellah-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20171123t161700371z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-11-23 16:17:03
last_update2017-11-23 16:17:03
depth2
children0
last_payout2017-11-30 16:17:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,312,293
net_rshares0
@silent.screamer ·
$0.22
Looks really well done. Congrats!
Might give it a try soon :)
👍  ,
properties (23)
authorsilent.screamer
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t183621027z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-10 18:36:21
last_update2017-09-10 18:36:21
depth1
children1
last_payout2017-09-17 18:36:21
cashout_time1969-12-31 23:59:59
total_payout_value0.215 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation2,048,728,903,911
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,483,033
net_rshares78,748,308,865
author_curate_reward""
vote details (2)
@danielsaori · (edited)
Thank you for passing by and for the nice comment!
properties (22)
authordanielsaori
permlinkre-silentscreamer-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170910t184653655z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-10 18:46:42
last_update2017-09-10 18:47:27
depth2
children0
last_payout2017-09-17 18:46:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,483,881
net_rshares0
@smartell ·
sorry, but i can't connect to discord channel PAL... what't wrong? could you help me, please?
properties (22)
authorsmartell
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20171203t192018109z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-12-03 19:20:18
last_update2017-12-03 19:20:18
depth1
children1
last_payout2017-12-10 19:20:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation121,882,720,711,648
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,296,500
net_rshares0
@danielsaori ·
Please connect here to the MSP-probation server and ask for help: https://discordapp.com/invite/Sx5RfvK
properties (22)
authordanielsaori
permlinkre-smartell-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20171204t230240660z
categorybot
json_metadata{"tags":["bot"],"links":["https://discordapp.com/invite/Sx5RfvK"],"app":"steemit/0.1"}
created2017-12-04 23:02:39
last_update2017-12-04 23:02:39
depth2
children0
last_payout2017-12-11 23:02:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,407,419
net_rshares0
@unmentionable · (edited)
$0.25
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>
👍  , ,
properties (23)
authorunmentionable
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170916t050226143z
categorybot
json_metadata{"tags":["theunmentionables","bot"],"image":["https://steemitimages.com/DQmTovGJdSiCENY18pGU7Wi5kd38HFvZEFDVWDWpdfdk9cS/DISE%C3%91Osmall.png"],"links":["https://discord.gg/7kYYrw9"],"app":"steemit/0.1"}
created2017-09-16 05:02:30
last_update2017-09-17 02:51:24
depth1
children1
last_payout2017-09-23 05:02:30
cashout_time1969-12-31 23:59:59
total_payout_value0.190 HBD
curator_payout_value0.061 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length590
author_reputation3,952,475,400,411
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,025,869
net_rshares93,767,710,295
author_curate_reward""
vote details (3)
@danielsaori ·
Awesome! Thanks @fatpandadesign & @unmentionable
👍  
properties (23)
authordanielsaori
permlinkre-unmentionable-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170916t080718122z
categorybot
json_metadata{"tags":["bot"],"users":["fatpandadesign","unmentionable"],"app":"steemit/0.1"}
created2017-09-16 08:06:48
last_update2017-09-16 08:06:48
depth2
children0
last_payout2017-09-23 08:06:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,035,613
net_rshares0
author_curate_reward""
vote details (1)
@wandrnrose7 ·
$0.06
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!
👍  
properties (23)
authorwandrnrose7
permlinkre-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170913t023747383z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-13 02:37:48
last_update2017-09-13 02:37:48
depth1
children1
last_payout2017-09-20 02:37:48
cashout_time1969-12-31 23:59:59
total_payout_value0.043 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation79,658,173,920,768
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,717,326
net_rshares20,104,883,652
author_curate_reward""
vote details (1)
@danielsaori ·
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!
properties (22)
authordanielsaori
permlinkre-wandrnrose7-re-danielsaori-steemit-and-discord-bot-built-on-steem-python-and-discord-py-20170913t164357699z
categorybot
json_metadata{"tags":["bot"],"app":"steemit/0.1"}
created2017-09-13 16:43:57
last_update2017-09-13 16:43:57
depth2
children0
last_payout2017-09-20 16:43:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation19,949,800,673,455
root_title"Steemit & Discord bot - Built on Steem-Python and discord.py"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,778,772
net_rshares0