so i have a list of names like:
XX1
XX2
XX3
XZ1
XZ2
divided by brands , like:
Atlas
XX1
XX2
XX3
Tediore
XZ1
XZ2
after this I would like to print only the specific weapon of the requested brand chosen by the user:
elif text.startswith('/weapon'):
keyboard = InlineKeyboardMarkup(inline_keyboard =[[InlineKeyboardButton(text='Atlas', callback_data='Atlas')],
[InlineKeyboardButton(text='Tediore', callback_data='tediore')],
[InlineKeyboardButton(text='DAHL', callback_data='DAHL')],])
bot.sendMessage(msg_data['chat_id'],"Select the brand ?",reply_markup = keyboard )
Any ideas?