Python Forum
How do I open the Source code of a library? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: How do I open the Source code of a library? (/thread-34648.html)



How do I open the Source code of a library? - JaneTan - Aug-18-2021

I want to find all the methods available in a Python library. Eg for Win32com.

Thank you


RE: How do I open the Source code of a library? - Larz60+ - Aug-18-2021

the python version of this is pywin32com (if I'm not mistaken)
pypi link is here: https://pypi.org/project/pywin32/
homepage is here: (all source code) here: https://github.com/mhammond/pywin32
if you have git installed, you can get a copy by:
  1. Create a directory to hold package
  2. cd to that directory (command line)
  3. run git clone https://github.com/mhammond/pywin32.git

if not, follow instructions to install git here: https://git-scm.com/downloads
and complete above list