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 output two strings with manually inserted color commands using regular `print` after calling `init`. The background color resets fine on Linux but not on Windows. Here is my code....

Hi: I have a problem when using colorama and readline in python3. This is the example code: from readline import set_history_length from colorama import init from colorama import Fore init()...

bug

I'm wrapping `sys.stderr` with an instance of `AnsiToWin32` on Windows platforms. It seems to be working fine for Python 2 (very cool, by the way), but the latest Python 3...

Py 2.7.13 `init(autoreset=True)` I'd like to use different colors in a single line, so what I did was: out = eval("co.p%d('%s') + co.white(' : ')" % (self.p, self.s)) print out...

Migrated from https://code.google.com/p/colorama/issues/detail?id=39 Reported by irmendejong, Dec 7, 2012 I wrote some code to add a few more ansi-styles to colorama. Unfortunately the win32 style for underlined and reversevideo don't...

feature-request

When running on Windows, with `init(convert=True)` I get this. Tested on Windows 8.1 and Windows 10. When used on Linux, I get no colors. ``` Traceback (most recent call last):...

I had reported this as an issue at [pytest](https://github.com/pytest-dev/pytest/issues/1515), but it's probably more likely an issue with `colorama`. The gist of the issue is that when a user has a...

In tornadoweb/tornado#2019, we need a way to tell whether colorama is enabled (analogous to the check a curses-based system would do by looking at the TERM environment variable). There doesn't...

As it is possible to use colorama to set the cursor position, it'd be nice if colorama could intercept the DSR escape (ESC [ 6 n) and send back on...

feature-request