Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

climenu

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

climenu

Command-line menu system

  • 1.8.0
  • PyPI
  • Socket score

Maintainers
1

.. image:: https://travis-ci.org/mtik00/pyclimenu.svg?branch=master :target: https://travis-ci.org/mtik00/pyclimenu

.. image:: https://coveralls.io/repos/github/mtik00/pyclimenu/badge.svg?branch=master :target: https://coveralls.io/github/mtik00/pyclimenu?branch=master

.. image:: https://img.shields.io/pypi/v/climenu.svg :target: https://pypi.python.org/pypi/climenu

climenu

This project is used to create simple command-line interfaces using text-based menus.

The interface loosely mimics click <http://click.pocoo.org>_ (the use of decorators to define the interface).

Documentation is hosted on ReadTheDocs <http://pyclimenu.rtfd.io/>; releases are hosted on pypi <https://pypi.python.org/pypi/climenu>.


Example:

.. code-block:: python

from __future__ import print_function
import climenu

@climenu.menu()
def build_release():
    '''Build release'''
    print("built the release")

@climenu.menu()
def build_package():
    '''Build the package'''
    print("built the package")

if __name__ == '__main__':
    climenu.run()

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc