12 lines
219 B
Python
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
|