Цветной вывод текста в Python: Colorama
Библиотека Colorama позволяет управляющим символам ANSI (используются для создания цветного текста в терминале и позиционирования курсора) работать под MS Windows.
Если вы считаете Colorama полезной, не забудьте поблагодарить ее авторов и сделать пожертвование. Спасибо!
Установка
pip install colorama # или conda install -c anaconda coloramaОписание
Управляющие символы ANSI давно используются для создания цветного текста и позиционирования курсора в терминале на Unix и Mac. Colorama делает возможным их использование на платформе Windows, оборачивая stdout, удаляя найденные ANSI-последовательности (которые будут выглядеть как тарабарщина при выводе) и преобразуя их в соответствующие вызовы win32 для изменения состояния командной строки. На других платформах Colorama ничего не меняет.
В результате мы получаем простой кроссплатформенный API для отображения цветного терминального текста из Python, а также следующий приятный побочный эффект: существующие приложения или библиотеки, использующие ANSI-последовательности для создания цветного вывода на Linux или Mac, теперь могут работать и на Windows, просто вызвав colorama.init().
Альтернативный подход заключается в установке ansi.sys на машины с Windows, что обеспечивает одинаковое поведение для всех приложений, работающих с командной строкой. Colorama предназначена для ситуаций, когда это не так просто (например, может быть, у вашего приложения нет программы установки).
Демо-скрипты в репозитории исходного кода библиотеки выводят небольшой цветной текст, используя последовательности ANSI. Сравните их работу в Gnome-terminal и в Windows Command-Prompt, где отображение осуществляется с помощью Colorama:
Эти скриншоты показывают, что в Windows Colorama не поддерживает ANSI ‘dim text’ (тусклый текст); он выглядит так же, как и ‘normal text’.
Использование
Инициализация
Приложения должны инициализировать Colorama с помощью:
Python pip colorama
Python обновление pip
не удаётся скачать командой pip зависимость, пишет в ошибке что версия слабая…но и версию обновить.
Пытаюсь поставить playsound, лезут ошибки и предложение обновить pip. Pip не обновляется. Что делать?
Пытаюсь поставить playsound, лезут ошибки и предложение обновить pip. Pip не обновляется. Что.
Pip install --upgrade pip
python -m pip install --upgrade pip что такое -m?Pip на Python
Новичок. Решил начать изучение Python'а. Установил Atom для комфортного написания кода. Установил.
5416 / 3840 / 1214
Регистрация: 28.10.2013
Сообщений: 9,554
Записей в блоге: 1
Сообщение от DenchikKEK
у меня выдает
Что вам смущает?
1 2 3 4 5 6 7>>> from colorama import Fore, Back, Style >>> from colorama import init >>> init() >>> print( "hello" + Back.GREEN ) hello[42m >>> >>>colorama для консоли, а не для gui.
Это в консоли cmd:
Регистрация: 23.11.2019
Сообщений: 55
Garry Galler, понял, спасибо
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
Помогаю со студенческими работами здесь
Pip в python
Расскажите как пользоваться pip? С какой то там версии pip устанавливается автоматически, у меня.
Python 3.5, pip и virtualenv
Здравствуйте! Поскольку я лишь недавно приступил у изучению Python, то споткнулся о вопрос.Windows не видит Python,pip
При установке Python, я нажимаю флажок на "PATH" Пробовал и PATH отдельно настраивать, ничего не.Python 3 pip добавить модуль
В терминале запускаю команду pip install numpy получаю сообщение что у меня недостаточно прав и.
Python и установка pip install pyTelegramBotAPI
C:\Users\User>pip list Package Version ---------- ------- pip 20.2.3 setuptools.Ошибка при использовании pip в Python 2.7
Приветствую всех. Используется ОС Windows 7 64 professional, Python 2.7.11. При попытке загрузить.
Как работать с pip при нескольких установленных версиях Python
Есть в Windows 10 установленный Python 3.10.5, а также 3.9.5. Захотел в более раннюю версию.Как задать путь для с загрузки модуля для python через terminal в mac os?
Открываю Library/Python.Вижу,что там пусто.Куда тогда скачался модуль?
Как мне скачать модуль в папку с кодом?
Пробовал писать cd ~Desktop/python_ и потом только sudo easy_install colorama ,но все равно скачивает в
Library/Python/2.7/,а по этому пути ничего нет.
- Вопрос задан более трёх лет назад
- 172 просмотра
3 комментария
Простой 3 комментария
colorama 0.1.6
Makes ANSI escape character sequences for producing colored terminal text work under MS Windows.
ANSI escape character sequences have long been used to produce colored terminal text on Unix and Macs. Colorama makes this work on Windows, too. It also provides some shortcuts to help generate ANSI sequences, and works fine in conjunction with any other ANSI sequence generation library, such as Termcolor (http://pypi.python.org/pypi/termcolor.)
This has the upshot of providing a simple cross-platform API for printing colored terminal text from Python, and has the happy side-effect that existing applications or libraries which use ANSI sequences to produce colored output on Linux or Macs can now also work on Windows, simply by calling colorama.init() .
Dependencies
None, other than Python. Tested on Python 2.6.5. Does not yet work on Python 3.
Usage
Initialisation
Applications should initialise Colorama using:
from colorama import init init()
If you are on Windows, the call to ‘’init()’’ will start filtering ANSI escape sequences out of any text sent to stdout or stderr, and will replace them with equivalent Win32 calls.
Calling ‘’init()’’ has no effect on other platforms (unless you use ‘autoreset’, see below) The intention is that applications should call init() unconditionally to make subsequent ANSI output just work on all platforms.
Colored Output
Cross-platform printing of colored text can then be done using Colorama’s constant shorthand for ANSI escape sequences:
from colorama import Fore, Back, Style print Fore.RED + 'some red text' print Back.GREEN + and with a green background' print Style.DIM + 'and in dim text' print + Fore.DEFAULT + Back.DEFAULT + Style.DEFAULT print 'back to normal now'
or simply by manually printing ANSI sequences from your own code:
print '/033[31m' + 'some red text' print '/033[30m' # and reset to default color
or Colorama can be used happily in conjunction with existing ANSI libraries such as Termcolor:
from colorama import init from termcolor import colored # use Colorama to make Termcolor work on Windows too init() # then use Termcolor for all colored text output print colored('Hello, World!', 'green', 'on_red')
Available formatting constants are:
Fore: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, DEFAULT. Back: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, DEFAULT. Style: DIM, NORMAL, BRIGHT, RESET_ALL
Style.RESET_ALL resets foreground, background and brightness. Colorama will perform this reset automatically on program exit.
Autoreset
If you find yourself repeatedly sending reset sequences to turn off color changes at the end of every print, then init(autoreset=True) will automate that:
from colorama import init init(autoreset=True) print Fore.RED + 'some red text' print 'automatically back to default color again'
Without wrapping stdout
Colorama works by wrapping stdout and stderr with proxy objects, that override write() to do their work. Using autoreset (above) will do this wrapping on all platforms, not just Windows.
If these proxy objects wrapping stdout and stderr cause you problems, then this can be disabled using init(wrap=False). You can then access Colorama’s AnsiToWin32 proxy directly. Any attribute access on this object will be forwarded to the stream it wraps, apart from .write(), which on Windows is overridden to first perform the ANSI to Win32 conversion on text:
from colorama import init, AnsiToWin32 init(wrap=False) stream = AnsiToWin32(sys.stderr) print >>stream, Fore.BLUE + 'blue text on stderr'
Status & Known Problems
Just became feature complete. Consider it alpha.
Only tested on WinXP (CMD, Console2) and Ubuntu (gnome-terminal, xterm). Much obliged if anyone can let me know how it fares elsewhere, in particular on Macs.
Some differences between Windows and other terminals exist, which Colorama currently makes no attempt to meddle with:
On Linux terminals, scrolling fills the whole new line with the current background color. On Windows, the new line is filled with the default background color.
On Linux, the foreground color has dim / normal / bright settings, but the background is constant. On Windows, both foreground and background have independent normal / bright settings. Colorama maps ‘bright’ ANSI codes to use a bright background color on Windows, to emulate the missing third level of brightness. This might cause unexpected uglyness for particular existing applications. See screenshots at http://tartley.com/?p=1062.
On Linux terminals, the ‘RESET’ background and foreground colors are potentially distinct from all other colors. On Windows, Back.RESET and Fore.RESET produce an RGB which is indistinguishable from one of the other color entries.
Only the colors and dim/bright subset of ANSI ‘m’ commands are recognised. There are many other ANSI sequences (eg. moving cursor position.) These are currently silently stripped from the output on Windows.
Development
Tests require Michael Foord’s modules ‘unittest2’ and ‘mock’, running tests using:
unit2 discover -p '*_test.py'
Changes
Fix ansi sequences with no params now default to parmlist of [0] Fix flaky behaviour of autoreset and reset_all atexit. Fix stacking of repeated atexit calls - now just called once. Fix ghastly import problems while running tests. demo.py (hg checkout only) now demonstrates autoreset and reset atexit. provide colorama.__version__, used by setup.py Tests defanged so they no longer actually change terminal color when run.
Now works on Ubuntu.
Implemented RESET_ALL on application exit
Works on Windows for foreground color, background color, bright or dim



