Skip to content

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

License

Notifications You must be signed in to change notification settings

Akuli/classtree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages