from datetime import datetime
current_month = datetime.now().strftime('%m')
current_month_text = datetime.now().strftime('%h')
current_month_text = datetime.now().strftime('%B')
current_day = datetime.now().strftime('%d')
current_day_text = datetime.now().strftime('%a')
current_day_full_text = datetime.now().strftime('%A')
current_weekday_day_of_today = datetime.now().strftime('%w')
current_year_full = datetime.now().strftime('%Y')
current_year_short = datetime.now().strftime('%y')
current_second= datetime.now().strftime('%S')
current_minute = datetime.now().strftime('%M')
current_hour = datetime.now().strftime('%H')
current_hour = datetime.now().strftime('%I')
current_hour_am_pm = datetime.now().strftime('%p')
current_microseconds = datetime.now().strftime('%f')
current_timzone = datetime.now().strftime('%Z')