tweepy-self 1.2.0__tar.gz → 1.2.2__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/PKG-INFO +2 -2
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/pyproject.toml +2 -2
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/twitter/account.py +8 -8
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/README.md +0 -0
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/twitter/__init__.py +0 -0
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/twitter/base/__init__.py +0 -0
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/twitter/base/client.py +0 -0
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/twitter/base/session.py +0 -0
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/twitter/client.py +0 -0
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/twitter/errors.py +0 -0
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/twitter/models.py +0 -0
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/twitter/utils/__init__.py +0 -0
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/twitter/utils/file.py +0 -0
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/twitter/utils/html.py +0 -0
- {tweepy_self-1.2.0 → tweepy_self-1.2.2}/twitter/utils/other.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tweepy-self
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.2
|
4
4
|
Summary: Twitter (selfbot) for Python!
|
5
5
|
Author: Alen
|
6
6
|
Author-email: alen.kimov@gmail.com
|
@@ -9,7 +9,7 @@ Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.11
|
10
10
|
Classifier: Programming Language :: Python :: 3.12
|
11
11
|
Requires-Dist: beautifulsoup4 (>=4,<5)
|
12
|
-
Requires-Dist: better-proxy (==1.
|
12
|
+
Requires-Dist: better-proxy (==1.1.0)
|
13
13
|
Requires-Dist: curl_cffi (==0.6.0b9)
|
14
14
|
Requires-Dist: lxml (>=5,<6)
|
15
15
|
Requires-Dist: pydantic (>=2,<3)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "tweepy-self"
|
3
|
-
version = "1.2.
|
3
|
+
version = "1.2.2"
|
4
4
|
description = "Twitter (selfbot) for Python!"
|
5
5
|
authors = ["Alen <alen.kimov@gmail.com>"]
|
6
6
|
readme = "README.md"
|
@@ -10,7 +10,7 @@ packages = [{include = "twitter"}]
|
|
10
10
|
python = "^3.11"
|
11
11
|
curl_cffi = {version = "0.6.0b9", allow-prereleases = true}
|
12
12
|
python3-capsolver = "^0.9"
|
13
|
-
better-proxy = "1.
|
13
|
+
better-proxy = "1.1.0"
|
14
14
|
beautifulsoup4 = "^4"
|
15
15
|
pydantic = "^2"
|
16
16
|
lxml = "^5"
|
@@ -21,14 +21,14 @@ class AccountStatus(enum.StrEnum):
|
|
21
21
|
|
22
22
|
class Account(BaseModel):
|
23
23
|
auth_token: str | None = Field(default=None, pattern=r"^[a-f0-9]{40}$")
|
24
|
-
ct0: str | None
|
25
|
-
id: int | None
|
26
|
-
name: str | None
|
27
|
-
username: str | None
|
28
|
-
password: str | None
|
29
|
-
email: str | None
|
30
|
-
totp_secret: str | None =
|
31
|
-
backup_code: str | None =
|
24
|
+
ct0: str | None = None
|
25
|
+
id: int | None = None
|
26
|
+
name: str | None = None
|
27
|
+
username: str | None = None
|
28
|
+
password: str | None = None
|
29
|
+
email: str | None = None
|
30
|
+
totp_secret: str | None = None
|
31
|
+
backup_code: str | None = None
|
32
32
|
status: AccountStatus = AccountStatus.UNKNOWN
|
33
33
|
|
34
34
|
@property
|
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
|