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
# get existing queries results | |
users = get_query_result(132) # this one has {id, name} | |
events_by_users = get_query_result(131) # this one has {user_id, events count} | |
# actual merging. can be replaced with helper function and/or some Pandas code | |
events_dict = {} | |
for row in events_by_users['rows']: | |
events_dict[row['user_id']] = row['count'] | |
for row in users['rows']: |
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
List::MoreUtils: | |
Moose - zip, first_index, uniq, natatime | |
MooseX::ClassAttribute - uniq | |
Dist::Zilla - uniq, any - patched -- follow up. | |
MooseX::Runnable - uniq | |
perlfaq - uniq | |
[@Git] - uniq, first_index - https://github.com/madsen/dist-zilla-plugin-git/pull/23 | |
Pod::Weaver::Section::Contributors - uniq | |
MooseX::Declare - uniq | |
Email::Sender - uniq |