cmd
Stdlib — CLIPython 2.0+Intermediate
Framework for building line-oriented command interpreters
Quick Info
- Documentation
- Official Docs
- Python Version
- 2.0+
- Dependencies
- None — Python Standard Library
- Install
Included with Python
Learn by Difficulty
Quick Example
python
import cmd print(f"Module: cmd") print(f"Contents: {dir(cmd)[:10]}")
The cmd module is part of Python's standard library. Framework for building line-oriented command interpreters.
Try in PlaygroundTags
stdlibclicommand-line