Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

README.md

File metadata and controls

29 lines (20 loc) · 1.08 KB

Introspector

A python package for getting information about a python package such documentation, attributes, methods, method signatures etc.

Prerequisites

Cloning and creating wheel file

  • 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

Installing the wheel file

  • Using pip, run the command to install the package
  • $ pip3 install dist/introspector-0.0.1-py3-none-any.whl

Usage

  • from introspector import dump
  • Call the function dump with the package or module that you want to introspect e.g
  • dump(list)

Author

Odur Joseph