You are viewing a single comment's thread from:
RE: [야매코딩] 누구나 만들어보는 스팀봇! - (5) 예제로 따라하는 스팀봇 뚝딱
while True:
try:
stream = map(Post, b.stream(filter_by=['comment']))
for post in stream:
steem.api.getContent('hellocrypto', '5', function (err, result) {
var str = result['body'];
if(str.match('@야매코딩')) console.log("찾았다");
});
except:
print("뀨")
이렇게 넣으면 되는거야?