파이썬 기반의 치지직(네이버 라이브 스트리밍 서비스)의 비공식 라이브러리 입니다.
채팅 기능을 중점으로 개발하였으며, 다른 기능도 개발될 예정입니다.
An unofficial python library for Chzzk(Naver Live Streaming Service).
This library focused on chat. However, other feature will be developed.
- 채팅
- 사용자 상호 채팅 (
on_chat
<->client.send_chat
) - 사용자 후원 (
on_donation
) - 메시지 상단 고정하기 (
on_pin
,on_unpin
) - 시스템 메시지 (
on_system_message
)
- 사용자 상호 채팅 (
- 로그인 (쿠키 값
NID_AUT
,NID_SES
사용) - 방송 상태 조회
Python 3.10 or higher is required.
# Linux/MacOS
python3 -m pip install chzzkpy
# Windows
py -3 -m pip install chzzkpy
chzzkpy
를 사용한 예제는 Examples에서 확인하실 수 있습니다.
아래는 간단한 예제입니다.
from chzzkpy.chat import ChatClient, ChatMessage, DonationMessage
client = ChatClient("channel_id")
@client.event
async def on_chat(message: ChatMessage):
if message.content == "!안녕":
await client.send_chat("%s님, 안녕하세요!" % message.profile.nickname)
@client.event
async def on_donation(message: DonationMessage):
await client.send_chat("%s님, %d원 후원 감사합니다." % (message.profile.nickname, message.extras.pay_amount))
client.run("NID_AUT", "NID_SES")
chzzkpy
의 기여는 언제든지 환영합니다!
버그 또는 새로운 기능은 Pull Request
로 진행해주세요.