Python is a programming language that lets you work quickly and integrate systems more effectively
the Python Package Index is a repository of software for the Python programming language.
[The Python Standard Library][https://docs.python.org/3/library/]
inspect: Inspect live objects
from foo import Bar
inspect.getmembers(Bar)
inspect.getclasstree(Bar)
inspect.signature(Bar.__init__)
inspect.getargspec(Bar.__init__)