Created
October 13, 2022 19:23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
from time import gmtime | |
from time import strftime | |
print('Paste in JWT expiration time in seconds since epoch of iat:') | |
print('iat time = ' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(int(input())))) | |
print('Paste in JWT expiration time in seconds since epoch of exp :') | |
print('exp time = ' + time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(int(input())))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment