This commit is contained in:
2025-05-11 18:58:43 +02:00
parent d5a73f342e
commit f3f3045ebf
48 changed files with 686 additions and 243 deletions

18
helper/get_kakao_list.py Normal file
View File

@@ -0,0 +1,18 @@
from data.special_list import KAKAO_1, KAKAO_3, KAKAO_C, KAKAO_P, KAKAO_W
def get_kakao_id_list(input):
kakao_list = []
if "1" in input:
kakao_list.extend(KAKAO_1)
if "3" in input:
kakao_list.extend(KAKAO_3)
if "c" in input:
kakao_list.extend(KAKAO_C)
if "w" in input:
kakao_list.extend(KAKAO_W)
if "p" in input:
kakao_list.extend(KAKAO_P)
return kakao_list