mirror of
https://github.com/TheFunny/TelegramTwitterMediaBot.git
synced 2026-09-23 23:32:05 +00:00
update call concurrently
This commit is contained in:
@@ -2,19 +2,10 @@ import html
|
|||||||
from functools import wraps
|
from functools import wraps
|
||||||
|
|
||||||
from aiohttp import ClientSession
|
from aiohttp import ClientSession
|
||||||
from telegram import Update, Chat, InlineKeyboardMarkup, InlineKeyboardButton, Message
|
from telegram import Chat, InlineKeyboardButton, InlineKeyboardMarkup, Message, Update
|
||||||
from telegram.constants import ParseMode, ChatAction, ChatType
|
from telegram.constants import ChatAction, ChatType, ParseMode
|
||||||
from telegram.ext import (
|
from telegram.ext import (Application, ApplicationBuilder, CallbackQueryHandler, CommandHandler, ContextTypes, Defaults,
|
||||||
Application,
|
InlineQueryHandler, MessageHandler, PicklePersistence, filters)
|
||||||
ApplicationBuilder,
|
|
||||||
ContextTypes,
|
|
||||||
Defaults,
|
|
||||||
filters,
|
|
||||||
InlineQueryHandler,
|
|
||||||
PicklePersistence,
|
|
||||||
MessageHandler,
|
|
||||||
CommandHandler, CallbackQueryHandler
|
|
||||||
)
|
|
||||||
|
|
||||||
import common
|
import common
|
||||||
from tweet import TGTweet
|
from tweet import TGTweet
|
||||||
@@ -226,6 +217,7 @@ def main():
|
|||||||
.post_init(post_init)
|
.post_init(post_init)
|
||||||
.post_stop(post_stop)
|
.post_stop(post_stop)
|
||||||
.post_shutdown(post_shutdown)
|
.post_shutdown(post_shutdown)
|
||||||
|
.concurrent_updates(True)
|
||||||
.build()
|
.build()
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -233,8 +225,8 @@ def main():
|
|||||||
user_filter.add_user_ids(common.ADMIN)
|
user_filter.add_user_ids(common.ADMIN)
|
||||||
|
|
||||||
handlers = [
|
handlers = [
|
||||||
MessageHandler(filters.Regex(common.x_url_regex) & filters.ChatType.PRIVATE, url_media),
|
|
||||||
InlineQueryHandler(inline_query, common.x_url_regex),
|
InlineQueryHandler(inline_query, common.x_url_regex),
|
||||||
|
MessageHandler(filters.Regex(common.x_url_regex) & filters.ChatType.PRIVATE, url_media),
|
||||||
CommandHandler("set_forward_channel", cmd_set_forward_channel),
|
CommandHandler("set_forward_channel", cmd_set_forward_channel),
|
||||||
CommandHandler("remove_forward_channel", cmd_remove_forward_channel),
|
CommandHandler("remove_forward_channel", cmd_remove_forward_channel),
|
||||||
CommandHandler("edit_before_forward", cmd_edit_before_forward),
|
CommandHandler("edit_before_forward", cmd_edit_before_forward),
|
||||||
|
|||||||
Reference in New Issue
Block a user