methods that I edited/found useful and want to keep for easy reusing
import Engch as ec;
Welcome to Engch's Pandas Library
engch_pandas_lib = ec.Pandaslibrary()
df = pd.read_csv(file_name)
df_header = ec.get_csv_header_only("file_name")
current_date = datetime.date(int year, int month, int day)
last_day_of_the_month = ec.last_day_of_month(current_date)
dt_dates = ec.df_sort_by_month(df, "column header named: date")
simplified_df = ec.simplified_by_end_of_month(df, dt_dates)
Welcome to Engch's Timer Library
engch_timer_lib = ec.TimerLibrary()
start = engch_timer_lib.time()
# toDo codes..
end = engch_timer_lib.time()
print(end - start)
start = engch_timer_lib.time_ns()
# toDo codes..
end = engch_timer_lib.time_ns()
print(end - start)
engch_timer_lib.sleep(int seconds)
Welcome to Engch's Library
import Engch as ec;
engch_lib = ec.Library()