create account

[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘! by hellocrypto

View this thread on: hive.blogpeakd.comecency.com
· @hellocrypto ·
$23.21
[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!
### 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://cdn.dribbble.com/users/720555/screenshots/4029449/desk.gif)
> 이미지 출처: https://dribbble.com/shots/4029449-Desk
#
#
### 1. 그래도 복습은 간단히!
#
**기본편에서 아래와 같은 내용까지 함께 만들어서 ```blockpost.py```에 저장해뒀었죠?**

그리고 ```keys``` 안에는 프린이 여러분의 키가 들어가고, ```'@야매코딩'``` 대신 본인이 원하는 명령어를 사용했고, 호출되면 무조건 ```"Hi there!"```라고 천편일률적인 스팀봇 댓글을 달았죠.

댓글 부분에서 ```hellocrypto``` 대신 프린이의 유저명을 써야하는거, 잊지 말고요!

![](https://snag.gy/ABh1lX.jpg)
#
```
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였습니다. 필승!**
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
👎  , , , , , , , ,
properties (23)
authorhellocrypto
permlink1
categorykr-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"]}
created2018-05-04 06:59:12
last_update2018-05-04 06:59:12
depth0
children34
last_payout2018-05-11 06:59:12
cashout_time1969-12-31 23:59:59
total_payout_value21.561 HBD
curator_payout_value1.650 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,018
author_reputation2,674,818,402,398
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,784,418
net_rshares4,195,420,283,319
author_curate_reward""
vote details (50)
@ai1love ·
$0.06
와 자동으로 되는군요~
👍  
properties (23)
authorai1love
permlinkre-hellocrypto-1-20180504t071651034z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 07:16:51
last_update2018-05-04 07:16:51
depth1
children2
last_payout2018-05-11 07:16:51
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation37,691,690,905,835
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,786,717
net_rshares10,649,091,463
author_curate_reward""
vote details (1)
@hellocrypto ·
넵ㅎㅎ 기회 되시면 한 번 같이 해요 :)
properties (22)
authorhellocrypto
permlinkre-ai1love-re-hellocrypto-1-20180504t073627561z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 07:36:30
last_update2018-05-04 07:36:30
depth2
children1
last_payout2018-05-11 07:36: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_length23
author_reputation2,674,818,402,398
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,789,169
net_rshares0
@ai1love ·
프로그램은 초보라서... ㅋㅋ
properties (22)
authorai1love
permlinkre-hellocrypto-re-ai1love-re-hellocrypto-1-20180504t074818358z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 07:48:18
last_update2018-05-04 07:48:18
depth3
children0
last_payout2018-05-11 07:48: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_length16
author_reputation37,691,690,905,835
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,790,667
net_rshares0
@akuku ·
따라해봅니다!
늘 감사드립니다~
properties (22)
authorakuku
permlinkre-hellocrypto-1-20180504t215820191z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 21:58:21
last_update2018-05-04 21:58:21
depth1
children0
last_payout2018-05-11 21:58: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_length17
author_reputation7,937,187,456,266
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,911,857
net_rshares0
@ayogom ·
$0.06
왠지 오치님이 생각나는 글이네요 ㅎ
👍  
properties (23)
authorayogom
permlinkre-hellocrypto-1-20180504t070530057z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 07:05:33
last_update2018-05-04 07:05:33
depth1
children5
last_payout2018-05-11 07:05:33
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation74,209,287,963,096
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,785,245
net_rshares10,649,091,463
author_curate_reward""
vote details (1)
@hellocrypto ·
앗 어떤 부분이 그렇게 느껴졌을까요ㅎㅎ 영광(?)입니다!
properties (22)
authorhellocrypto
permlinkre-ayogom-re-hellocrypto-1-20180504t071304520z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 07:12:36
last_update2018-05-04 07:12:36
depth2
children4
last_payout2018-05-11 07:12: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_length31
author_reputation2,674,818,402,398
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,786,176
net_rshares0
@ayogom ·
A. 스팀봇, 똑똑한 댓글을 달아줘! ☜
B. 스팀봇, 업보팅도 해야지!

짱짱맨 태그라든지 달아주실때 봇으로 돌리시는 느낌이라 ㅋㅋ
그러고 보니 먹스팀도 이렇게 만들어지겠네요 ㅎ 이번에도 잘 따라해볼께요
properties (22)
authorayogom
permlinkre-hellocrypto-re-ayogom-re-hellocrypto-1-20180504t071858142z
categorykr-dev
json_metadata{"tags":["kr-dev"],"community":"busy","app":"busy/2.4.0"}
created2018-05-04 07:19:06
last_update2018-05-04 07:19:06
depth3
children3
last_payout2018-05-11 07:19: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_length114
author_reputation74,209,287,963,096
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,786,994
net_rshares0
@bystyx ·
어흑 크립토님 요즘 통 안보이시내요. 무슨일 있으신건 아니시죠? 크립토님 쉬운 설명 덕분에 따라하면서 많이 배웠는데 >.<
properties (22)
authorbystyx
permlinkre-hellocrypto-1-20180530t184155209z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-30 18:41:54
last_update2018-05-30 18:41:54
depth1
children0
last_payout2018-06-06 18:41: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_length68
author_reputation1,802,824,205,880
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,480,514
net_rshares0
@dailypro ·
$0.10
랜덤 댓글 10개 만들어서 봇호출 명령어 성공했습니다. !!!! 
감사합니다.
👍  , ,
properties (23)
authordailypro
permlinkre-hellocrypto-1-20180504t085649707z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 08:56:24
last_update2018-05-04 08:56:24
depth1
children0
last_payout2018-05-11 08:56:24
cashout_time1969-12-31 23:59:59
total_payout_value0.088 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation55,125,641,681,156
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,799,644
net_rshares18,221,504,398
author_curate_reward""
vote details (3)
@dailypro ·
$0.04
위의 예시로 10일가량 매일 돌리고 있습니다. 
저는 댓글 위주로 
댓글이 작성되고 특정단어 찾기를 합니다. 
1. 처음에는 2분만에 하다가.. 갈수록 시간이 많이 걸립니다. 
2. 특정시간, 다시말해 1~2분사이 댓글이 몰리면, 일부댓글은 무시하고 넘어갑니다. 

그래서 자구책으로 
 댓글봇을 5개 정도 한 5분차이로 돌리고 있습니다. 

개선방안으로
 특정단어가 있는 댓글 주소를 저장하고 그 댓글에 대댓글을 달았는지를 체크하기
 20초 룰을 있으니까 다음 댓글은 저장된 목록에서 안달렸던걸 역순으로 차례로 달기 
이런건 어떨까요?
👍  ,
properties (23)
authordailypro
permlinkre-hellocrypto-1-20180504t123801708z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 12:38:03
last_update2018-05-04 12:38:03
depth1
children0
last_payout2018-05-11 12:38:03
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length300
author_reputation55,125,641,681,156
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,830,858
net_rshares7,551,308,053
author_curate_reward""
vote details (2)
@donekim ·
$0.06
어랏 그동안 상병 크립토님의 포스팅을 못 쫓아오고 있었네요 이론 ㅠㅠ 다시 공부모드 돌입하겠습니다! 저같은 코딩 잘알못에게 눈높이를 맞춰주고 이끌어주시는 포스팅 감사합니다 :)ㅎㅎㅎ
👍  
properties (23)
authordonekim
permlinkre-hellocrypto-1-20180504t072216522z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 07:22:18
last_update2018-05-04 07:22:18
depth1
children1
last_payout2018-05-11 07:22:18
cashout_time1969-12-31 23:59:59
total_payout_value0.054 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation676,849,297,940,032
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,787,387
net_rshares10,649,091,463
author_curate_reward""
vote details (1)
@hellocrypto ·
돌아온 프린이 @donekim님 반가워요 :)ㅎㅎ 아닙니다 저야말로 감사합니디 도움이 조금이나마 되면 기쁜걸요! 열공 파이팅!!
properties (22)
authorhellocrypto
permlinkre-donekim-re-hellocrypto-1-20180504t073938594z
categorykr-dev
json_metadata{"tags":["kr-dev"],"users":["donekim"],"app":"steemit/0.1"}
created2018-05-04 07:39:42
last_update2018-05-04 07:39:42
depth2
children0
last_payout2018-05-11 07:39: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_length71
author_reputation2,674,818,402,398
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,789,567
net_rshares0
@fraudo ·
와우 천천히 잘 따라해보도록 하겠습니다 좋은글 감사합니다!
properties (22)
authorfraudo
permlinkre-hellocrypto-1-20180505t062138757z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-05 06:21:42
last_update2018-05-05 06:21:42
depth1
children0
last_payout2018-05-12 06:21: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_length32
author_reputation118,703,626,136
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,967,735
net_rshares0
@ganzi ·
$0.06
혹시 태그별로 댓글다는 보팅봇도 만들 수 있나요?
👍  
properties (23)
authorganzi
permlinkre-hellocrypto-1-20180504t071137071z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 07:11:45
last_update2018-05-04 07:11:45
depth1
children3
last_payout2018-05-11 07:11:45
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation15,443,181,367,710
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,786,069
net_rshares10,649,091,463
author_curate_reward""
vote details (1)
@hellocrypto ·
'태그별로 댓글다는'게 정확히 어떤 식일까요? 원하는 태그가 달려있는 포스팅만 보팅하는건가요? :)
properties (22)
authorhellocrypto
permlinkre-ganzi-re-hellocrypto-1-20180504t071435743z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 07:14:06
last_update2018-05-04 07:14:06
depth2
children2
last_payout2018-05-11 07:14: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_length55
author_reputation2,674,818,402,398
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,786,387
net_rshares0
@ganzi ·
kr-join 태그 최신글에 댓글다는 봇 같은걸 만들고 싶어요 :D
properties (22)
authorganzi
permlinkre-hellocrypto-re-ganzi-re-hellocrypto-1-20180504t071655522z
categorykr-dev
json_metadata{"tags":["kr-dev"],"community":"busy","app":"busy/2.4.0"}
created2018-05-04 07:17:03
last_update2018-05-04 07:17:03
depth3
children1
last_payout2018-05-11 07: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_length37
author_reputation15,443,181,367,710
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,786,743
net_rshares0
@jiwootak ·
$0.06
믿고 따라하는 헬크(?)님 ㅋㅋ
~~아직 따라해보지는 못했다고 한다~~
나도 봇을 만들어보겠어...라는 꿈으로 두근두근하네요 ㅋㅋ
두근두근만...하 ㅜㅜ
👍  
properties (23)
authorjiwootak
permlinkre-hellocrypto-1-20180504t073816315z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 07:38:15
last_update2018-05-04 07:38:15
depth1
children0
last_payout2018-05-11 07:38:15
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation905,292,762,365
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,789,389
net_rshares10,649,091,463
author_curate_reward""
vote details (1)
@krwhale ·
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>!
properties (22)
authorkrwhale
permlinkre-hellocrypto-1-20180507t235404352z
categorykr-dev
json_metadata{"tags":["kr"]}
created2018-05-07 23:54:03
last_update2018-05-07 23:54:03
depth1
children0
last_payout2018-05-14 23:54: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_length336
author_reputation6,819,448,047,761
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,467,072
net_rshares0
@luckystrikes ·
$0.06
이거 따라 하다 보면 보팅 봇도 만들수 있나요? ㅋ
👍  
properties (23)
authorluckystrikes
permlinkre-hellocrypto-1-20180504t070023651z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 07:00:24
last_update2018-05-04 07:00:24
depth1
children1
last_payout2018-05-11 07:00:24
cashout_time1969-12-31 23:59:59
total_payout_value0.054 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation228,107,587,116,606
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,784,609
net_rshares10,649,091,463
author_curate_reward""
vote details (1)
@hellocrypto ·
네 :) 기존에 연재한 기본편 부터 쭉 따라하시면 됩니다. 이번 심화편에서 나올 'B. 스팀봇, 업보팅도 해야지!'랑 'C. 스팀봇, 스달 송금해줘!' 합치면 충분히 보팅봇도 만들 수 있어요~
properties (22)
authorhellocrypto
permlinkre-luckystrikes-re-hellocrypto-1-20180504t070414052z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 07:03:42
last_update2018-05-04 07:03:42
depth2
children0
last_payout2018-05-11 07:03: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_length107
author_reputation2,674,818,402,398
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,785,015
net_rshares0
@luistoledo ·
very entertaining your post brother I like the post with good text and nutrient content for readers ☆☆☆☆☆ @hellocrypto
properties (22)
authorluistoledo
permlinkre-hellocrypto-1-20180509t060623631z
categorykr-dev
json_metadata{"tags":["kr-dev"],"users":["hellocrypto"],"app":"steemit/0.1"}
created2018-05-09 06:06:27
last_update2018-05-09 06:06:27
depth1
children0
last_payout2018-05-16 06:06: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_length118
author_reputation150,822,517,842
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,695,745
net_rshares0
@luminaryhmo ·
$0.06
좋은 강의 감사합니다.
얼른 집에 다서 해봐야겠네요. ㅎㅎ
리스팀합니다~^^
👍  
properties (23)
authorluminaryhmo
permlinkre-hellocrypto-1-20180504t095329825z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 09:53:33
last_update2018-05-04 09:53:33
depth1
children0
last_payout2018-05-11 09:53:33
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_length42
author_reputation-39,297,396,448,004
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,807,456
net_rshares10,649,091,463
author_curate_reward""
vote details (1)
@onehand ·
$0.06
다음 편이 시급합니다!
스팀봇의 댓글과 보팅으로 짱짱맨 따라하기가 가능해지는 날이 오다니...ㅠㅠ
👍  
properties (23)
authoronehand
permlinkre-hellocrypto-1-20180504t080157240z
categorykr-dev
json_metadata{"tags":["kr-dev"],"community":"busy","app":"busy/2.4.0"}
created2018-05-04 08:02:00
last_update2018-05-04 08:02:00
depth1
children0
last_payout2018-05-11 08:02:00
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_length54
author_reputation24,720,193,529,915
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,792,347
net_rshares10,649,091,463
author_curate_reward""
vote details (1)
@qlfxkdla ·
$0.06
어이쿠 지금 오셨군요 천천히 집가서 주말동안 연구해봐야겠습니다...ㅎㅎ
👍  
properties (23)
authorqlfxkdla
permlinkre-hellocrypto-1-20180504t070943896z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-04 07:09:48
last_update2018-05-04 07:09:48
depth1
children1
last_payout2018-05-11 07:09:48
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation710,249,331,413
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,785,800
net_rshares10,649,091,463
author_curate_reward""
vote details (1)
@hellocrypto ·
어익후 바로 찾아오셨군요 @qlfxkdla님 :) 넵 천천히 읽어보시구 그래도 막히는 부분 있으면 댓글로 문의 남겨주세요~
properties (22)
authorhellocrypto
permlinkre-qlfxkdla-re-hellocrypto-1-20180504t071523944z
categorykr-dev
json_metadata{"tags":["kr-dev"],"users":["qlfxkdla"],"app":"steemit/0.1"}
created2018-05-04 07:14:57
last_update2018-05-04 07:14:57
depth2
children0
last_payout2018-05-11 07:14: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_length68
author_reputation2,674,818,402,398
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,786,499
net_rshares0
@smigol ·
저도 스팀봇을 활용하는 날이 왔으면~!
properties (22)
authorsmigol
permlinkre-hellocrypto-1-20180505t001743228z
categorykr-dev
json_metadata{"tags":["kr-dev"],"app":"steemit/0.1"}
created2018-05-05 00:17:42
last_update2018-05-05 00:17:42
depth1
children0
last_payout2018-05-12 00:17: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_length21
author_reputation22,802,589,980,779
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,926,950
net_rshares0
@steemitboard ·
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**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-hellocrypto-20190107t021202000z
categorykr-dev
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-01-07 02:12:03
last_update2019-01-07 02:12:03
depth1
children0
last_payout2019-01-14 02:12: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_length502
author_reputation38,975,615,169,260
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id77,992,628
net_rshares0
@steemitboard ·
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!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-hellocrypto-20200107t032857000z
categorykr-dev
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2020-01-07 03:28:57
last_update2020-01-07 03:28:57
depth1
children0
last_payout2020-01-14 03:28: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_length632
author_reputation38,975,615,169,260
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id94,120,935
net_rshares0
@virus707 ·
일교차가 큰 날씨에요 감기조심하세요^^
오늘은 바람이 많이 부네요^^

properties (22)
authorvirus707
permlinkre-hellocrypto-1-1525476612267t4ec30610-01f7-4cd4-9ed2-1eb333279765uid
categorykr-dev
json_metadata{"tags":["support"],"app":"null/null","format":"markdown"}
created2018-05-04 23:30:15
last_update2018-05-04 23:30:15
depth1
children0
last_payout2018-05-11 23:30: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_length40
author_reputation557,563,606,581,756
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries
0.
accountsteemj
weight250
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,922,100
net_rshares0
@wooboo ·
$0.06
신기하네요 ㅎㅎ 화이팅!!
👍  
properties (23)
authorwooboo
permlinkre-hellocrypto-1-20180504t081714438z
categorykr-dev
json_metadata{"tags":["kr-dev"],"community":"busy","app":"busy/2.4.0"}
created2018-05-04 08:17:18
last_update2018-05-04 08:17:18
depth1
children0
last_payout2018-05-11 08:17:18
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_length14
author_reputation31,166,814,830,372
root_title"[야매코딩] 누구나 야매로 만드는 스팀봇, 강화! - (1) 스팀봇, 똑똑한 댓글을 달아줘!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id53,794,378
net_rshares10,649,091,463
author_curate_reward""
vote details (1)