Как понять на какую кнопку нажал юзер (inline bot pyTelegramAPI)?
Есть бот который парсит ссылку и имя по запросу в инлайн: 
Как понять на какую из них нажал пользователь(чтоб потом скачать этот трек)? Вот код:
@bot.inline_handler(func=lambda query: len(query.query) > 0)
def query_text(inline_query):
bot.answer_inline_query(
inline_query.id,
get_iq_articles(inline_query.query) #, inline_query
)
def get_iq_articles(query):
try:
# type_of_search, req = query.split(' ')[0], query.split(' ')[1:]
results = sp.search(q=query, type=['track', 'artist'], limit=10)
info = []
for item in results['tracks']['items']:
info.append(get_information(item))
result = []
cnt = 0
desc_msg = 'Tap to get link to track'
out_msg = 'Listen track on Spotify: {}\nName of track: *{}*\nArtist: *{}*\nLink to artist: {}\nLink to album: {}'
for item in info:
title = item['artist']['name'] + ' - ' + item['name']
result.append(
telebot.types.InlineQueryResultArticle(id=str(cnt),
title=title,
description=desc_msg,
input_message_content=telebot.types.InputTextMessageContent(
out_msg.format(
item['to_listen'],
item['name'],
item['artist']['name'],
item['artist']['link'],
item['album_url']
),
parse_mode='Markdown',
),
thumb_url=item['album_img']
))
cnt += 1
return result