Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.

Commit c736c47

Browse files
authored
Merge pull request #534 from alexmullen/api_update/user
Update User model to include missing attributes
2 parents b15697e + bff1109 commit c736c47

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

twitter/models.py

+7
Original file line numberDiff line numberDiff line change
@@ -346,19 +346,24 @@ def __init__(self, **kwargs):
346346
'friends_count': None,
347347
'geo_enabled': None,
348348
'id': None,
349+
'id_str': None,
349350
'lang': None,
350351
'listed_count': None,
351352
'location': None,
352353
'name': None,
353354
'notifications': None,
354355
'profile_background_color': None,
355356
'profile_background_image_url': None,
357+
'profile_background_image_url_https': None,
356358
'profile_background_tile': None,
357359
'profile_banner_url': None,
358360
'profile_image_url': None,
361+
'profile_image_url_https': None,
359362
'profile_link_color': None,
363+
'profile_sidebar_border_color': None,
360364
'profile_sidebar_fill_color': None,
361365
'profile_text_color': None,
366+
'profile_use_background_image': None,
362367
'protected': None,
363368
'screen_name': None,
364369
'status': None,
@@ -367,6 +372,8 @@ def __init__(self, **kwargs):
367372
'url': None,
368373
'utc_offset': None,
369374
'verified': None,
375+
'withheld_in_countries': None,
376+
'withheld_scope': None,
370377
}
371378

372379
for (param, default) in self.param_defaults.items():

0 commit comments

Comments
 (0)