I am using the datetime module as follows to get the current time:
datetime.now().strftime('%I:%M:%S %p')
And this gives me the current time but in UTC. How can I get the current time in CST ? Can I do that without using other external libraries or is it easier to use something else?
Any help is appreciated!