What's Changed
* Add `on_subscription_gift` event to handle subscription gift.
* Add `SubscriptionGiftMessage`, `SubscriptionGiftExtra` data class.
* Add `approve` and `reject` method in `DonationMessage` to response Mission Donation.
py
async def on_donation(donation: chzzkpy.DonationMessage):
if donation.extras.donation_type != "MISSION":
return
await donation.approve()
return
Related Issue/Pull Requests
* [Feat] Implement Mission Pending Result. by gunyu1019 in https://github.com/gunyu1019/chzzkpy/issues/41
* [FR] 구독권 선물 이벤트 추가 by ywj515 in https://github.com/gunyu1019/chzzkpy/issues/60
* [Deploy] Bump to v1.2.0 (Last Minior Update in v1) by gunyu1019 in https://github.com/gunyu1019/chzzkpy/pull/61
Addition Context
This is last minor update in v1 to prepare publish v2. No longer minor update in v1.
Or, patch updates are available, when bugs are found in v1.
I would say to prepare ahead of major updates by applying a development branch.
In v2, a chzzkpy supports offical API ([Chzzk Developer Center](https://developers.chzzk.naver.com/))
bash
$ git clone https://github.com/gunyu1019/chzzkpy.git -b develop
$ cd chzzkpy
$ python3 -m pip install -U . --upgrade
I recommend applying the official API. Here is an example chat bot with offical API.
I have tried to keep the overall differences between v1 and v2 to consider the Developer Experience(DX)
py
from chzzkpy.offical import Client, Donation, Message, UserPermission
client_id = "Prepared Client ID"
client_secret = "Prepared Client Secret"
client = Client(client_id, client_secret)
client.event
async def on_chat(message: Message):
if message.content == "!안녕":
await message.send("%s님, 안녕하세요!" % message.profile.nickname)
client.event
async def on_donation(donation: Donation):
await donation.send("%s님, %d원 후원 감사합니다." % (donation.profile.nickname, donation.pay_amount))
async def main():
authorization_url = client.generate_authorization_token_url(redirect_url="https://localhost", state="abcd12345")
print(f"Please login with this url: {authorization_url}")
code = input("Please input response code: ")
user_client = await client.generate_user_client(code, "abcd12345")
await user_client.connect(UserPermission.all())