tweepy-self 1.0.1__tar.gz → 1.1.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/PKG-INFO +1 -1
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/pyproject.toml +1 -1
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/twitter/base/session.py +0 -2
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/README.md +0 -0
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/twitter/__init__.py +0 -0
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/twitter/account.py +0 -0
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/twitter/base/__init__.py +0 -0
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/twitter/base/client.py +0 -0
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/twitter/client.py +0 -0
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/twitter/errors.py +0 -0
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/twitter/models.py +0 -0
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/twitter/utils/__init__.py +0 -0
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/twitter/utils/file.py +0 -0
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/twitter/utils/html.py +0 -0
- {tweepy_self-1.0.1 → tweepy_self-1.1.0}/twitter/utils/other.py +0 -0
@@ -6,7 +6,6 @@ class BaseAsyncSession(requests.AsyncSession):
|
|
6
6
|
"""
|
7
7
|
Базовая асинхронная сессия:
|
8
8
|
- Принимает прокси в формате URL и better-proxy.
|
9
|
-
- Отключает верификацию SSL сертификатов по умолчанию.
|
10
9
|
- По умолчанию устанавливает версию браузера chrome120.
|
11
10
|
- По умолчанию устанавливает user-agent под версию браузера chrome120.
|
12
11
|
"""
|
@@ -34,7 +33,6 @@ class BaseAsyncSession(requests.AsyncSession):
|
|
34
33
|
headers = session_kwargs["headers"] = session_kwargs.get("headers") or {}
|
35
34
|
headers.update(self.DEFAULT_HEADERS)
|
36
35
|
session_kwargs["impersonate"] = session_kwargs.get("impersonate") or self.DEFAULT_IMPERSONATE
|
37
|
-
session_kwargs["verify"] = session_kwargs.get("verify", False)
|
38
36
|
super().__init__(**session_kwargs)
|
39
37
|
self.proxy = proxy
|
40
38
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|