Python Forum

Full Version: How do I open the Source code of a library?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to find all the methods available in a Python library. Eg for Win32com.

Thank you
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