datetime to epoch code example

Example 1: Unix time stamp epoch converter

# Unix-time to 
df.Timestamp = pd.to_datetime(df.Timestamp, unit='s')

# Resampling to daily frequency
df.index = df.Timestamp
df = df.resample('D').mean()

# Resampling to monthly frequency
df_month = df.resample('M').mean()

# Resampling to annual frequency
df_year = df.resample('A-DEC').mean()

# Resampling to quarterly frequency
df_Q = df.resample('Q-DEC').mean()

Example 2: epoch

Epoch timestamp is a unit of measurement for time. It is the number of
seconds elapsed since the countdown has started. 

Beginning epochs per system:
macOS - January 1, 1904
Windows - January 1, 1601
Unix - January 1, 1970

Example 3: datetime to epoch

>>> datetime.datetime(2012,4,1,0,0).timestamp()
1333234800.0