Python
- 12 ответов
- 0 вопросов
5
Вклад в тег
command = input('Введите команду:\n')
command = command.split(' ')[1]
@dp.callback_query_handler(text_contains='action_1')
async def process_callback_button(call):
await bot.send_message(call.message.chat.id, 'Напишите подробно о вашей вакансии. Можно с изображениями.')
@dp.message_handler(content_types=['text'])
async def start_command(message: types.Message, message_has_been_sent: list = []):
if not message_has_been_sent:
text = message.chat.id
await message.answer(
'Вы точно хотите отправить сообщение?',
reply_markup=InlineKeyboardMarkup().add(
InlineKeyboardButton('Назад', callback_data='back'),
InlineKeyboardButton('Отправить', callback_data='forward'),one_time_keyboard=True
)
)
message_has_been_sent.append(1)