Answers for "find path to python library"

1

how to find the path of a python module

import imp
print("Location of Python os module sources:")
print(imp.find_module('os'))
print("nLocation of Python time module sources:")
print(imp.find_module('time'))
Posted by: Guest on June-25-2021
0

get the path of a module in python

import inspect
inspect.getfile(<mdule name>)
Posted by: Guest on October-14-2021

Python Answers by Framework

Browse Popular Code Answers by Language