Introduction: Command-line interface (CLI) is a text-based interface used for interacting with a computer system. It is used by system administrators and developers to interact with the operating system or to run commands. Python has a module called cmd that provides support for line-oriented command interpreters. In this article, we will explore the cmd module in Python and how it can be used to create a CLI.
What is cmd module in Python? The cmd module in Python is a built-in module that provides a framework for building line-oriented command interpreters. It makes it easy to build CLI applications in Python by providing a base class called Cmd that can be extended to create a command interpreter.
The Cmd class has several methods that can be overridden to customize the behavior of the interpreter. These methods include preloop, postloop, precmd, postcmd, default, and emptyline.
Let’s create a simple command-line interface using the cmd module in Python.
import cmd
class MyCLI(cmd.Cmd):
prompt = 'mycli> '
def do_hello(self, arg):
print('Hello, world!')
def do_quit(self, arg):
return True
if __name__ == '__main__':
MyCLI().cmdloop()
When you run the code, it will start a command-line interface with the prompt “mycli>”. You can enter the command “hello” to see the output “Hello, world!” on the command line. Similarly, if you enter the command “quit”, the program will exit the command-line interface.
Conclusion: In this article, we have explored the cmd module in Python and how it can be used to create a CLI. The cmd module provides a simple and easy-to-use framework for building command interpreters in Python. By extending the Cmd class and implementing the required methods, developers can create powerful and customizable CLI applications.