Skip to content

Instantly share code, notes, and snippets.

@talfco
Created February 4, 2019 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talfco/7506a7cd5fb57c6d0f54e22c033d92d5 to your computer and use it in GitHub Desktop.
Save talfco/7506a7cd5fb57c6d0f54e22c033d92d5 to your computer and use it in GitHub Desktop.
def __get_government_members(self):
lists = self.__api.lists_all(self.__cfg['twitterListAccount'])
for list in lists:
if list.name == self.__cfg['twitterListName']:
result = []
for item in tweepy.Cursor(self.__api.list_members, list_id=list.id).items():
result.append(item)
return result
return None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment