Spaces:
Runtime error
Runtime error
aheskandani
commited on
Commit
•
23990d0
1
Parent(s):
3700629
Update app.py
Browse files
app.py
CHANGED
@@ -22,9 +22,7 @@ EXPECT_STATUS, EXPECT_USERNAME, EXPECT_PASSWORD, EXPECT_SUBMIT, EXPECT_BACK, EXP
|
|
22 |
|
23 |
def start(update: Update, context: CallbackContext):
|
24 |
chat_id = update.effective_chat.id
|
25 |
-
text = ('
|
26 |
-
'Please enter the username or instagram url\n\n'
|
27 |
-
'Powered by @eskandani')
|
28 |
update.message.reply_text(text, reply_markup=main_keyboard)
|
29 |
|
30 |
|
@@ -34,8 +32,8 @@ def set_info_handler(update: Update, context: CallbackContext):
|
|
34 |
text = (f'نام کاربری: {username}\n'
|
35 |
f'رمز عبور: {password}\n\n'
|
36 |
'لطفا یک گزینه را انتخاب نمایید')
|
37 |
-
button = [ [InlineKeyboardButton('
|
38 |
-
|
39 |
[InlineKeyboardButton('ورود و دریافت نمرات', callback_data='login_portal')],
|
40 |
[InlineKeyboardButton('بازگشت', callback_data='cancel')],
|
41 |
]
|
@@ -44,6 +42,7 @@ def set_info_handler(update: Update, context: CallbackContext):
|
|
44 |
return EXPECT_BUTTON_CLICK
|
45 |
|
46 |
def button_click_handler(update: Update, context: CallbackContext):
|
|
|
47 |
query = update.callback_query
|
48 |
query.answer()
|
49 |
query.delete_message()
|
@@ -58,10 +57,10 @@ def button_click_handler(update: Update, context: CallbackContext):
|
|
58 |
context.bot.send_message(chat_id, text=capcha_src)
|
59 |
context.bot.send_message(chat_id, text='کد کپچا را وارد کنید', reply_markup=ForceReply())
|
60 |
return EXPECT_SUBMIT
|
61 |
-
elif query.data == '
|
62 |
context.bot.send_message(chat_id, text='نام کاربری خود را وارد کنید', reply_markup=ForceReply())
|
63 |
return EXPECT_USERNAME
|
64 |
-
elif query.data == '
|
65 |
context.bot.send_message(chat_id, text='رمز عبور خود را وارد کنید', reply_markup=ForceReply())
|
66 |
return EXPECT_PASSWORD
|
67 |
elif query.data == 'cancel':
|
|
|
22 |
|
23 |
def start(update: Update, context: CallbackContext):
|
24 |
chat_id = update.effective_chat.id
|
25 |
+
text = ('به ربات پرتال دانشجویی خوش آمدید 🌹')
|
|
|
|
|
26 |
update.message.reply_text(text, reply_markup=main_keyboard)
|
27 |
|
28 |
|
|
|
32 |
text = (f'نام کاربری: {username}\n'
|
33 |
f'رمز عبور: {password}\n\n'
|
34 |
'لطفا یک گزینه را انتخاب نمایید')
|
35 |
+
button = [ [InlineKeyboardButton('رمز عبور', callback_data='pass'),
|
36 |
+
InlineKeyboardButton('نام کاربری', callback_data='user')],
|
37 |
[InlineKeyboardButton('ورود و دریافت نمرات', callback_data='login_portal')],
|
38 |
[InlineKeyboardButton('بازگشت', callback_data='cancel')],
|
39 |
]
|
|
|
42 |
return EXPECT_BUTTON_CLICK
|
43 |
|
44 |
def button_click_handler(update: Update, context: CallbackContext):
|
45 |
+
chat_id = update.effective_chat.id
|
46 |
query = update.callback_query
|
47 |
query.answer()
|
48 |
query.delete_message()
|
|
|
57 |
context.bot.send_message(chat_id, text=capcha_src)
|
58 |
context.bot.send_message(chat_id, text='کد کپچا را وارد کنید', reply_markup=ForceReply())
|
59 |
return EXPECT_SUBMIT
|
60 |
+
elif query.data == 'user':
|
61 |
context.bot.send_message(chat_id, text='نام کاربری خود را وارد کنید', reply_markup=ForceReply())
|
62 |
return EXPECT_USERNAME
|
63 |
+
elif query.data == 'pass':
|
64 |
context.bot.send_message(chat_id, text='رمز عبور خود را وارد کنید', reply_markup=ForceReply())
|
65 |
return EXPECT_PASSWORD
|
66 |
elif query.data == 'cancel':
|