Programming/기본 (Baisc)
[트위치][NightBot][Twitch] 채팅 로그 수집
YH.Dream
2023. 1. 30. 22:29
1. 개요
채팅 수집할 일이 생겨서 보던 중 해외에서도 다들 채팅 데이터가 필요하다고 아우성이다.
찾다 보니 공식으로 제공하지 않아 다음과 같이 제작한다 .
2. 채팅
let data = new Array();
$("#DataTables_Table_0 tbody tr").each(function(idx,item) {
data.push($(item).html());
});
for ( let i=0; i< 101; i++ ) {
setTimeout(()=>{
$(".paginate_button.next").click();
$("#DataTables_Table_0 tbody tr").each(function(idx,item) {
data.push($(item).html());
});
},3000*i);
}