Skip to content

Instantly share code, notes, and snippets.

@NicholasShatokhin
Created May 27, 2013 15:00
Show Gist options
  • Save NicholasShatokhin/5657522 to your computer and use it in GitHub Desktop.
Save NicholasShatokhin/5657522 to your computer and use it in GitHub Desktop.
@gen.engine
def get_user_data(self, sn, snid, fast_withdrawals):
end_timestamp = time.time()
start_timestamp = end_timestamp - CONFIG.LOYALITY_LEVELS.PERIOD
active_apps_response, total_payments_response, payments_for_period_response, withdrawals_response = yield [
gen.Task(self.http_client.fetch, self.__get_active_apps_url(sn, snid)), gen.Task(self.http_client.fetch, self.__get_total_payments_url(sn, snid)),
gen.Task(self.http_client.fetch, self.__get_payments_sum_for_period_url(sn, snid, start_timestamp, end_timestamp)),
gen.Task(self.http_client.fetch, self.__get_total_withdrawals_url(sn, snid, fast_withdrawals))
]
active_apps = self.__active_apps_handler(active_apps_response)
total_payments = self.__get_total_payments_handler(total_payments_response)
payments_for_period = self.__payments_sum_for_period_handler(payments_for_period_response)
withdrawals = self.__get_total_withdrawals_handler(withdrawals_response)
return (active_apps, total_payments, payments_for_period, withdrawals)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment