python-twitter
python-twitter copied to clipboard
Possible bug in UsersLookup
UsersLookup method only takes list as argument when user_id is used as an option.
api.UsersLookup(user_id=[integer],include_entities=True,return_json=True) works however api.UsersLookup(user_id=integer,include_entities=True,return_json=True) throws error ;
TypeError: 'int' object is not iterable
This behavior cannot be seen when screen_name is used as an argument, it accepts a string as well as a list as an argument.