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

Hello, I've search for people getting the same errors has me, but I didn't find any related issues. I'm using PyCharm 2021.1.3 (latest) on Windows 10 and when I use...

import colorama colorama.init() print("\N{WHITE CHESS KNIGHT}") print("\N{WHITE CHESS ROOk}") print(colorama.Back.YELLOW + "\N{WHITE CHESS KNIGHT}" + colorama.Back.RESET) print(colorama.Back.RED + "\N{WHITE CHESS ROOK}" + colorama.Back.RESET) This give following output: ![image](https://user-images.githubusercontent.com/101988934/159760757-a14d8864-81d2-48ab-b836-77ad0ace0727.png) As you...

Hi, When redirecting stdout to a file, the colors for both stdout and stderr are changed in unexpected way. The following snippet: ``` import colorama import sys colorama.init() sys.stderr.write(colorama.Fore.RED +...

System: Windows 7 Shell: cmd.exe Python: 3.5.1 Colorama: Current master (69e4069) For example: ``` python from colorama import Fore, init init() input(Fore.RED + "test") ``` This prints `←[31mtest` instead of...

bug

```bash (base) C:\Users\sterg>conda create -n mat_discover python==3.9.* chem_wasserstein WARNING: A directory already exists at the target location 'C:\Users\sterg\miniconda3\envs\mat_discover' but it is not a conda environment. Continue creating environment (y/[n])? y...

Using colorama with the Windows (10) PowerShell terminal seems to be missing some colors from colorama. Specifically yellow and magenta seems to be missing, yet PS itself uses these colors...

Hi. Some terminals support [24-bit ANSI colors](https://en.wikipedia.org/wiki/ANSI_escape_code#24-bit) (aka "true colors") in the form `ESC[ 38;2;;;`. This code: ```python import colorama colorama.init() print("\x1b[38;2;166;226;46m{}\x1b[0m".format("Foo")) ``` Result on Windows: ![1552843793-screenshot](https://user-images.githubusercontent.com/4193924/54495318-10e91e80-48e3-11e9-8da6-64ec5d13efd3.png) Result on a...

I'm trying to package your module as an rpm package. So I'm using the typical build, install and test cycle used on building packages from non-root account. - "setup.py build"...

While color is great when you want it, it can be annoying when you don't. https://no-color.org/ This manifesto suggests supporting a `NO_COLOR` environment variable that disables all color codes when...

0.4.5

Hello, the detection of Pycharm introduced in #107 / #108 / #163 has some false-positives -- it actually should only determine whether the current script's output is redirected to a...