Skip to content Skip to sidebar Skip to footer
Showing posts with the label Curses

Callbacks With Python Curses

I have code that looks like this: stdscr.nodelay(1) while True: c = stdscr.getch() if c != … Read more Callbacks With Python Curses

Callbacks With Python Curses

I have code that looks like this: stdscr.nodelay(1) while True: c = stdscr.getch() if c != … Read more Callbacks With Python Curses

Why Won't My Curses Box Draw?

I am toying with curses and I can't get a box to draw on the screen. I created a border which w… Read more Why Won't My Curses Box Draw?

Stdscr.getstr() Ignore Keys, Just String

I just need convert entered text(bytes) to string. But if i on cyrillic press Backspace and some ch… Read more Stdscr.getstr() Ignore Keys, Just String

How To Manage Logging In Curses

I created a simple UI for my application using curses and I also include logs (logging) in my modul… Read more How To Manage Logging In Curses