### 0. 똑같은 댓글은 재미없잖아요? # 반가워요 프린이 여러분! **함께 스팀봇을 만들어봐요.** '누구나' 만들 수 있는 **야매코딩 시리즈 심화편 첫 번째 강좌**입니다. **A. 스팀봇, 똑똑한 댓글을 달아줘! ☜** B. 스팀봇, 업보팅도 해야지! C. 스팀봇, 스달 송금해줘! D. 스팀봇, 데일리 리포팅 해줘! E. 스팀봇, 또 뭘 할 수 있지? **기본편에서 완성한 스팀봇은 '@명령어' 댓글을 인식하고 자동으로 댓글을 달았지만, 똑같은 댓글만 달면 재미없잖아요?** 그래서 이번에는 **'똑똑해 보이는' 댓글을 달도록 스팀봇을 강화**해보겠습니다. > 스티미언이라면, 스팀봇 하나쯤은 있어야 하지 않겠어요? (찡긋) # **혹시 야매코딩이 처음이신가요?** 기본편도 있으니 참고해주세요! #### ☞ (이전) 야매코딩 - '누구나 만들어보는 스팀봇!' [A. 개발 환경설정 따라하기 I - Google Cloud 세팅](https://steemit.com/kr-dev/@hellocrypto/0) [B. 개발 환경설정 따라하기 II - Conda 세팅](https://steemit.com/kr-dev/@hellocrypto/2-ii-conda) [C. 스팀 API 설치 및 살펴보기 101](https://steemit.com/kr-dev/@hellocrypto/3-api-101) [D. 스팀 API 심화, 블록체인 & 포스트](https://steemit.com/kr-dev/@hellocrypto/4-api-and) [E. 예제로 따라하는 스팀봇 뚝딱](https://steemit.com/kr-dev/@hellocrypto/5) [F. nohup으로 자동화, 알아서 언제나 24/7](https://steemit.com/kr-dev/@hellocrypto/6-nohup-24-7) # **자, 그럼 시작해볼까요?**  > 이미지 출처: https://dribbble.com/shots/4029449-Desk # # ### 1. 그래도 복습은 간단히! # **기본편에서 아래와 같은 내용까지 함께 만들어서 ```blockpost.py```에 저장해뒀었죠?** 그리고 ```keys``` 안에는 프린이 여러분의 키가 들어가고, ```'@야매코딩'``` 대신 본인이 원하는 명령어를 사용했고, 호출되면 무조건 ```"Hi there!"```라고 천편일률적인 스팀봇 댓글을 달았죠. 댓글 부분에서 ```hellocrypto``` 대신 프린이의 유저명을 써야하는거, 잊지 말고요!  # ``` from steem.blockchain import Blockchain from steem.post import Post from steem import Steem s = Steem(nodes=["https://rpc.buildteam.io"], keys=["Key Goes Here!"]) b = Blockchain(s) while True: try: stream = map(Post, b.stream(filter_by=['comment'])) for post in stream: if "@야매코딩" in post.export()['body']: if post.is_comment(): print(post.export()['body']) post.reply("Hi there!","","hellocrypto") except: print("Error!") ``` # # ### 2. 유저를 언급하자! # **어떻게 해야 좀 더 재밌는 댓글이 완성될까요?** 다양한 방법이 있겠지만, 2가지 요소를 추가해볼게요. **스팀봇을 이용한 유저 언급 & 랜덤 댓글 선택.** **유저 언급은 기존 코드를 참고**하면 쉽게 추가할 수 있어요. ```post.export()```가 **특정 댓글/포스트의 세세한 정보를 스팀 API 통해서 확인**하는 부분이었죠. 그리고 기존에 본문만 보기 위해 뒤에 ```post.export()['body']```를 썼다면, **작성자는 ```post.export()['author']```로 확인할 수 있죠.** 그렇다면 본래 코드에서 아래처럼 바꿔주면 스팀봇을 호출한 유저를 언급할 수 있습니다. ``` for post in stream: if "@야매코딩" in post.export()['body']: if post.is_comment(): print(post.export()['body']) post.reply("Hi there!","","hellocrypto") ``` **=>** ``` for post in stream: if "@야매코딩" in post.export()['body']: if post.is_comment(): print(post.export()['body']) author = post.export()['author'] post.reply("Hi there! @%s!" % author,"","hellocrypto") ``` # > 혹시 문자열 포매팅(formatting)이 처음이라면, ```author = post.export()['author']```를 통해서 author에다가 호출자 유저명을 저장했죠? 이를 기존 "Hi there!" 뒤에다가 넣기 위해 %s를 이용합니다 (s는 string 즉 문자열 약자). ```% author```은 그 %s 자리에 처음에 저장해둔 ```author```을 이용해 넣어두라는 뜻이죠. > > 즉, ```"Hi there! @%s!" % author``` => "Hi there! @hellocrypto!"가 됩니다. # **혹은 단순히 ```+``` 더하기를 써도 됩니다.** ``` post.reply("Hi there! " + author,"","hellocrypto") ``` 다만 ```+ author```은 ```""``` 밖에 있다는 점 주의해주시고, ```"Hi there! "``` 보면 뒤에 한 칸 띄어쓰기 되어 있죠? 바로 이어붙여지기 때문에 그렇습니다. # # ### 3. 랜덤 댓글을 남기자! # **항상 ```Hi there!``` (혹은 프린이가 커스텀한) 댓글만 남기면 질리겠죠?** 여러 댓글을 준비하고, 랜덤 요소를 넣어봅시다 :) 흠. 예를 들어, ```"Howdy!", "Hey what's up!" ,"How ya doin'"```을 추가해보죠. 우선 랜덤 요소를 쓰기 위해 **기존 코드 상단에 ```import random```을 추가**해야 합니다. ``` from steem.blockchain import Blockchain from steem.post import Post from steem import Steem ``` **=>** ``` from steem.blockchain import Blockchain from steem.post import Post from steem import Steem import random ``` # **그럼, 준비한 문구들을 '배열'로 준비하죠.** ```[]``` 안에 콤마로 구분해서 넣어주면 되요. ```answers = ["Hi there!", "Howdy!", "Hey what's up!" ,"How ya doin'"]``` # 그리고 방금 import로 준비해둔 random를 쓰면 됩니다. **```random.choice()```는 주어진 배열에서 랜덤으로 하나를 선택해줍니다.** **answers 배열을 넣어서, ```random.choice(answers)```를 본문 코드에 넣어보겠습니다.** ``` from steem.blockchain import Blockchain from steem.post import Post from steem import Steem import random s = Steem(nodes=["https://rpc.buildteam.io"], keys=["Key Goes Here!"]) b = Blockchain(s) answers = ["Hi there!", "Howdy!", "Hey what's up!" ,"How ya doin'"] while True: try: stream = map(Post, b.stream(filter_by=['comment'])) for post in stream: if "@야매코딩" in post.export()['body']: if post.is_comment(): print(post.export()['body']) author = post.export()['author'] answer = random.choice(answers) post.reply(answer + " " + author,"","hellocrypto") except: print("Error!") ``` # 1. ```while True:``` 상단에 배열 ```answers = ["Hi there!", "Howdy!", "Hey what's up!" ,"How ya doin'"]```이 들어갔고, 2. 그 중에 하나를 선택해 ```answer```에 저장하는 ```answer = random.choice(answers)```가 추가 됐고, 3. 댓글 다는 부분은 이제 ```post.reply(answer + " " + author,"","hellocrypto")``` 이렇게 생겼습니다. # **랜덤으로 선택된 인사말과 유저명 사이에 띄어쓰기를 위해 ``` + " " + ```가 있습니다.** # # ### 4. 응용을 해봐요 (숙제) # **랜덤 댓글을 좀 더 응용해보면 재밌는 답변을 달 수 있습니다.** 지금은 문장 전체를 준비해서 유저명과 이어붙였지만, 만약 문장 요소별로 랜덤화 시킨 후 재구성된 문장을 쓴다면? ``` zooeo = ["오늘은", "재밌는", "행복한"] mogjukeo = ["스팀잇", "포스팅", "업보팅"] seosooleo = ["하기 좋은 날이네요", "쓰기 귀찮아요", "함께 해요"] ``` **예시 결과: ~~"오늘은 업보팅 쓰기 귀찮아요"!?~~** ~~주의! 번역체스러운 엉뚱한 답이 생성될 수도 있습니다ㅎㅎ~~ # # **혹은 스팀봇 호출이 댓글 자체가 목적인 경우가 있을 수도 있습니다. 단순히 랜덤 문자열 댓글이 아닌, 좀 더 의미 있는 어떤 정보를 줘야 합니다.** 예를 들어 '@주사위'가 있겠네요. 그런 경우에는 ```random.randrange(1,100)```을 사용하면 됩니다. 1에서부터 100까지 중에서 랜덤으로 하나를 뽑는다는 뜻이죠. **여러분이 원하는 댓글 내용은 또 뭐가 있을까요?** 숙제로 한 번 직접 응용을 해서 여기 포스팅 밑에 댓글을 달아봅시다 프린이 여러분! # # ### 5. 마무리, (스팀봇 +1) # **스팀봇 첫 강화, 성공했나요?** ~~1강 성공률은 높으니 주문서 필요없으시죠?~~ 좀 더 다양한 댓글을 남기는 스팀봇을 함께 만들어봤습니다. **다음에는 ```B. 스팀봇, 업보팅도 해야지!```편으로 돌아오겠습니다 :)** 댓글 뿐만 아니라 원하는 비율로 업보팅을 하도록 스팀봇을 강화시켜 보죠! 궁금하신 점과 지적사항 댓글로 남겨주세요. 최대한 빨리 확인하겠습니다. 구닌이라 조금 많이(...) 늦을 수 있어요 하핳. **이만 상병 크립토 @hellocrypto였습니다. 필승!**
author | hellocrypto |
---|---|
permlink | 1 |
category | kr-dev |
json_metadata | {"community":"busy","app":"busy/2.4.0","format":"markdown","tags":["kr-dev","kr-newbie","kr","busy","jjangjjangman"],"users":["hellocrypto"],"links":["https://steemit.com/kr-dev/@hellocrypto/0","https://steemit.com/kr-dev/@hellocrypto/2-ii-conda","https://steemit.com/kr-dev/@hellocrypto/3-api-101","https://steemit.com/kr-dev/@hellocrypto/4-api-and","https://steemit.com/kr-dev/@hellocrypto/5","https://steemit.com/kr-dev/@hellocrypto/6-nohup-24-7","https://dribbble.com/shots/4029449-Desk","/@hellocrypto","/@hellocrypto"]} |
created | 2018-05-04 06:59:12 |
last_update | 2018-05-04 06:59:12 |
depth | 0 |
children | 34 |
last_payout | 2018-05-11 06:59:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 21.561 HBD |
curator_payout_value | 1.650 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,018 |
author_reputation | 2,674,818,402,398 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,784,418 |
net_rshares | 4,195,420,283,319 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
xeldal | 0 | 1,750,142,262,098 | 7% | ||
busy.pay | 0 | 216,264,359,639 | 1.64% | ||
amryksr | 0 | 7,878,811,794 | 100% | ||
nhj12311 | 0 | 45,143,797,314 | 32% | ||
stylegold | 0 | 0 | 10% | ||
virus707 | 0 | 97,810,444,791 | 1% | ||
ccoin | 0 | 7,068,138,173 | 100% | ||
bramd | 0 | 559,165,422,461 | 10% | ||
agawolf | 0 | 8,623,852,594 | 1% | ||
akuku | 0 | 12,997,031,029 | 20% | ||
krwhale | 0 | 373,706,250,019 | 74% | ||
abcbullion | 0 | 282,673,017 | 46% | ||
matt788587 | 0 | 13,367,861,372 | 100% | ||
smigol | 0 | 8,921,913,717 | 5% | ||
tradingideas | 0 | 60,632,683,667 | 100% | ||
urobotics | 0 | 534,297,447 | 100% | ||
eversloth | 0 | 9,363,220,798 | 10% | ||
supergiant | 0 | 390,624,471,261 | 100% | ||
ayogom | 0 | 3,661,464,603 | 10% | ||
sengaloune | 0 | 199,926,742 | 100% | ||
plop-into-milk | 0 | 3,136,381,173 | 100% | ||
hellocrypto | 0 | 344,825,752,098 | 100% | ||
onehand | 0 | 12,266,973,818 | 3% | ||
sambok | 0 | 593,276,371 | 100% | ||
wooboo | 0 | 815,975,744 | 9% | ||
donekim | 0 | 15,785,639,565 | 100% | ||
ai1love | 0 | 254,475,145 | 100% | ||
thegreatgatsby | 0 | 201,639,226,737 | 100% | ||
luckystrikes | 0 | 22,634,296,809 | 3% | ||
andinayt | 0 | 598,300,878 | 100% | ||
highmech | 0 | 10,707,552,405 | 100% | ||
qlfxkdla | 0 | 633,738,732 | 100% | ||
fraudo | 0 | 368,673,390 | 100% | ||
maanya | 0 | 5,407,491,781 | 100% | ||
ganzi | 0 | 2,675,318,175 | 20% | ||
luistoledo | 0 | 556,769,890 | 100% | ||
binterest | 0 | 61,203,584 | 10% | ||
luminaryhmo | 0 | 101,235,103 | 100% | ||
sangwoan | 0 | 2,297,244,335 | 100% | ||
jiwootak | 0 | 3,180,288,425 | 100% | ||
light-hearted | 0 | 491,586,625 | 100% | ||
vladimirtopiev | 0 | 0 | -100% | ||
marcfrelon2 | 0 | 0 | -100% | ||
stb138 | 0 | 0 | -100% | ||
charlesdeherstal | 0 | 0 | -100% | ||
steembotalpha | 0 | 0 | -100% | ||
icebergbitos | 0 | 0 | -100% | ||
steempioneer | 0 | 0 | -100% | ||
tinant | 0 | 0 | -100% | ||
steamsteam | 0 | 0 | -18% |
와 자동으로 되는군요~
author | ai1love |
---|---|
permlink | re-hellocrypto-1-20180504t071651034z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 07:16:51 |
last_update | 2018-05-04 07:16:51 |
depth | 1 |
children | 2 |
last_payout | 2018-05-11 07:16:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.051 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 37,691,690,905,835 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,786,717 |
net_rshares | 10,649,091,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hellocrypto | 0 | 10,649,091,463 | 3% |
넵ㅎㅎ 기회 되시면 한 번 같이 해요 :)
author | hellocrypto |
---|---|
permlink | re-ai1love-re-hellocrypto-1-20180504t073627561z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 07:36:30 |
last_update | 2018-05-04 07:36:30 |
depth | 2 |
children | 1 |
last_payout | 2018-05-11 07:36: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 | 23 |
author_reputation | 2,674,818,402,398 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,789,169 |
net_rshares | 0 |
프로그램은 초보라서... ㅋㅋ
author | ai1love |
---|---|
permlink | re-hellocrypto-re-ai1love-re-hellocrypto-1-20180504t074818358z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 07:48:18 |
last_update | 2018-05-04 07:48:18 |
depth | 3 |
children | 0 |
last_payout | 2018-05-11 07:48:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 37,691,690,905,835 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,790,667 |
net_rshares | 0 |
따라해봅니다! 늘 감사드립니다~
author | akuku |
---|---|
permlink | re-hellocrypto-1-20180504t215820191z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 21:58:21 |
last_update | 2018-05-04 21:58:21 |
depth | 1 |
children | 0 |
last_payout | 2018-05-11 21:58: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 | 17 |
author_reputation | 7,937,187,456,266 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,911,857 |
net_rshares | 0 |
왠지 오치님이 생각나는 글이네요 ㅎ
author | ayogom |
---|---|
permlink | re-hellocrypto-1-20180504t070530057z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 07:05:33 |
last_update | 2018-05-04 07:05:33 |
depth | 1 |
children | 5 |
last_payout | 2018-05-11 07:05:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.058 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 74,209,287,963,096 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,785,245 |
net_rshares | 10,649,091,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hellocrypto | 0 | 10,649,091,463 | 3% |
앗 어떤 부분이 그렇게 느껴졌을까요ㅎㅎ 영광(?)입니다!
author | hellocrypto |
---|---|
permlink | re-ayogom-re-hellocrypto-1-20180504t071304520z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 07:12:36 |
last_update | 2018-05-04 07:12:36 |
depth | 2 |
children | 4 |
last_payout | 2018-05-11 07:12: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 | 31 |
author_reputation | 2,674,818,402,398 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,786,176 |
net_rshares | 0 |
A. 스팀봇, 똑똑한 댓글을 달아줘! ☜ B. 스팀봇, 업보팅도 해야지! 짱짱맨 태그라든지 달아주실때 봇으로 돌리시는 느낌이라 ㅋㅋ 그러고 보니 먹스팀도 이렇게 만들어지겠네요 ㅎ 이번에도 잘 따라해볼께요
author | ayogom |
---|---|
permlink | re-hellocrypto-re-ayogom-re-hellocrypto-1-20180504t071858142z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-04 07:19:06 |
last_update | 2018-05-04 07:19:06 |
depth | 3 |
children | 3 |
last_payout | 2018-05-11 07:19: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 | 114 |
author_reputation | 74,209,287,963,096 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,786,994 |
net_rshares | 0 |
어흑 크립토님 요즘 통 안보이시내요. 무슨일 있으신건 아니시죠? 크립토님 쉬운 설명 덕분에 따라하면서 많이 배웠는데 >.<
author | bystyx |
---|---|
permlink | re-hellocrypto-1-20180530t184155209z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-30 18:41:54 |
last_update | 2018-05-30 18:41:54 |
depth | 1 |
children | 0 |
last_payout | 2018-06-06 18:41: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 | 68 |
author_reputation | 1,802,824,205,880 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 58,480,514 |
net_rshares | 0 |
랜덤 댓글 10개 만들어서 봇호출 명령어 성공했습니다. !!!! 감사합니다.
author | dailypro |
---|---|
permlink | re-hellocrypto-1-20180504t085649707z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 08:56:24 |
last_update | 2018-05-04 08:56:24 |
depth | 1 |
children | 0 |
last_payout | 2018-05-11 08:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.088 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 55,125,641,681,156 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,799,644 |
net_rshares | 18,221,504,398 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
aomura | 0 | 4,902,904,318 | 1% | ||
hellocrypto | 0 | 10,649,091,463 | 3% | ||
scottychams | 0 | 2,669,508,617 | 60% |
위의 예시로 10일가량 매일 돌리고 있습니다. 저는 댓글 위주로 댓글이 작성되고 특정단어 찾기를 합니다. 1. 처음에는 2분만에 하다가.. 갈수록 시간이 많이 걸립니다. 2. 특정시간, 다시말해 1~2분사이 댓글이 몰리면, 일부댓글은 무시하고 넘어갑니다. 그래서 자구책으로 댓글봇을 5개 정도 한 5분차이로 돌리고 있습니다. 개선방안으로 특정단어가 있는 댓글 주소를 저장하고 그 댓글에 대댓글을 달았는지를 체크하기 20초 룰을 있으니까 다음 댓글은 저장된 목록에서 안달렸던걸 역순으로 차례로 달기 이런건 어떨까요?
author | dailypro |
---|---|
permlink | re-hellocrypto-1-20180504t123801708z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 12:38:03 |
last_update | 2018-05-04 12:38:03 |
depth | 1 |
children | 0 |
last_payout | 2018-05-11 12:38:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 300 |
author_reputation | 55,125,641,681,156 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,830,858 |
net_rshares | 7,551,308,053 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
veteran | 0 | 2,648,403,735 | 64% | ||
aomura | 0 | 4,902,904,318 | 1% |
어랏 그동안 상병 크립토님의 포스팅을 못 쫓아오고 있었네요 이론 ㅠㅠ 다시 공부모드 돌입하겠습니다! 저같은 코딩 잘알못에게 눈높이를 맞춰주고 이끌어주시는 포스팅 감사합니다 :)ㅎㅎㅎ
author | donekim |
---|---|
permlink | re-hellocrypto-1-20180504t072216522z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 07:22:18 |
last_update | 2018-05-04 07:22:18 |
depth | 1 |
children | 1 |
last_payout | 2018-05-11 07:22:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.054 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 676,849,297,940,032 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,787,387 |
net_rshares | 10,649,091,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hellocrypto | 0 | 10,649,091,463 | 3% |
돌아온 프린이 @donekim님 반가워요 :)ㅎㅎ 아닙니다 저야말로 감사합니디 도움이 조금이나마 되면 기쁜걸요! 열공 파이팅!!
author | hellocrypto |
---|---|
permlink | re-donekim-re-hellocrypto-1-20180504t073938594z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"users":["donekim"],"app":"steemit/0.1"} |
created | 2018-05-04 07:39:42 |
last_update | 2018-05-04 07:39:42 |
depth | 2 |
children | 0 |
last_payout | 2018-05-11 07:39:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 2,674,818,402,398 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,789,567 |
net_rshares | 0 |
와우 천천히 잘 따라해보도록 하겠습니다 좋은글 감사합니다!
author | fraudo |
---|---|
permlink | re-hellocrypto-1-20180505t062138757z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-05 06:21:42 |
last_update | 2018-05-05 06:21:42 |
depth | 1 |
children | 0 |
last_payout | 2018-05-12 06:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 118,703,626,136 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,967,735 |
net_rshares | 0 |
혹시 태그별로 댓글다는 보팅봇도 만들 수 있나요?
author | ganzi |
---|---|
permlink | re-hellocrypto-1-20180504t071137071z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 07:11:45 |
last_update | 2018-05-04 07:11:45 |
depth | 1 |
children | 3 |
last_payout | 2018-05-11 07:11:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.058 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 15,443,181,367,710 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,786,069 |
net_rshares | 10,649,091,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hellocrypto | 0 | 10,649,091,463 | 3% |
'태그별로 댓글다는'게 정확히 어떤 식일까요? 원하는 태그가 달려있는 포스팅만 보팅하는건가요? :)
author | hellocrypto |
---|---|
permlink | re-ganzi-re-hellocrypto-1-20180504t071435743z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 07:14:06 |
last_update | 2018-05-04 07:14:06 |
depth | 2 |
children | 2 |
last_payout | 2018-05-11 07:14: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 | 55 |
author_reputation | 2,674,818,402,398 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,786,387 |
net_rshares | 0 |
kr-join 태그 최신글에 댓글다는 봇 같은걸 만들고 싶어요 :D
author | ganzi |
---|---|
permlink | re-hellocrypto-re-ganzi-re-hellocrypto-1-20180504t071655522z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-04 07:17:03 |
last_update | 2018-05-04 07:17:03 |
depth | 3 |
children | 1 |
last_payout | 2018-05-11 07:17:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 15,443,181,367,710 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,786,743 |
net_rshares | 0 |
믿고 따라하는 헬크(?)님 ㅋㅋ ~~아직 따라해보지는 못했다고 한다~~ 나도 봇을 만들어보겠어...라는 꿈으로 두근두근하네요 ㅋㅋ 두근두근만...하 ㅜㅜ
author | jiwootak |
---|---|
permlink | re-hellocrypto-1-20180504t073816315z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 07:38:15 |
last_update | 2018-05-04 07:38:15 |
depth | 1 |
children | 0 |
last_payout | 2018-05-11 07:38:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.044 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 905,292,762,365 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,789,389 |
net_rshares | 10,649,091,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hellocrypto | 0 | 10,649,091,463 | 3% |
This post received a 74% upvote from @krwhale thanks to @hellocrypto! For more information, <a href=https://steemit.com/krwhale/@krwhale/krwhale-v2018-05-03>click here</a>!<br>이 글은 @hellocrypto님의 소중한 스팀/스팀달러를 지원 받아 74% 보팅 후 작성한 글입니다. 이 글에 대한 자세한 정보를 원하시면, <a href=https://steemit.com/krwhale/@krwhale/krwhale-v2018-05-03>click here</a>!
author | krwhale |
---|---|
permlink | re-hellocrypto-1-20180507t235404352z |
category | kr-dev |
json_metadata | {"tags":["kr"]} |
created | 2018-05-07 23:54:03 |
last_update | 2018-05-07 23:54:03 |
depth | 1 |
children | 0 |
last_payout | 2018-05-14 23:54: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 | 336 |
author_reputation | 6,819,448,047,761 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 54,467,072 |
net_rshares | 0 |
이거 따라 하다 보면 보팅 봇도 만들수 있나요? ㅋ
author | luckystrikes |
---|---|
permlink | re-hellocrypto-1-20180504t070023651z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 07:00:24 |
last_update | 2018-05-04 07:00:24 |
depth | 1 |
children | 1 |
last_payout | 2018-05-11 07:00:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.054 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 228,107,587,116,606 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,784,609 |
net_rshares | 10,649,091,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hellocrypto | 0 | 10,649,091,463 | 3% |
네 :) 기존에 연재한 기본편 부터 쭉 따라하시면 됩니다. 이번 심화편에서 나올 'B. 스팀봇, 업보팅도 해야지!'랑 'C. 스팀봇, 스달 송금해줘!' 합치면 충분히 보팅봇도 만들 수 있어요~
author | hellocrypto |
---|---|
permlink | re-luckystrikes-re-hellocrypto-1-20180504t070414052z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 07:03:42 |
last_update | 2018-05-04 07:03:42 |
depth | 2 |
children | 0 |
last_payout | 2018-05-11 07:03:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 2,674,818,402,398 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,785,015 |
net_rshares | 0 |
very entertaining your post brother I like the post with good text and nutrient content for readers ☆☆☆☆☆ @hellocrypto
author | luistoledo |
---|---|
permlink | re-hellocrypto-1-20180509t060623631z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"users":["hellocrypto"],"app":"steemit/0.1"} |
created | 2018-05-09 06:06:27 |
last_update | 2018-05-09 06:06:27 |
depth | 1 |
children | 0 |
last_payout | 2018-05-16 06:06: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 | 118 |
author_reputation | 150,822,517,842 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 54,695,745 |
net_rshares | 0 |
좋은 강의 감사합니다. 얼른 집에 다서 해봐야겠네요. ㅎㅎ 리스팀합니다~^^
author | luminaryhmo |
---|---|
permlink | re-hellocrypto-1-20180504t095329825z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 09:53:33 |
last_update | 2018-05-04 09:53:33 |
depth | 1 |
children | 0 |
last_payout | 2018-05-11 09:53:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.043 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | -39,297,396,448,004 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,807,456 |
net_rshares | 10,649,091,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hellocrypto | 0 | 10,649,091,463 | 3% |
다음 편이 시급합니다! 스팀봇의 댓글과 보팅으로 짱짱맨 따라하기가 가능해지는 날이 오다니...ㅠㅠ
author | onehand |
---|---|
permlink | re-hellocrypto-1-20180504t080157240z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-04 08:02:00 |
last_update | 2018-05-04 08:02:00 |
depth | 1 |
children | 0 |
last_payout | 2018-05-11 08:02:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.043 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 24,720,193,529,915 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,792,347 |
net_rshares | 10,649,091,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hellocrypto | 0 | 10,649,091,463 | 3% |
어이쿠 지금 오셨군요 천천히 집가서 주말동안 연구해봐야겠습니다...ㅎㅎ
author | qlfxkdla |
---|---|
permlink | re-hellocrypto-1-20180504t070943896z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-04 07:09:48 |
last_update | 2018-05-04 07:09:48 |
depth | 1 |
children | 1 |
last_payout | 2018-05-11 07:09:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.058 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 710,249,331,413 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,785,800 |
net_rshares | 10,649,091,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hellocrypto | 0 | 10,649,091,463 | 3% |
어익후 바로 찾아오셨군요 @qlfxkdla님 :) 넵 천천히 읽어보시구 그래도 막히는 부분 있으면 댓글로 문의 남겨주세요~
author | hellocrypto |
---|---|
permlink | re-qlfxkdla-re-hellocrypto-1-20180504t071523944z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"users":["qlfxkdla"],"app":"steemit/0.1"} |
created | 2018-05-04 07:14:57 |
last_update | 2018-05-04 07:14:57 |
depth | 2 |
children | 0 |
last_payout | 2018-05-11 07:14:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 2,674,818,402,398 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,786,499 |
net_rshares | 0 |
저도 스팀봇을 활용하는 날이 왔으면~!
author | smigol |
---|---|
permlink | re-hellocrypto-1-20180505t001743228z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"app":"steemit/0.1"} |
created | 2018-05-05 00:17:42 |
last_update | 2018-05-05 00:17:42 |
depth | 1 |
children | 0 |
last_payout | 2018-05-12 00:17:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 22,802,589,980,779 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,926,950 |
net_rshares | 0 |
Congratulations @hellocrypto! You received a personal award! <table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@hellocrypto/birthday1.png</td><td>1 Year on Steemit</td></tr></table> <sub>_[Click here to view your Board](https://steemitboard.com/@hellocrypto)_</sub> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-hellocrypto-20190107t021202000z |
category | kr-dev |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-01-07 02:12:03 |
last_update | 2019-01-07 02:12:03 |
depth | 1 |
children | 0 |
last_payout | 2019-01-14 02:12: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 | 502 |
author_reputation | 38,975,615,169,260 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,992,628 |
net_rshares | 0 |
Congratulations @hellocrypto! You received a personal award! <table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@hellocrypto/birthday2.png</td><td>Happy Birthday! - You are on the Steem blockchain for 2 years!</td></tr></table> <sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@hellocrypto) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=hellocrypto)_</sub> ###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
author | steemitboard |
---|---|
permlink | steemitboard-notify-hellocrypto-20200107t032857000z |
category | kr-dev |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2020-01-07 03:28:57 |
last_update | 2020-01-07 03:28:57 |
depth | 1 |
children | 0 |
last_payout | 2020-01-14 03:28:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 632 |
author_reputation | 38,975,615,169,260 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,120,935 |
net_rshares | 0 |
일교차가 큰 날씨에요 감기조심하세요^^ 오늘은 바람이 많이 부네요^^
author | virus707 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-hellocrypto-1-1525476612267t4ec30610-01f7-4cd4-9ed2-1eb333279765uid | ||||||
category | kr-dev | ||||||
json_metadata | {"tags":["support"],"app":"null/null","format":"markdown"} | ||||||
created | 2018-05-04 23:30:15 | ||||||
last_update | 2018-05-04 23:30:15 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-05-11 23:30: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 | 40 | ||||||
author_reputation | 557,563,606,581,756 | ||||||
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 53,922,100 | ||||||
net_rshares | 0 |
신기하네요 ㅎㅎ 화이팅!!
author | wooboo |
---|---|
permlink | re-hellocrypto-1-20180504t081714438z |
category | kr-dev |
json_metadata | {"tags":["kr-dev"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-04 08:17:18 |
last_update | 2018-05-04 08:17:18 |
depth | 1 |
children | 0 |
last_payout | 2018-05-11 08:17:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.043 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 31,166,814,830,372 |
root_title | "[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,794,378 |
net_rshares | 10,649,091,463 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hellocrypto | 0 | 10,649,091,463 | 3% |