xxxxxxxxxx
from datetime import datetime
import pytz
# Get the current time in UTC
current_time = datetime.utcnow().replace(tzinfo=pytz.utc)
# Format the current time as a string
current_time_str = current_time.strftime('%Y-%m-%d %H:%M:%S UTC')
print(current_time_str)