<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>  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>  <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>
author | benniebanana |
---|---|
permlink | 24-hour-summary-cryptobot-python-update-2-code-included |
category | steemdev |
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"} |
created | 2017-06-17 20:25:21 |
last_update | 2017-06-20 23:52:42 |
depth | 0 |
children | 19 |
last_payout | 2017-06-24 20:25:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 119.231 HBD |
curator_payout_value | 39.081 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,216 |
author_reputation | 875,530,017,816 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 5,122,100 |
net_rshares | 7,650,879,612,286 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cloh76 | 0 | 383,790,692 | 3.62% | ||
transisto | 0 | 3,910,447,747,425 | 97% | ||
raymondspeaks | 0 | 979,200,444 | 18.14% | ||
krystle | 0 | 1,057,415,283 | 1.81% | ||
rouketas | 0 | 343,364,480 | 18.14% | ||
ubg | 0 | 457,256,309 | 1% | ||
claudiop63 | 0 | 3,903,935,870 | 5.44% | ||
jsantana | 0 | 677,266,823 | 1.81% | ||
runridefly | 0 | 7,776,429,359 | 5% | ||
aggroed | 0 | 2,817,673,099 | 1.81% | ||
ethical-ai | 0 | 370,114,316 | 18.14% | ||
yuriks2000 | 0 | 120,081,729 | 9.07% | ||
jhermanbeans | 0 | 234,115,994 | 1.81% | ||
dianargenti | 0 | 136,605,572 | 1.81% | ||
obito | 0 | 652,118,981 | 100% | ||
swolesome | 0 | 1,570,190,050 | 18.14% | ||
fisteganos | 0 | 1,469,874,078 | 5.44% | ||
stefan.steynberg | 0 | 151,439,485 | 18.14% | ||
maninayton | 0 | 776,387,031 | 3.62% | ||
lances | 0 | 807,874,724 | 3.62% | ||
banjo | 0 | 459,969,838 | 18.14% | ||
varunsangwan | 0 | 305,452,656 | 9.07% | ||
oluwoleolaide | 0 | 274,394,631 | 18.14% | ||
tudisco | 0 | 432,977,294 | 100% | ||
kwak | 0 | 43,843,589,285 | 100% | ||
goingmobile | 0 | 895,324,479 | 9.07% | ||
ehiboss | 0 | 306,283,101 | 18.14% | ||
fingersik | 0 | 351,033,731 | 18.14% | ||
markwhittam | 0 | 325,626,352 | 18.14% | ||
dreamiely | 0 | 115,352,207 | 18.14% | ||
choogirl | 0 | 301,115,779 | 3.62% | ||
jesse2you | 0 | 82,590,885 | 18.14% | ||
gruppler | 0 | 466,913,767 | 18.14% | ||
bdmomuae | 0 | 83,567,997 | 100% | ||
waphilip | 0 | 796,727,323 | 18.14% | ||
albertvhons | 0 | 80,154,134 | 1.81% | ||
whatamidoing | 0 | 179,649,553 | 5.44% | ||
jeanelleybee | 0 | 337,066,256 | 18.14% | ||
codingpanda | 0 | 359,220,646 | 18.14% | ||
goldgoatsnguns | 0 | 145,725,683 | 9.07% | ||
nybble | 0 | 519,182,721 | 18.14% | ||
futuristgear | 0 | 1,602,379,716 | 100% | ||
beng05 | 0 | 376,005,825 | 18.14% | ||
shellyduncan | 0 | 239,305,915 | 1.81% | ||
readmore | 0 | 335,193,316 | 18.14% | ||
coinhawk | 0 | 1,703,373,958 | 18.14% | ||
gmuxx | 0 | 830,009,192 | 100% | ||
newsflash | 0 | 3,556,235,803,356 | 100% | ||
qwasert | 0 | 107,896,718 | 3.62% | ||
fatpandadesign | 0 | 762,877,397 | 18.14% | ||
tizswa | 0 | 235,450,568 | 5.44% | ||
amexperts | 0 | 5,417,137,849 | 100% | ||
scooter77 | 0 | 830,678,881 | 100% | ||
necio | 0 | 581,094,150 | 100% | ||
cryptohustler | 0 | 375,450,279 | 100% | ||
dewallenband | 0 | 322,399,599 | 100% | ||
somethingsubtle | 0 | 246,783,118 | 100% | ||
benniebanana | 0 | 121,012,961 | 100% | ||
procyon21 | 0 | 169,889,921 | 100% | ||
musliadi | 0 | 155,335,000 | 100% | ||
minnowsupport | 0 | 92,074,704,010 | 18.14% | ||
xpency | 0 | 197,320,470 | 100% | ||
aircoin | 0 | 290,177,110 | 100% | ||
tonystark | 0 | 266,962,709 | 100% | ||
rahdit | 0 | 133,481,009 | 100% | ||
russiantrue | 0 | 237,944,169 | 100% | ||
william702 | 0 | 284,372,026 | 100% | ||
maretha94 | 0 | 951,773,002 | 100% |
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.
author | amexperts |
---|---|
permlink | re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t081210985z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-18 08:12:12 |
last_update | 2017-06-18 08:12:12 |
depth | 1 |
children | 1 |
last_payout | 2017-06-25 08:12:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.110 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 120 |
author_reputation | 239,102,869,157 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,158,867 |
net_rshares | 5,417,137,849 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amexperts | 0 | 5,417,137,849 | 100% |
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.
author | benniebanana |
---|---|
permlink | re-amexperts-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t103557150z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-18 10:35:57 |
last_update | 2017-06-18 10:35:57 |
depth | 2 |
children | 0 |
last_payout | 2017-06-25 10:35:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.110 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 247 |
author_reputation | 875,530,017,816 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,165,810 |
net_rshares | 5,417,148,201 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amexperts | 0 | 5,417,148,201 | 100% |
steem
author | batfinkler |
---|---|
permlink | re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20171205t201422243z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-12-05 20:14:21 |
last_update | 2017-12-05 20:14:21 |
depth | 1 |
children | 3 |
last_payout | 2017-12-12 20: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 | 5 |
author_reputation | 52,212,162,123 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 22,497,810 |
net_rshares | 0 |
Hi sorry this bot is inactive
author | benniebanana |
---|---|
permlink | re-batfinkler-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20171209t081933477z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-12-09 08:19:30 |
last_update | 2017-12-09 08:19:30 |
depth | 2 |
children | 2 |
last_payout | 2017-12-16 08:19: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 | 29 |
author_reputation | 875,530,017,816 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 22,860,195 |
net_rshares | 0 |
Ok no worries I assume you just got bored of having it running ?
author | batfinkler |
---|---|
permlink | re-benniebanana-re-batfinkler-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20171209t202725490z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-12-09 20:27:27 |
last_update | 2017-12-09 20:27:27 |
depth | 3 |
children | 1 |
last_payout | 2017-12-16 20:27:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 52,212,162,123 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 22,923,920 |
net_rshares | 0 |
steem
author | benniebanana |
---|---|
permlink | re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170617t202605982z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-17 20:26:06 |
last_update | 2017-06-17 20:26:06 |
depth | 1 |
children | 1 |
last_payout | 2017-06-24 20:26: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 | 5 |
author_reputation | 875,530,017,816 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,122,139 |
net_rshares | 0 |
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
author | benniebanana |
---|---|
permlink | re-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170617t202605982z-20170617t202700 |
category | steemdev |
json_metadata | "" |
created | 2017-06-17 20:27:03 |
last_update | 2017-06-17 20:27:03 |
depth | 2 |
children | 0 |
last_payout | 2017-06-24 20:27: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 | 434 |
author_reputation | 875,530,017,816 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,122,179 |
net_rshares | 0 |
golem
author | futuristgear |
---|---|
permlink | re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170617t214323118z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-17 21:43:27 |
last_update | 2017-06-17 21:43:27 |
depth | 1 |
children | 1 |
last_payout | 2017-06-24 21:43: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 | 5 |
author_reputation | 3,044,964,761,432 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,126,682 |
net_rshares | 0 |
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
author | benniebanana |
---|---|
permlink | re-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170617t214323118z-20170617t214330 |
category | steemdev |
json_metadata | "" |
created | 2017-06-17 21:43:33 |
last_update | 2017-06-17 21:43:33 |
depth | 2 |
children | 0 |
last_payout | 2017-06-24 21:43:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 431 |
author_reputation | 875,530,017,816 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,126,687 |
net_rshares | 1,514,166,929 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
futuristgear | 0 | 1,514,166,929 | 100% |
Nice work, totally over my head but impressive nonetheless!
author | gmuxx |
---|---|
permlink | re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t185055013z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-18 18:50:54 |
last_update | 2017-06-18 18:50:54 |
depth | 1 |
children | 1 |
last_payout | 2017-06-25 18:50: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 | 59 |
author_reputation | 49,417,037,219,765 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,198,106 |
net_rshares | 0 |
Thank you for the support, appreciated
author | benniebanana |
---|---|
permlink | re-gmuxx-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t185721068z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-18 18:57:24 |
last_update | 2017-06-18 18:57:24 |
depth | 2 |
children | 0 |
last_payout | 2017-06-25 18:57: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 | 38 |
author_reputation | 875,530,017,816 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,198,566 |
net_rshares | 830,009,192 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gmuxx | 0 | 830,009,192 | 100% |
Congratulations @benniebanana! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](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)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-benniebanana-20170618t031947000z |
category | steemdev |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-06-18 01:19:45 |
last_update | 2017-06-18 01:19:45 |
depth | 1 |
children | 0 |
last_payout | 2017-06-25 01:19: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 | 693 |
author_reputation | 38,975,615,169,260 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,138,997 |
net_rshares | 0 |
doge
author | transisto |
---|---|
permlink | re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t074736599z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-18 07:47:36 |
last_update | 2017-06-18 07:47:36 |
depth | 1 |
children | 1 |
last_payout | 2017-06-25 07:47:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 330,357,940,720,833 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,157,794 |
net_rshares | 315,919,901 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
randomwhale | 0 | 315,919,901 | 100% |
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
author | benniebanana |
---|---|
permlink | re-transisto-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t101406366z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-18 10:14:09 |
last_update | 2017-06-18 10:14:09 |
depth | 2 |
children | 0 |
last_payout | 2017-06-25 10:14: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 | 120 |
author_reputation | 875,530,017,816 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,164,791 |
net_rshares | 0 |
This is great. I learned a lot from the code you provided, thanks.
author | tudisco |
---|---|
permlink | re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170620t095007744z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-20 09:50:09 |
last_update | 2017-06-20 09:50:09 |
depth | 1 |
children | 1 |
last_payout | 2017-06-27 09:50:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 3,073,792,389 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,336,358 |
net_rshares | 1,662,632,811 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tudisco | 0 | 1,662,632,811 | 100% |
Thank you for the feedback, appreciated. I'll definitely be doing more of these projects and sharing them with the community.
author | benniebanana |
---|---|
permlink | re-tudisco-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170620t104413094z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-20 10:44:15 |
last_update | 2017-06-20 10:44:15 |
depth | 2 |
children | 0 |
last_payout | 2017-06-27 10:44: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 | 125 |
author_reputation | 875,530,017,816 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,339,426 |
net_rshares | 0 |
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!
author | william702 |
---|---|
permlink | re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t190057316z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-18 19:01:00 |
last_update | 2017-06-18 19:01:00 |
depth | 1 |
children | 1 |
last_payout | 2017-06-25 19:01:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 147 |
author_reputation | 46,209,387,120 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,198,843 |
net_rshares | 0 |
Thank you very much. I appreciate the feedback
author | benniebanana |
---|---|
permlink | re-william702-re-benniebanana-24-hour-summary-cryptobot-python-update-2-code-included-20170618t190928263z |
category | steemdev |
json_metadata | {"tags":["steemdev"],"app":"steemit/0.1"} |
created | 2017-06-18 19:09:30 |
last_update | 2017-06-18 19:09:30 |
depth | 2 |
children | 0 |
last_payout | 2017-06-25 19:09: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 | 46 |
author_reputation | 875,530,017,816 |
root_title | "24 Hour Summary CryptoBot(Python) Update#2 - Code Included" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,199,486 |
net_rshares | 0 |