colorama icon indicating copy to clipboard operation
colorama copied to clipboard

Simple cross-platform colored terminal text in Python

Results 122 colorama issues
Sort by recently updated
recently updated
newest added

**Test Command**: I am adding support for aarch64 in Colorama and executing the tests as per the Travis-ci script, below is the command I am using: ```python -m unittest discover...

See https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda for details as is already implemented by some major terminals.

Does colorama.py have italic style? Does it considered to be added?

The README mentions moving the cursor around in `demo06.py`, but this is with manually generated ANSI codes and doesn't make use of `ansi.Cursor`. I only realized `ansi.Cursor` existed because it...

Hey, I'm a new user with Python and Colorama and working out a simple Terminal app using Visual Studio Code and Python 3.8.0 at Windows 10 environment. I seem to...

I have to use ```Python logging.info(Fore.GREEN + f"Protocol received: {protocol}" + Style.RESET_ALL) ``` because ```Python init(autoreset=True) ... logging.info(Fore.GREEN + f"Protocol received: {protocol}") ``` does not actually auto reset

I was installing the awscli pip package on a fresh Ubuntu install. And the install failed on your package. Collecting colorama=0.2.5 (from awscli) Downloading colorama-0.3.3.tar.gz Complete output from command python...

Hi. I have been using colorama since quite a while, and I see it automatically disable itself when executed outside of a terminal, to avoid unwanted ascii string everywhere on...

Since my update of Python 3.4 to 3.5 colorama does not recognize a Windows environment if launched from PowerShell. Running colored scripts from cmd.exe does still work. An explicit `init(convert=true)`...

Windows 10 has built-in support for ANSI cmd. The ANSI codes should not be stripped. The module should check for this. I know how to, but I don't know where...