Pythonで今の時間を表示する
タイムゾーンがJSTだったら下記のみでOK
now = datetime.datetime.now()
print(now.strftime("%Y%m%d %H:%M:%S"))
タイムゾーンがJSTじゃなければ下記で
res = requests.get('https://ifconfig.me')
JST = timezone(timedelta(hours=+9), 'JST')
now = datetime.now(JST)
print(now.strftime("%Y%m%d %H:%M:%S"))