معرفی شرکت ها


click-shell-2.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

An extension to click that easily turns your click app into a shell utility
ویژگی مقدار
سیستم عامل -
نام فایل click-shell-2.1
نام click-shell
نسخه کتابخانه 2.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Clark Perkins
ایمیل نویسنده r.clark.perkins@gmail.com
آدرس صفحه اصلی https://github.com/clarkperkins/click-shell
آدرس اینترنتی https://pypi.org/project/click-shell/
مجوز BSD
click-shell =========== |TravisCI| |DocsStatus| click-shell is an extension to `click`_ that easily turns your click app into a shell utility. It is built on top of the built in python `cmd`_ module, with modifications to make it work with click. Features -------- * Adds a "shell" mode **with command completion** to any click app * Just a one line change for most click apps Usage ----- Simply replace ``@click.group`` with ``@click_shell.shell`` on the root level command: .. code-block:: python from click_shell import shell # @click.group() # no longer @shell(prompt='my-app > ', intro='Starting my app...') def my_app(): pass @my_app.command() def testcommand(): print('testcommand is running') # more commands if __name__ == '__main__': my_app() When run, you should expect an output like so: .. code-block:: bash $ python my_app.py Starting my app... my-app > testcommand testcommand is running my-app > .. note:: It should be noted that this decorator **only** alters functionality if no arguments are passed on the command line. If you try to run a command directly (like ``python my_app.py the_command`` in the above example), your app will function identically to how it did before. For more advanced usage, check out our docs at https://click-shell.readthedocs.io/ .. _click: http://click.pocoo.org/ .. _cmd: https://docs.python.org/2/library/cmd.html .. |TravisCI| image:: https://travis-ci.com/clarkperkins/click-shell.svg?branch=master :target: https://travis-ci.com/clarkperkins/click-shell :alt: Build status .. |DocsStatus| image:: https://readthedocs.org/projects/click-shell/badge/?version=latest :target: https://click-shell.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status


نیازمندی

مقدار نام
>=6.0 click
- gnureadline
- pyreadline


نحوه نصب


نصب پکیج whl click-shell-2.1:

    pip install click-shell-2.1.whl


نصب پکیج tar.gz click-shell-2.1:

    pip install click-shell-2.1.tar.gz