-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.py
36 lines (26 loc) · 859 Bytes
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# get token from @BotFather
token = 'Token'
# make an acount in python anywhere
# and place username here
username = 'Username'
group_chat_id = -123456
welcome_message = (
'Hi! welcome to my bot.\n'+
'I will answer your messages via this bot.\n')
group_message = (
'Hi! I can help you to connect members of your channel or your friends.\n'+
'Enjoy using me!')
available_commands_message = (
'available commands are:\n'+
'/start -> to check if bot is still alive.\n'+
'/about -> to contact developer.')
unable_to_reply_message = (
"hmmm... something's wrong.\n"+
"I can't send this message!😐")
bot_is_working_message = (
'Bot is working from now on!😁')
NAME = 'ɴᴀᴍᴇ'
CHAT_ID = 'ᴄʜᴀᴛ ɪᴅ'
MESSAGE_ID = 'ᴍᴇssᴀɢᴇ ɪᴅ'
persistence_filename = 'MSpersistence'
port = 443