Metadata-Version: 1.1
Name: tebless
Version: 1.1.1.dev3
Summary: This library is a collection of widgets that supported from blessed
Home-page: https://github.com/Akhail/Tebless
Author: Michel Betancourt
Author-email: MichelBetancourt23@gmail.com
License: MIT
Download-URL: https://github.com/Akhail/Tebless/tarball/1.0
Description-Content-Type: UNKNOWN
Description: # Tebless
        This library is a collection of widgets that supported from blessed allows to create interfaces in a simple way based on events.
        
        ## Install
        
        ```bash
        pip install tebless
        ```
        
        ## Example
        This will render a label containing the text 'Hello world!', centered horizontally and vertically.
        
        ```python
        from tebless.widgets import Label, Window
        
        @Window.decorator
        def view(window):
            WIDTH, HEIGHT = window.size
            window += Label(
                cordy=HEIGHT / 2 - 1,
                text='Hello world!',
                width=WIDTH,
                align='center'
            )
        
        if __name__ == '__main__':
            view()
        ```
        
        
Keywords: cli
python
widgets
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console :: Curses
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
