Get timestamp for the start of a given year and month
(year, month)
| 56 | |
| 57 | |
| 58 | def get_timestamp_start(year, month): |
| 59 | """Get timestamp for the start of a given year and month""" |
| 60 | return int(datetime.datetime(year=year, month=month, day=1, hour=0, minute=0, second=0, microsecond=0).timestamp()) |
| 61 | |
| 62 | |
| 63 | def load_metadata_json2csv_style(category, metadata_file=None): |
no outgoing calls
no test coverage detected