An open API service indexing awesome lists of open source software.

https://github.com/akuli/classtree

A program that prints a tree of classes in a Python module.
https://github.com/akuli/classtree

Last synced: 5 months ago
JSON representation

A program that prints a tree of classes in a Python module.

Awesome Lists containing this project

README

          

# classtree

This is a simple program that prints a tree of classes in a
Python module.

Example:

$ python3.4 classtree.py builtins OSError
OSError
├── BlockingIOError
├── ChildProcessError
├── ConnectionError
│ ├── BrokenPipeError
│ ├── ConnectionAbortedError
│ ├── ConnectionRefusedError
│ └── ConnectionResetError
├── FileExistsError
├── FileNotFoundError
├── InterruptedError
├── IsADirectoryError
├── NotADirectoryError
├── PermissionError
├── ProcessLookupError
└── TimeoutError