Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 558 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 558 Bytes

ilcli

ilcli (I like commmand line interfaces) is a Python library for creating CLIs easily and includes cool features.

import ilcli

class mycli(ilcli.Command):
    """
    This is my cool cli
    """
    def _run(self):
        self.out('Running!')

exit(mycli().run())

Contribute!

Help us to improve the compliance-tool. See CONTRIBUTING.md

Installation

pip install ilcli