You are viewing a single comment's thread from:RE: [야매코딩] 누구나 만들어보는 스팀봇! - (5) 예제로 따라하는 스팀봇 뚝딱View the full contextView the direct parentdailypro (75)in #kr-dev • 7 years ago python 으로는 어떻게 해야 할까요? 변환 부탁 드려도 될까요?
포스트 쓰신문의 명령문이 파이썬이에요.
그대로 하시면 돼요.
위의 포스트 글에서 if문 있잖아요 그게 특정 문자열 찾는 명령이에요.
전 그냥 자바스크립트에서 한개의 게시물에서만 특정 문자열을 찾는 방식을 한 것이고요.
위 포스트 방식으로 코딩 하시면 돼요.
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("뀨")
이렇게 넣으면 되는거야?