create account

24 Hour Summary CryptoBot(Python) Update#2 - Code Included by benniebanana

View this thread on: hive.blogpeakd.comecency.com
· @benniebanana · (edited)
$158.31
24 Hour Summary CryptoBot(Python) Update#2 - Code Included
<center><h1>24 Hour Summary CryptoBot</h1></center>

https://ak2.picdn.net/shutterstock/videos/8335423/thumb/1.jpg

Please note that I originally posted this in #bitcoin and now I'm posting this is #steemdev after someone recommended it. I hope it gets more attention in this category. 

Recently I created a bot which allowed you to comment on my post with the name of a listed cryptocurrency, the bot would then retrieve a 24 hour summary on the commented cryptocurrency in real time from Bittrex using the Bittrex API. All markets are Bitcoin markets. The bot had a few issues which prevented the bot from retrieving the summaries.


<h1>Issues Fixed</h1>

1. Added in case insensitive dictionary search for the currencies because the previous bot could only retrieve currencies that were typed in the correct case. The bot could not retrieve, for example, a summary of Ethereum if Ethereum was spelled "ethereum"(lower case 'E'). 

2. Added in the Bitcoin currency symbol. 

<h1>Coin List</h1>

![coins.png](https://steemitimages.com/DQmYU4cTutXA3cPrsm9LcZQsfSmhWrkdUxxvoixbAF9J1AT/coins.png)

Any of the coins in the above list can be commented on this post in any case eg . "steem"

<h1>Example Comment and Reply</h1>

![version2screenshot.png](https://steemitimages.com/DQmdW8Eh72sTfhqQs1A2JEbhmgFnjg7xe8UBnfbpuCLyCE1/version2screenshot.png)

<h1>The Code</h1>

Before you go over the following code thinking "What the actual F#ck!?" just note the following: 

1. I learned Python from scratch in order to play around with the Steemit and Bittrex API's

2. I'm aware that there are numerous redundant code statements, since I'm new to Python I tried to make it as less condensed as possible. 

3. This code can not just be copied, pasted and ran since you need to set up your environment first

4. The code does not have proper exit code 

Without further adieu, here we go: 

````
from steem import Steem
import json
from urllib.request import urlopen 
from forex_python.bitcoin import BtcConverter
import os
from dateutil import parser
import time

#create steem instance
s = Steem()
#create BtcConverter instance
b = BtcConverter()
#get the Bitcoin currency symbol
symbol = b.get_symbol()+" "

#unlock wallet
os.environ["UNLOCK"]="your-super-dooper-secret-wallet-passphrase"

runMe = True
 
#I did not actually type out all the currencies and their corresponding markets
cryptos = {'evergreencoin': 'BTC-EGC', 'lunyr': 'BTC-LUN', 'pinkcoin': 'BTC-PINK'....}

def commentResult(crypto, author, permlink):
	#url to query the Bittrex API for market info
	url = "https://bittrex.com/api/v1.1/public/getmarketsummary?market="+cryptos[crypto]
	print("Getting data from Bittrex")
	#open url
	response = urlopen(url).read().decode('utf-8')
	#disect dictionary to get market data
	formatted = json.loads(response)['result'][0]
	marketName = str(formatted['MarketName'])
	high = symbol+str(float('%0.8f' % formatted['High'])) 
	low = symbol+str(float('%0.8f' % formatted['Low']))
	volume = str(formatted['Volume'])
	last = symbol+str(float('%0.8f' % formatted['Last']))
	baseVolume = str(formatted['BaseVolume'])
	timeStamp =str(formatted['TimeStamp']) 
	bid = symbol+str(float('%0.8f' % formatted['Bid'])) 
	ask = symbol+str(float('%0.8f' % formatted['Ask']))
	openBuyOrders = str(formatted['OpenBuyOrders'])
	openSellOrders = str(formatted['OpenSellOrders']) 
	
	print("Setting up strings")
	
	devider = "___________________________________ \n"
	string1 = "Market Name: "+marketName+"\n"
	string2 = "High: "+high+"\n"
	string3 = "Low: "+low+"\n"
	string4 = "Volume: "+volume+"\n"
	string5 = "Last Price: "+last+"\n"
	string6 = "Base Volume: "+baseVolume+"\n"
	string7 = "TimeStamp: "+timeStamp+"\n"
	string8 = "Bid: "+bid+"\n"
	string9 = "Ask: "+ask+"\n"
	string10 = "Open Buy Orders: "+openBuyOrders+"\n"
	string11 = "Open Sell Orders: "+openSellOrders+"\n"
	
	print("commenting on post: Correct currency")
	message = string1+devider+string2+string3+string5+devider+string4+string6+devider+string8+string9+devider+string10+string11+devider+string7
	s.post("", message, "benniebanana", "", "@"+author+"/"+permlink)
	print("Commented on new post: Correct")
	print("Sleeping for 20 seconds after commenting")
	time.sleep(20)
	print("Done sleeping")
	

while runMe == True:
	#get replies on post
	data = s.get_content_replies("benniebanana", "<permlink of post >")
	#check for new comment id's
	for c in data:
                
		idLog = open("/home/myComputerName/Desktop/log/log.txt", "r+") #Should probably change this
		latestId = int(idLog.readlines()[-1])
		if c['id'] > latestId:
			print("New post found")
			crypto = c['body'].lower()
			author = c['author']
			permlink = c['permlink']
			#check if crypto is in dictionary
			if crypto in cryptos:
				commentResult(crypto, author, permlink)
				idLog.write(str(c['id'])+"\n")	
				print("log updated")	 
				
			else:
				print("Currency not found")
				idLog.write(str(c['id'])+"\n") 
				print("log updated ")
				
			
		else: 
			print("no new comments")
	 
	
#close log file
idLog.close()

````

<h1>Please Note</h1>

* This was in no way created to help anyone make trading decisions, this was purely a little project I tackled to keep myself busy and should not be used to make any trading decisions off. 
* If you don't get an instant reply it's because I have to wait 20 seconds after replying before I may reply again so  botty needs to sleep a little in between replies to prevent him from crashing and causing my laptop to explode. 
* I can not guarantee 24/7 uptime of the bot because I have not tested my code extensively, as I mentioned before, this is merely an experiment and not some enterprise level software but I will be keeping an eye on him to make sure he stays alive for those who want to test him out a little. Please don't downvote or flag this post if the bot doesn't work, I'll try my best to keep the bot running. 
* Feel free to comment, besides a cryptocurrency name, for me to reply back on(Not the bot).
* You will not get a summary if you misspell a coin name(case does not matter as long as the spelling is correct)

<center><h1>Enjoy!</h1></center>

<center>Be sure to follow me for more of these little projects</center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 4 others
properties (23)
authorbenniebanana
permlink24-hour-summary-cryptobot-python-update-2-code-included
categorysteemdev
json_metadata{"tags":["steemdev","steemit","programming","minnowsupport","bitcoin"],"image":["https://ak2.picdn.net/shutterstock/videos/8335423/thumb/1.jpg","https://steemitimages.com/DQmYU4cTutXA3cPrsm9LcZQsfSmhWrkdUxxvoixbAF9J1AT/coins.png","https://steemitimages.com/DQmdW8Eh72sTfhqQs1A2JEbhmgFnjg7xe8UBnfbpuCLyCE1/version2screenshot.png"],"app":"steemit/0.1","format":"markdown"}
created2017-06-17 20:25:21
last_update2017-06-20 23:52:42
depth0
children19
last_payout2017-06-24 20:25:21
cashout_time1969-12-31 23:59:59
total_payout_value119.231 HBD
curator_payout_value39.081 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,216
author_reputation875,530,017,816
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id5,122,100
net_rshares7,650,879,612,286
author_curate_reward""
vote details (68)
@amexperts ·
$0.11
Great work. Helps a lot for someone new to steem and python to learn. I am sure it will benefit a lot of others as well.
👍  
properties (23)
authoramexperts
permlinkre-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t081210985z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-18 08:12:12
last_update2017-06-18 08:12:12
depth1
children1
last_payout2017-06-25 08:12:12
cashout_time1969-12-31 23:59:59
total_payout_value0.110 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation239,102,869,157
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,158,867
net_rshares5,417,137,849
author_curate_reward""
vote details (1)
@benniebanana ·
$0.11
Thank you for the reply and the support, I'm also still learning Python and it's a super fun language to be learning. I'm glad I could post something of value. I'll be doing more of these posts in the future after seeing the response to this post.
👍  
properties (23)
authorbenniebanana
permlinkre-amexperts-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t103557150z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-18 10:35:57
last_update2017-06-18 10:35:57
depth2
children0
last_payout2017-06-25 10:35:57
cashout_time1969-12-31 23:59:59
total_payout_value0.110 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length247
author_reputation875,530,017,816
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,165,810
net_rshares5,417,148,201
author_curate_reward""
vote details (1)
@batfinkler ·
steem
properties (22)
authorbatfinkler
permlinkre-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20171205t201422243z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-12-05 20:14:21
last_update2017-12-05 20:14:21
depth1
children3
last_payout2017-12-12 20: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_length5
author_reputation52,212,162,123
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,497,810
net_rshares0
@benniebanana ·
Hi sorry this bot is inactive
properties (22)
authorbenniebanana
permlinkre-batfinkler-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20171209t081933477z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-12-09 08:19:30
last_update2017-12-09 08:19:30
depth2
children2
last_payout2017-12-16 08:19: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_length29
author_reputation875,530,017,816
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,860,195
net_rshares0
@batfinkler ·
Ok no worries I assume you just got bored of having it running ?
properties (22)
authorbatfinkler
permlinkre-benniebanana-re-batfinkler-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20171209t202725490z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-12-09 20:27:27
last_update2017-12-09 20:27:27
depth3
children1
last_payout2017-12-16 20:27:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation52,212,162,123
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,923,920
net_rshares0
@benniebanana ·
steem
properties (22)
authorbenniebanana
permlinkre-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170617t202605982z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-17 20:26:06
last_update2017-06-17 20:26:06
depth1
children1
last_payout2017-06-24 20:26: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_length5
author_reputation875,530,017,816
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,122,139
net_rshares0
@benniebanana ·
Market Name: BTC-STEEM
___________________________________ 
High: ฿ 0.00084347
Low: ฿ 0.00080598
Last Price: ฿ 0.00082089
___________________________________ 
Volume: 254593.61232136
Base Volume: 208.10888537
___________________________________ 
Bid: ฿ 0.00082098
Ask: ฿ 0.00082499
___________________________________ 
Open Buy Orders: 848
Open Sell Orders: 2243
___________________________________ 
TimeStamp: 2017-06-17T20:26:57.47
properties (22)
authorbenniebanana
permlinkre-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170617t202605982z-20170617t202700
categorysteemdev
json_metadata""
created2017-06-17 20:27:03
last_update2017-06-17 20:27:03
depth2
children0
last_payout2017-06-24 20:27: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_length434
author_reputation875,530,017,816
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,122,179
net_rshares0
@futuristgear ·
golem
properties (22)
authorfuturistgear
permlinkre-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170617t214323118z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-17 21:43:27
last_update2017-06-17 21:43:27
depth1
children1
last_payout2017-06-24 21:43: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_length5
author_reputation3,044,964,761,432
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,126,682
net_rshares0
@benniebanana ·
$0.03
Market Name: BTC-GNT
___________________________________ 
High: ฿ 0.0002295
Low: ฿ 0.00020145
Last Price: ฿ 0.00022852
___________________________________ 
Volume: 3069040.02422301
Base Volume: 678.112274
___________________________________ 
Bid: ฿ 0.00022852
Ask: ฿ 0.00022854
___________________________________ 
Open Buy Orders: 907
Open Sell Orders: 1488
___________________________________ 
TimeStamp: 2017-06-17T21:42:33.867
👍  
properties (23)
authorbenniebanana
permlinkre-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170617t214323118z-20170617t214330
categorysteemdev
json_metadata""
created2017-06-17 21:43:33
last_update2017-06-17 21:43:33
depth2
children0
last_payout2017-06-24 21:43:33
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length431
author_reputation875,530,017,816
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,126,687
net_rshares1,514,166,929
author_curate_reward""
vote details (1)
@gmuxx ·
Nice work, totally over my head but impressive nonetheless!
properties (22)
authorgmuxx
permlinkre-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t185055013z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-18 18:50:54
last_update2017-06-18 18:50:54
depth1
children1
last_payout2017-06-25 18:50: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_length59
author_reputation49,417,037,219,765
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,198,106
net_rshares0
@benniebanana ·
Thank you for the support, appreciated
👍  
properties (23)
authorbenniebanana
permlinkre-gmuxx-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t185721068z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-18 18:57:24
last_update2017-06-18 18:57:24
depth2
children0
last_payout2017-06-25 18:57: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_length38
author_reputation875,530,017,816
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,198,566
net_rshares830,009,192
author_curate_reward""
vote details (1)
@steemitboard ·
Congratulations @benniebanana! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@benniebanana) Award for the number of upvotes

Click on any badge to view your own Board of Honnor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-benniebanana-20170618t031947000z
categorysteemdev
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-06-18 01:19:45
last_update2017-06-18 01:19:45
depth1
children0
last_payout2017-06-25 01:19: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_length693
author_reputation38,975,615,169,260
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,138,997
net_rshares0
@transisto ·
doge
👍  
properties (23)
authortransisto
permlinkre-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t074736599z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-18 07:47:36
last_update2017-06-18 07:47:36
depth1
children1
last_payout2017-06-25 07:47:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation330,357,940,720,833
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,157,794
net_rshares315,919,901
author_curate_reward""
vote details (1)
@benniebanana ·
Hi, sorry that you didn't get a reply but it's "dogecoin". Feel free to try again. The bot is still running on this post
properties (22)
authorbenniebanana
permlinkre-transisto-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t101406366z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-18 10:14:09
last_update2017-06-18 10:14:09
depth2
children0
last_payout2017-06-25 10:14: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_length120
author_reputation875,530,017,816
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,164,791
net_rshares0
@tudisco ·
$0.03
This is great. I learned a lot from the code you provided, thanks.
👍  
properties (23)
authortudisco
permlinkre-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170620t095007744z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-20 09:50:09
last_update2017-06-20 09:50:09
depth1
children1
last_payout2017-06-27 09:50:09
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation3,073,792,389
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,336,358
net_rshares1,662,632,811
author_curate_reward""
vote details (1)
@benniebanana ·
Thank you for the feedback, appreciated. I'll definitely be doing more of these projects and sharing them with the community.
properties (22)
authorbenniebanana
permlinkre-tudisco-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170620t104413094z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-20 10:44:15
last_update2017-06-20 10:44:15
depth2
children0
last_payout2017-06-27 10:44: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_length125
author_reputation875,530,017,816
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,339,426
net_rshares0
@william702 ·
Very cool indeed. Thanks for sharing this and this stuff goes way over my head so you know a lot more than you give yourself credit for. Well done!
properties (22)
authorwilliam702
permlinkre-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t190057316z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-18 19:01:00
last_update2017-06-18 19:01:00
depth1
children1
last_payout2017-06-25 19:01:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation46,209,387,120
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,198,843
net_rshares0
@benniebanana ·
Thank you very much. I appreciate the feedback
properties (22)
authorbenniebanana
permlinkre-william702-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t190928263z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-06-18 19:09:30
last_update2017-06-18 19:09:30
depth2
children0
last_payout2017-06-25 19:09: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_length46
author_reputation875,530,017,816
root_title"24 Hour Summary CryptoBot(Python) Update#2 - Code Included"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,199,486
net_rshares0