tweepy-self 1.2.1__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.1 → tweepy_self-1.2.2}/PKG-INFO +1 -1
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/pyproject.toml +1 -1
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/twitter/account.py +8 -8
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/README.md +0 -0
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/twitter/__init__.py +0 -0
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/twitter/base/__init__.py +0 -0
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/twitter/base/client.py +0 -0
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/twitter/base/session.py +0 -0
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/twitter/client.py +0 -0
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/twitter/errors.py +0 -0
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/twitter/models.py +0 -0
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/twitter/utils/__init__.py +0 -0
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/twitter/utils/file.py +0 -0
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/twitter/utils/html.py +0 -0
- {tweepy_self-1.2.1 → tweepy_self-1.2.2}/twitter/utils/other.py +0 -0
@@ -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
|