tweepy-self 1.2.0__py3-none-any.whl → 1.2.2__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
@@ -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,5 +1,5 @@
|
|
1
1
|
twitter/__init__.py,sha256=hdrsdbH_qFhx6ro1ct79qF9SpkgFhxgbYUw9A4RVuec,684
|
2
|
-
twitter/account.py,sha256=
|
2
|
+
twitter/account.py,sha256=jneBaUSQ8dfHjOZFvs0qhVNg6EM6ChFIg6-Ee7DWXXM,3278
|
3
3
|
twitter/base/__init__.py,sha256=x0EHKv4q_FI6xEq2nL4V9s8P6VWr6IaHTqdH9sXB5d8,133
|
4
4
|
twitter/base/client.py,sha256=7byb0Psai-dvg_ww6Y7uyE2hV1pfTU653hFgVdRiqXo,478
|
5
5
|
twitter/base/session.py,sha256=5aMjCytV_cu-uouccJzjMUPIgXZwMElPkqb7FCawmfg,2055
|
@@ -10,6 +10,6 @@ twitter/utils/__init__.py,sha256=pyhQXwTdp0HFwV_UNF4dTyklLD9RtaefA16SrQXeNlg,589
|
|
10
10
|
twitter/utils/file.py,sha256=-6n8I8KWDlntfciJJsfIeOi0gmqoHRIe1ldIx1ynGUE,1118
|
11
11
|
twitter/utils/html.py,sha256=Cs55MxVyZLSKiCEj11ALUrnCW9ADZ4CEDCE0gKESzO0,1627
|
12
12
|
twitter/utils/other.py,sha256=4NaGd2CIJVrDiW17shcrDlJRqFkQNbBSTiiH7kNWcww,559
|
13
|
-
tweepy_self-1.2.
|
14
|
-
tweepy_self-1.2.
|
15
|
-
tweepy_self-1.2.
|
13
|
+
tweepy_self-1.2.2.dist-info/METADATA,sha256=ieG1LmRsrtCY2gogxC5awapf6zzrEQeqLsYy6D3By1g,9139
|
14
|
+
tweepy_self-1.2.2.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
15
|
+
tweepy_self-1.2.2.dist-info/RECORD,,
|
twitter/account.py
CHANGED
@@ -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
|