Formatting
This commit is contained in:
parent
1901de893d
commit
7ab29c7533
8
bot.py
8
bot.py
@ -1,5 +1,9 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# coding=utf-8
|
# coding=utf-8
|
||||||
|
"""
|
||||||
|
The bot script
|
||||||
|
Run this, I guess
|
||||||
|
"""
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import json
|
import json
|
||||||
@ -58,7 +62,7 @@ def process_command(command, arguments, chat_id):
|
|||||||
if command == '/start':
|
if command == '/start':
|
||||||
user_init(chat_id)
|
user_init(chat_id)
|
||||||
elif command == '/help':
|
elif command == '/help':
|
||||||
user_help_info(chat_id, arguments=arguments)
|
user_help_info(chat_id)
|
||||||
elif command == '/add':
|
elif command == '/add':
|
||||||
add_task(Task(" ".join(arguments)), chat_id)
|
add_task(Task(" ".join(arguments)), chat_id)
|
||||||
elif command == '/rm':
|
elif command == '/rm':
|
||||||
@ -358,7 +362,7 @@ def user_init(chat_id):
|
|||||||
BOT.sendMessage(chat_id, "Welcome to todo.txt but as a Telegram bot. Run"
|
BOT.sendMessage(chat_id, "Welcome to todo.txt but as a Telegram bot. Run"
|
||||||
" /help to get started")
|
" /help to get started")
|
||||||
|
|
||||||
def user_help_info(chat_id, arguments=None):
|
def user_help_info(chat_id):
|
||||||
"""
|
"""
|
||||||
The help text sent to user
|
The help text sent to user
|
||||||
:param chat_id: Telegram chat_id
|
:param chat_id: Telegram chat_id
|
||||||
|
Reference in New Issue
Block a user