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.
- Host: GitHub
- URL: https://github.com/akuli/classtree
- Owner: Akuli
- License: mit
- Created: 2016-10-28T13:17:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-28T10:04:04.000Z (about 9 years ago)
- Last Synced: 2025-04-14T09:50:47.349Z (9 months ago)
- Language: Python
- Size: 2.93 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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