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

I was attempting to install a library that uses colorama in a Docker container and discovered that this was causing install failures from pip. I was using Python 3.6. I...

0.4.5

Adding Arnon to the list of PyPI metadata authors

0.4.6

closes: #224 detect mintty (MSYS bash, Git bash, Cygwin bash, MinGW bash, etc) based on https://github.com/msys2/MINGW-packages/pull/2675/files

0.4.6

Hi. This change is intended to fix #217. On Linux, special coloration sequences may be initialized with `38` (foreground) and `48` (bakground) ansi codes. [8-bit](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) looks like ``\x1b[38;5;46m`` and [24-bit](https://en.wikipedia.org/wiki/ANSI_escape_code#24-bit)...

requires-thought
0.4.6

Hi, We at Gentoo rely on PyPI tarballs to build docs and run tests, could you include them in future releases so that we don't have to use GitHub's tarballs?

requires-thought
0.4.6

This time I'm properly using [ENABLE_VIRTUAL_TERMINAL_PROCESSING](https://docs.microsoft.com/en-us/windows/console/setconsolemode) which is what really controls this. I enable it when first needed and disable it on `atexit`. Also, instead of checking for Windows versions,...

0.4.6

Includes test and demo plus minor refactoring of ansitowin32

0.4.6

Much like #304, I am also experiencing issues because of the not-quite-true nature of that line from the docs that carltongibson quoted. > On other platforms, calling init() has no...

requires-thought

The following code demonstrates the problem with stdout redirection on Windows. Note that coloring is used on stderr only. Try to run this code with and without stdout redirection and...

```python import colorama from contextlib import contextmanager b = "type: \x1b[39m" @contextmanager def supportTerminalColorsInWindows(): colorama.init() yield colorama.deinit() print(b) with supportTerminalColorsInWindows(): print(b) ``` Running the above code gives an unexpected result...