in osci/datalake/local/landing.py [0:0]
def get_daily_push_events_commits(self, date: datetime):
log.info(f'Read push events commits for {date.strftime("%Y-%m-%d")}')
df = pd.DataFrame()
for hour in range(24):
date = date.replace(hour=hour)
hour_df = self.get_hour_push_events_commits(date=date)
if hour_df is not None:
df = pd.concat([df, hour_df])
return df