The KISS Twitch bot
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

10 行
196 B

  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)