Metadata-Version: 2.1
Name: python-cli-ui
Version: 0.7.3
Summary: Build Nice User Interfaces In The Terminal
Home-page: https://github.com/TankerHQ/python-cli-ui
Author: Dimitri Merejkowsky
License: UNKNOWN
Description: python-cli-ui
        =============
        
        Tools for nice user interfaces in the terminal.
        
        .. image:: https://img.shields.io/travis/TankerHQ/python-cli-ui.svg?branch=master
          :target: https://travis-ci.org/TankerHQ/python-cli-ui
        
        .. image:: https://img.shields.io/pypi/v/python-cli-ui.svg
          :target: https://pypi.org/project/python-cli-ui/
        
        .. image:: https://img.shields.io/github/license/TankerHQ/python-cli-ui.svg
          :target: https://github.com/TankerHQ/python-cli-ui/blob/master/LICENSE
        
        
        Documentation
        -------------
        
        
        See `python-cli-ui documentation <https://TankerHQ.github.io/python-cli-ui>`_.
        
        Demo
        ----
        
        
        Watch the `asciinema recording <https://asciinema.org/a/112368>`_.
        
        
        Usage
        -----
        
        .. code-block:: console
        
            $ pip install python-cli-ui
        
        Example:
        
        .. code-block:: python
        
            import ui
        
            # coloring:
            ui.info("This is", ui.red, "red",
                    ui.reset, "and this is", ui.bold, "bold")
        
            # enumerating:
            list_of_things = ["foo", "bar", "baz"]
            for i, thing in enumerate(list_of_things):
                ui.info_count(i, len(list_of_things), thing)
        
            # progress indication:
            ui.info_progress("Done",  5, 20)
            ui.info_progress("Done", 10, 20)
            ui.info_progress("Done", 20, 20)
        
            # reading user input:
            with_sugar = ui.ask_yes_no("With sugar?", default=False)
        
            fruits = ["apple", "orange", "banana"]
            selected_fruit = ui.ask_choice("Choose a fruit", fruits)
        
            #  ... and more!
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Provides-Extra: dev
