A python package for getting information about a python package such documentation, attributes, methods, method signatures etc.
Git
Guide to Git Installing GitPython 3
Pip
Guide to installing pip
- Clone this repository's develop branch
using this command
git clone -b develop https://github.com/ja-odur/introspector.git
- Change into the newly cloned repo through
cd instrospector
- Create the wheel file with
python3 setup.py bdist_wheel
- Using pip, run the command to install the package
- $
pip3 install dist/introspector-0.0.1-py3-none-any.whl
from introspector import dump
- Call the function
dump
with the package or module that you want to introspect e.g
dump(list)
Odur Joseph