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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tweepy-self
3
- Version: 1.2.0
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.0.0)
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.0"
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.0.0"
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 = Field(default=None, pattern=r"^[a-f0-9]{12}$")
31
- backup_code: str | None = Field(default=None, pattern=r"^[A-Z0-9]{16}$")
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