Files
discord_bot/lib/YandexPlayer.py
2024-03-09 18:54:26 +03:00

12 lines
219 B
Python

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