This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def __extract_columns(self): | |
accounts = self.__get_government_members() | |
labels = range(0,len(accounts)) | |
self.__col_screen_name = [account.screen_name for account in accounts] | |
self.__col_name = [account.name for account in accounts] | |
self.__col_description = [account.description for account in accounts] | |
self.__col_followers_count = [account.followers_count for account in accounts] | |
self.__col_friends_count = [account.friends_count for account in accounts] | |
self.__col_party = self.__check_for_party(accounts) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment