Python: How to find Python module file path
www.geekpills.com › automation › pythonJan 09, 2020 · So in this post we will see How to find Python Module file path. Ways to check Module file path To know module file path, there are many ways do it. let’s see some of them. >>> import yaml >>> print (yaml.__file__) /data/conda/lib/python3.7/site-packages/yaml/__init__.py Like in above way, we can easily know module path and read it further details