blessings icon indicating copy to clipboard operation
blessings copied to clipboard

A thin, practical wrapper around terminal capabilities in Python

Results 35 blessings issues
Sort by recently updated
recently updated
newest added

If the tests are run with stdout redirected to something that isn't a tty (for example to a log file) there are some failures: ``` $ python setup.py test |...

bug

Looks like `blessings` is one of the last few modules which is still using `nose` which should not be used with python 3.x https://nose.readthedocs.io/en/latest/ Any plans to migrate to pytest...

Also covered 256 colour codes with test. Not 100% sure if those test are any good though.

Apparently blessings does not have type hinting, yet: ``` error: Skipping analyzing 'blessings': found module but no type hints or library stubs note: See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports ```

When in non styling mode one can use term.color(i) + "string" + term.normal but not term.color(i)("string") Thanks! Guido

So I'm currently working on a project with blessed view, and was wondering if there is a way to print the data as columns next to each other? I'm trying...

Is this an abandoned project or is it still maintained? /Johnny

Sorry for raising a bug for that but I would like to know what is the maintenance status of the library. I started using it recently on a side-project and...

It's really freaking hard to read the state of the keyboard without calling `curses.initscr().getch()`. Let's make it easier on people; I've had 2 requests about it. Here's one implementation, from...

enhancement

This affects `move_x`, `move_y`, and the `location` context manager (when only one of x or y is specified). The cause appears to be Screen's terminfo, which does not seem to...

bug