11 lines
194 B
Python
11 lines
194 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)
|
|
pass
|