The KISS Twitch bot
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

utils.py 196 B

123456789
  1. #!/usr/bin/env python3
  2. def parse_tags(tags_str: str) -> {str: str}:
  3. tags_list = []
  4. for tag in tags_str.split(";"):
  5. tags_list.append((tag.split("=")))
  6. return dict(tags_list)