Metadata-Version: 2.1
Name: more_termcolor
Version: 1.0.8
Summary: All colors, with support for nested colors, convenience methods and full original termcolor compatability.
Home-page: https://github.com/giladbarnea/more_termcolor
Author: Gilad Barnea
Author-email: giladbrn@gmail.com
License: MIT
Description: # more_termcolor
        
        - Pass any number of colors, color-codes, or attributes
        - All standard, background, bright, or attribute codes are available (or any combination of them)
        - If found, handles existing colors in the `text` arg as to allow the surrounding, adding or combining of colors dynamically and automatically
        - Convenience methods that expose shortcuts to common values (`bold('foo')`, `yellow('bar')` etc)
        - 100% compatible with the classic `termcolor` lib: anything that works with `termcolor` works the same with `more_termcolor` 
        
        ## Example
        ```python
        from more_termcolor import cprint
        cprint('some text', 'red', 'on bright black', 'bold', 'italic')
        
        # This is also possible:
        from more_termcolor import bold, satred
        bold_text = bold('text')
        fancy = satred(f'this whole string, including this {bold_text} is bright red')
        ```
        
        ## Roadmap
        - Parse complex `color` args, such as:
        ```python
        cprint('foo', 'bold red on bright blue')
        ``` 
        - `pygments`-like support for pseudo HTML tags, e.g.: 
        ```python
        cprint("<black>some text<on white>that examplifies</on white>what's <bold>planned</bold></black>") 
        ```
        - Custom tags:
        ```python
        cprint("<r>some text</r>", r='red') 
        ``` 
        
        
Keywords: termcolor,color,colors,terminal,ansi,formatting
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Terminals
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
