Files
discord_bot/lib/YandexPlayer.py
2024-03-09 11:47:06 +03:00

11 lines
200 B
Python

import os
from yandex_music import Client
client = Client(os.getenv('Yandex_Token')).init()
def _search(self, _str: str, _type: str):
search_result = client.search(_str, type_=_type)
pass