Modify methods in 2.0 #78

Closed
opened 2012-04-10 10:27:22 -07:00 by michaelhelmick · 0 comments
michaelhelmick commented 2012-04-10 10:27:22 -07:00 (Migrated from github.com)

Methods to modify:

def isListMember(self, list_id, id, username, version=1):

I think we should give the user parameters that Twitter provides for their calls (https://dev.twitter.com/docs/api/1/get/lists/members/show)

so def isListMember should now read

def isListMember(self, list_id=None, slug=None, user_id=None, screen_name=None, version=1, **kwargs):
Methods to modify: ``` python def isListMember(self, list_id, id, username, version=1): ``` I think we should give the user parameters that Twitter provides for their calls (https://dev.twitter.com/docs/api/1/get/lists/members/show) so def isListMember should now read ``` python def isListMember(self, list_id=None, slug=None, user_id=None, screen_name=None, version=1, **kwargs): ```
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: code/twython#78
No description provided.