You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 7, 2024. It is now read-only.
When passing UsersLookup screen_name='foouser', screen_name will get turned into 'f,o,o,u,s,e,r'.
It looks like screen_name can be a string by looking at the first part of the following: screen_name (str, optional): A list of screen_names to retrieve extended information.
LookupFriendship does type checking on screen_name to determine if its a tuple, list, User, or str.
When passing UsersLookup
screen_name='foouser', screen_name will get turned into'f,o,o,u,s,e,r'.It looks like
screen_namecan be a string by looking at the first part of the following:screen_name (str, optional): A list of screen_names to retrieve extended information.LookupFriendship does type checking on
screen_nameto determine if its a tuple, list, User, or str.