mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-06 07:14:50 +00:00
Make BaseClient asynchronous and default DOWNLOAD_WORKERS to 4
This commit is contained in:
parent
09dd715556
commit
26e828b956
1 changed files with 7 additions and 8 deletions
|
|
@ -16,9 +16,8 @@
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import asyncio
|
||||||
import re
|
import re
|
||||||
from queue import Queue
|
|
||||||
from threading import Lock
|
|
||||||
|
|
||||||
from ..style import Markdown, HTML
|
from ..style import Markdown, HTML
|
||||||
from ...api.core import Object
|
from ...api.core import Object
|
||||||
|
|
@ -30,7 +29,7 @@ class BaseClient:
|
||||||
BOT_TOKEN_RE = re.compile(r"^\d+:[\w-]+$")
|
BOT_TOKEN_RE = re.compile(r"^\d+:[\w-]+$")
|
||||||
DIALOGS_AT_ONCE = 100
|
DIALOGS_AT_ONCE = 100
|
||||||
UPDATES_WORKERS = 1
|
UPDATES_WORKERS = 1
|
||||||
DOWNLOAD_WORKERS = 1
|
DOWNLOAD_WORKERS = 4
|
||||||
OFFLINE_SLEEP = 300
|
OFFLINE_SLEEP = 300
|
||||||
|
|
||||||
MEDIA_TYPE_ID = {
|
MEDIA_TYPE_ID = {
|
||||||
|
|
@ -65,15 +64,15 @@ class BaseClient:
|
||||||
|
|
||||||
self.session = None
|
self.session = None
|
||||||
self.media_sessions = {}
|
self.media_sessions = {}
|
||||||
self.media_sessions_lock = Lock()
|
self.media_sessions_lock = asyncio.Lock()
|
||||||
|
|
||||||
self.is_started = None
|
self.is_started = None
|
||||||
self.is_idle = None
|
self.is_idle = None
|
||||||
|
|
||||||
self.updates_queue = Queue()
|
self.updates_queue = asyncio.Queue()
|
||||||
self.updates_workers_list = []
|
self.updates_worker_task = None
|
||||||
self.download_queue = Queue()
|
self.download_queue = asyncio.Queue()
|
||||||
self.download_workers_list = []
|
self.download_worker_tasks = []
|
||||||
|
|
||||||
self.disconnect_handler = None
|
self.disconnect_handler = None
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue