10 lines
258 B
Python
10 lines
258 B
Python
|
|
import jwt
|
||
|
|
import inspect
|
||
|
|
|
||
|
|
print(f"jwt module path: {inspect.getfile(jwt)}")
|
||
|
|
print(f"jwt module attributes: {dir(jwt)}")
|
||
|
|
try:
|
||
|
|
print(f"jwt module __version__: {jwt.__version__}")
|
||
|
|
except AttributeError:
|
||
|
|
print("jwt module has no __version__ attribute")
|