I need to catch the TAB key in Python. For any other keys:
x = self.myscreen.getch() if( x == curses.KEY_DOWN ):
What is the constant for the TAB key? I searched here (at the bottom of the page) and tried every TAB member.
I tried '\ t' too. Is it possible? thank you
source share