New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

twip-api

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

twip-api

Parses the things provided by twip such as donation, follow

1.0.0
PyPI
Maintainers
1

Twip

PyPI version Downloads Downloads

이 라이브러리는 Twip의 공식 라이브러리가 아니며, Twip에서 스트리머들에게 제공하는 Alert Box를 이용해서 도네이션, 팔로우, 호스팅 등의 이벤트에 대해서 간편하게 대응하기 위해서 만들어졌습니다.

📥 설치

pip install twip-api

✍️ Example

from twip import Twip, Donate, Follow, Subscribe, Hosting, Cheer, Sound, Slotmachine

class MyTwip(Twip):
    def on_ready(self):
        print("Twip is ready!")

    def on_donate(self, donate: Donate):
        print(donate)

    def on_follow(self, follow: Follow):
        print(follow)

    def on_subscribe(self, subscribe: Subscribe):
        print(subscribe)

    def on_hosting(self, hosting: Hosting):
        print(hosting)

    def on_cheer(self, cheer: Cheer):
        print(cheer)

    def on_sound(self, sound: Sound):
        print(sound)

if __name__ == "__main__":
    myTwip = MyTwip()
    myTwip.run("your alert box id", "your twip api token")

더 많은 예제는 Github example.py 에서 확인하세요.

🔥 Events

  • on_ready : 트윕과 처음으로 연결되었을 때
  • on_donate : 후원, 영상후원, 슬롯머신(룰렛)
  • on_subscribe : 구독
  • on_hosting : 호스팅
  • on_cheer : 비트
  • on_follow : 팔로우
  • on_sound : 소리

📖 Version

  • 0.0.7 : 사운드 이벤트가 없을 때 발생하던 버그 수정
  • 0.0.8 : api key를 직접 입력 받도록 수정 (#1)
  • 0.0.8.1 : 토큰 크롤링 옵션 추가 (#1)
  • 0.0.8.2 : 함수 이름 관련 버그 수정
  • 0.0.9 : on_ready 이벤트 추가
  • 0.0.9.1 : 크롤링된 토큰이 유효기간이 지난 후에도 계속해서 사용되던 버그 수정
  • 1.0.0 : 타입 힌트 추가 및 구조 개편

🕮 License

기타문의

Keywords

twip

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts