зеркало из
https://github.com/viginum-datalab/twscrape.git
synced 2025-10-29 13:06:13 +02:00
Added blue and blueType fields into User model (#38)
Co-authored-by: Oleg Sviatchenko <oleg.sviatchenko@sibers.com>
Этот коммит содержится в:
родитель
74594d0b9d
Коммит
95b9a12d47
@ -109,6 +109,8 @@ class User(JSONTrait):
|
||||
profileBannerUrl: str | None = None
|
||||
protected: bool | None = None
|
||||
verified: bool | None = None
|
||||
blue: bool | None = None
|
||||
blueType: str | None = None
|
||||
descriptionLinks: list[TextLink] = field(default_factory=list)
|
||||
_type: str = "snscrape.modules.twitter.User"
|
||||
|
||||
@ -136,6 +138,8 @@ class User(JSONTrait):
|
||||
profileImageUrl=obj["profile_image_url_https"],
|
||||
profileBannerUrl=obj.get("profile_banner_url"),
|
||||
verified=obj.get("verified"),
|
||||
blue=obj.get("is_blue_verified"),
|
||||
blueType=obj.get("verified_type"),
|
||||
protected=obj.get("protected"),
|
||||
descriptionLinks=_parse_links(obj, ["entities.description.urls", "entities.url.urls"]),
|
||||
)
|
||||
|
||||
Загрузка…
x
Ссылка в новой задаче
Block a user