Python curses.tigetnum() Examples
The following are 30
code examples of curses.tigetnum().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
curses
, or try the search function
.
Example #1
Source File: colorizer.py From ec2-api with Apache License 2.0 | 9 votes |
def supported(cls, stream=sys.stdout): """ A class method that returns True if the current platform supports coloring terminal output using this method. Returns False otherwise. """ if not stream.isatty(): return False # auto color only on TTYs try: import curses except ImportError: return False else: try: try: return curses.tigetnum("colors") > 2 except curses.error: curses.setupterm() return curses.tigetnum("colors") > 2 except Exception: # guess false in case of error return False
Example #2
Source File: test_lib.py From ryu with Apache License 2.0 | 6 votes |
def supported(cls, stream=sys.stdout): """ A class method that returns True if the current platform supports coloring terminal output using this method. Returns False otherwise. """ if not stream.isatty(): return False # auto color only on TTYs try: import curses except ImportError: return False else: try: try: return curses.tigetnum("colors") > 2 except curses.error: curses.setupterm() return curses.tigetnum("colors") > 2 except: # guess false in case of error return False
Example #3
Source File: log.py From opendevops with GNU General Public License v3.0 | 6 votes |
def _stderr_supports_color() -> bool: try: if hasattr(sys.stderr, "isatty") and sys.stderr.isatty(): if curses: curses.setupterm() if curses.tigetnum("colors") > 0: return True elif colorama: if sys.stderr is getattr( colorama.initialise, "wrapped_stderr", object() ): return True except Exception: # Very broad exception handling because it's always better to # fall back to non-colored logs than to break at startup. pass return False
Example #4
Source File: arm.py From deen with Apache License 2.0 | 6 votes |
def _syntax_highlighting(self, data): try: from pygments import highlight from pygments.lexers import GasLexer from pygments.formatters import TerminalFormatter, Terminal256Formatter from pygments.styles import get_style_by_name style = get_style_by_name('colorful') import curses curses.setupterm() if curses.tigetnum('colors') >= 256: FORMATTER = Terminal256Formatter(style=style) else: FORMATTER = TerminalFormatter() # When pygments is available, we # can print the disassembled # instructions with syntax # highlighting. data = highlight(data, GasLexer(), FORMATTER) except ImportError: pass finally: data = data.encode() return data
Example #5
Source File: reporter.py From python-for-android with Apache License 2.0 | 6 votes |
def supported(cls, stream=sys.stdout): """ A class method that returns True if the current platform supports coloring terminal output using this method. Returns False otherwise. """ if not stream.isatty(): return False # auto color only on TTYs try: import curses except ImportError: return False else: try: try: return curses.tigetnum("colors") > 2 except curses.error: curses.setupterm() return curses.tigetnum("colors") > 2 except: # guess false in case of error return False
Example #6
Source File: colorizer.py From os-testr with Apache License 2.0 | 6 votes |
def supported(cls, stream=sys.stdout): """Check the current platform supports coloring terminal output A class method that returns True if the current platform supports coloring terminal output using this method. Returns False otherwise. """ if not stream.isatty(): return False # auto color only on TTYs try: import curses except ImportError: return False else: try: try: return curses.tigetnum("colors") > 2 except curses.error: curses.setupterm() return curses.tigetnum("colors") > 2 except Exception: # guess false in case of error return False
Example #7
Source File: exp_utils.py From medicaldetectiontoolkit with Apache License 2.0 | 6 votes |
def supported(cls, stream=sys.stdout): """ A class method that returns True if the current platform supports coloring terminal output using this method. Returns False otherwise. """ if not stream.isatty(): return False # auto color only on TTYs try: import curses except ImportError: return False else: try: try: return curses.tigetnum("colors") > 2 except curses.error: curses.setupterm() return curses.tigetnum("colors") > 2 except: raise # guess false in case of error return False
Example #8
Source File: __init__.py From MARA_Framework with GNU Lesser General Public License v3.0 | 6 votes |
def number_of_colors(self): """Return the number of colors the terminal supports. Common values are 0, 8, 16, 88, and 256. Though the underlying capability returns -1 when there is no color support, we return 0. This lets you test more Pythonically:: if term.number_of_colors: ... We also return 0 if the terminal won't tell us how many colors it supports, which I think is rare. """ # This is actually the only remotely useful numeric capability. We # don't name it after the underlying capability, because we deviate # slightly from its behavior, and we might someday wish to give direct # access to it. colors = tigetnum('colors') # Returns -1 if no color support, -2 if no # such cap. # self.__dict__['colors'] = ret # Cache it. It's not changing. # (Doesn't work.) return colors if colors >= 0 else 0
Example #9
Source File: __init__.py From MARA_Framework with GNU Lesser General Public License v3.0 | 6 votes |
def _height_and_width(self): """Return a tuple of (terminal height, terminal width). Start by trying TIOCGWINSZ (Terminal I/O-Control: Get Window Size), falling back to environment variables (LINES, COLUMNS), and returning (None, None) if those are unavailable or invalid. """ # tigetnum('lines') and tigetnum('cols') update only if we call # setupterm() again. for descriptor in self._init_descriptor, sys.__stdout__: try: return struct.unpack( 'hhhh', ioctl(descriptor, TIOCGWINSZ, '\000' * 8))[0:2] except IOError: # when the output stream or init descriptor is not a tty, such # as when when stdout is piped to another program, fe. tee(1), # these ioctls will raise IOError pass try: return int(environ.get('LINES')), int(environ.get('COLUMNS')) except TypeError: return None, None
Example #10
Source File: colorizer.py From searchlight with Apache License 2.0 | 6 votes |
def supported(stream=sys.stdout): """Method that checks if the current terminal supports coloring. Returns True or False. """ if not stream.isatty(): return False # auto color only on TTYs try: import curses except ImportError: return False else: try: try: return curses.tigetnum("colors") > 2 except curses.error: curses.setupterm() return curses.tigetnum("colors") > 2 except Exception: # guess false in case of error return False
Example #11
Source File: reporter.py From Safejumper-for-Desktop with GNU General Public License v2.0 | 6 votes |
def supported(cls, stream=sys.stdout): """ A class method that returns True if the current platform supports coloring terminal output using this method. Returns False otherwise. """ if not stream.isatty(): return False # auto color only on TTYs try: import curses except ImportError: return False else: try: try: return curses.tigetnum("colors") > 2 except curses.error: curses.setupterm() return curses.tigetnum("colors") > 2 except: # guess false in case of error return False
Example #12
Source File: log.py From teleport with Apache License 2.0 | 6 votes |
def _stderr_supports_color() -> bool: try: if hasattr(sys.stderr, "isatty") and sys.stderr.isatty(): if curses: curses.setupterm() if curses.tigetnum("colors") > 0: return True elif colorama: if sys.stderr is getattr( colorama.initialise, "wrapped_stderr", object() ): return True except Exception: # Very broad exception handling because it's always better to # fall back to non-colored logs than to break at startup. pass return False
Example #13
Source File: log.py From teleport with Apache License 2.0 | 6 votes |
def _stderr_supports_color() -> bool: try: if hasattr(sys.stderr, "isatty") and sys.stderr.isatty(): if curses: curses.setupterm() if curses.tigetnum("colors") > 0: return True elif colorama: if sys.stderr is getattr( colorama.initialise, "wrapped_stderr", object() ): return True except Exception: # Very broad exception handling because it's always better to # fall back to non-colored logs than to break at startup. pass return False
Example #14
Source File: wids.py From wireless-ids with GNU General Public License v2.0 | 6 votes |
def DrawLine(LineChr,LineColor,LineCount): """ Function : Drawing of Line with various character type, color and count Usage of DrawLine: LineChr - Character to use as line LineColor - Color of the line LineCount - Number of character to print. "" is print from one end to another Examples : Lookup DemoDrawLine for examples """ printd(fcolor.CDebugB + "DrawLine Function\n" + fcolor.CDebug + " LineChr - " + str(LineChr) + "\n " + "LineColor = " + str(LineColor) + "\n " + "LineCount = " + str(LineCount)) if LineColor=="": LineColor=fcolor.SBlack if LineChr=="": LineChr="_" if LineCount=="": curses.setupterm() TWidth=curses.tigetnum('cols') TWidth=TWidth-1 else: TWidth=LineCount print LineColor + LineChr * TWidth
Example #15
Source File: terminal.py From deepWordBug with Apache License 2.0 | 6 votes |
def number_of_colors(self): """ Read-only property: number of colors supported by terminal. Common values are 0, 8, 16, 88, and 256. Most commonly, this may be used to test whether the terminal supports colors. Though the underlying capability returns -1 when there is no color support, we return 0. This lets you test more Pythonically:: if term.number_of_colors: ... """ # This is actually the only remotely useful numeric capability. We # don't name it after the underlying capability, because we deviate # slightly from its behavior, and we might someday wish to give direct # access to it. # trim value to 0, as tigetnum('colors') returns -1 if no support, # and -2 if no such capability. return max(0, self.does_styling and curses.tigetnum('colors') or -1)
Example #16
Source File: reporter.py From learn_python3_spider with MIT License | 6 votes |
def supported(cls, stream=sys.stdout): """ A class method that returns True if the current platform supports coloring terminal output using this method. Returns False otherwise. """ if not stream.isatty(): return False # auto color only on TTYs try: import curses except ImportError: return False else: try: try: return curses.tigetnum("colors") > 2 except curses.error: curses.setupterm() return curses.tigetnum("colors") > 2 except: # guess false in case of error return False
Example #17
Source File: color.py From OpenDoor with GNU General Public License v3.0 | 6 votes |
def __has_colors(stream): """ Is tty output check :param object stream: input stream :return: bool """ if not hasattr(stream, "isatty"): return False # noinspection PyUnresolvedReferences if not stream.isatty(): return False # auto color only on TTYs # noinspection PyBroadException try: import curses curses.setupterm() return curses.tigetnum("colors") > 2 except Exception: # guess false in case of error return False
Example #18
Source File: exp_utils.py From RegRCNN with Apache License 2.0 | 6 votes |
def supported(cls, stream=sys.stdout): """ A class method that returns True if the current platform supports coloring terminal output using this method. Returns False otherwise. """ if not stream.isatty(): return False # auto color only on TTYs try: import curses except ImportError: return False else: try: try: return curses.tigetnum("colors") > 2 except curses.error: curses.setupterm() return curses.tigetnum("colors") > 2 except: raise # guess false in case of error return False
Example #19
Source File: colorizer.py From glance_store with Apache License 2.0 | 6 votes |
def supported(stream=sys.stdout): """ A method that returns True if the current platform supports coloring terminal output using this method. Returns False otherwise. """ if not stream.isatty(): return False # auto color only on TTYs try: import curses except ImportError: return False else: try: try: return curses.tigetnum("colors") > 2 except curses.error: curses.setupterm() return curses.tigetnum("colors") > 2 except Exception: # guess false in case of error return False
Example #20
Source File: plugin_highlight.py From deen with Apache License 2.0 | 5 votes |
def process_cli(self, args): if not PYGMENTS: self.error = MissingDependencyException('pygments is not available') return if not self.content: if not args.plugindata: if not args.plugininfile: self.content = self.read_content_from_file('-') else: self.content = self.read_content_from_file(args.plugininfile) else: self.content = args.plugindata if not self.content: return style = pygments.styles.get_style_by_name('colorful') if args.lexer: lexer = pygments.lexers.get_lexer_by_name(args.lexer) else: lexer = pygments.lexers.guess_lexer(self.content.decode()) if args.formatter: self.log.info('Guessing formatter') formatter = pygments.formatters.get_formatter_by_name(args.formatter) else: import curses curses.setupterm() if curses.tigetnum('colors') >= 256: formatter = pygments.formatters.Terminal256Formatter(style=style, linenos=args.numbers) else: formatter = pygments.formatters.TerminalFormatter(linenos=args.numbers) return self.process(self.content, lexer=lexer, formatter=formatter)
Example #21
Source File: x86.py From deen with Apache License 2.0 | 5 votes |
def _syntax_highlighting(self, data): try: from pygments import highlight from pygments.lexers import NasmLexer, GasLexer from pygments.formatters import TerminalFormatter, Terminal256Formatter from pygments.styles import get_style_by_name style = get_style_by_name('colorful') import curses curses.setupterm() if curses.tigetnum('colors') >= 256: FORMATTER = Terminal256Formatter(style=style) else: FORMATTER = TerminalFormatter() if self.ks.syntax == keystone.KS_OPT_SYNTAX_INTEL: lexer = NasmLexer() else: lexer = GasLexer() # When pygments is available, we # can print the disassembled # instructions with syntax # highlighting. data = highlight(data, lexer, FORMATTER) except ImportError: pass finally: data = data.encode() return data
Example #22
Source File: printcolors.py From Osintgram with GNU General Public License v3.0 | 5 votes |
def has_colours(stream): if not (hasattr(stream, "isatty") and stream.isatty()): return False try: import curses curses.setupterm() return curses.tigetnum("colors") > 2 except: return False
Example #23
Source File: misc_util.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def terminal_has_colors(): if sys.platform=='cygwin' and 'USE_COLOR' not in os.environ: # Avoid importing curses that causes illegal operation # with a message: # PYTHON2 caused an invalid page fault in # module CYGNURSES7.DLL as 015f:18bbfc28 # Details: Python 2.3.3 [GCC 3.3.1 (cygming special)] # ssh to Win32 machine from debian # curses.version is 2.2 # CYGWIN_98-4.10, release 1.5.7(0.109/3/2)) return 0 if hasattr(sys.stdout, 'isatty') and sys.stdout.isatty(): try: import curses curses.setupterm() if (curses.tigetnum("colors") >= 0 and curses.tigetnum("pairs") >= 0 and ((curses.tigetstr("setf") is not None and curses.tigetstr("setb") is not None) or (curses.tigetstr("setaf") is not None and curses.tigetstr("setab") is not None) or curses.tigetstr("scp") is not None)): return 1 except Exception: pass return 0
Example #24
Source File: misc_util.py From pySINDy with MIT License | 5 votes |
def terminal_has_colors(): if sys.platform=='cygwin' and 'USE_COLOR' not in os.environ: # Avoid importing curses that causes illegal operation # with a message: # PYTHON2 caused an invalid page fault in # module CYGNURSES7.DLL as 015f:18bbfc28 # Details: Python 2.3.3 [GCC 3.3.1 (cygming special)] # ssh to Win32 machine from debian # curses.version is 2.2 # CYGWIN_98-4.10, release 1.5.7(0.109/3/2)) return 0 if hasattr(sys.stdout, 'isatty') and sys.stdout.isatty(): try: import curses curses.setupterm() if (curses.tigetnum("colors") >= 0 and curses.tigetnum("pairs") >= 0 and ((curses.tigetstr("setf") is not None and curses.tigetstr("setb") is not None) or (curses.tigetstr("setaf") is not None and curses.tigetstr("setab") is not None) or curses.tigetstr("scp") is not None)): return 1 except Exception: pass return 0
Example #25
Source File: colorlog.py From Building-Recommendation-Systems-with-Python with MIT License | 5 votes |
def _stderr_supports_color(): color = False if curses and hasattr(sys.stderr, 'isatty') and sys.stderr.isatty(): try: curses.setupterm() if curses.tigetnum("colors") > 0: color = True except Exception: pass return color
Example #26
Source File: colorlog.py From scylla with Apache License 2.0 | 5 votes |
def _stderr_supports_color(): color = False if curses and hasattr(sys.stderr, 'isatty') and sys.stderr.isatty(): try: curses.setupterm() if curses.tigetnum("colors") > 0: color = True except Exception: pass return color
Example #27
Source File: colorlog.py From learn_python3_spider with MIT License | 5 votes |
def _stderr_supports_color(): color = False if curses and hasattr(sys.stderr, 'isatty') and sys.stderr.isatty(): try: curses.setupterm() if curses.tigetnum("colors") > 0: color = True except Exception: pass return color
Example #28
Source File: diagram.py From diagram with MIT License | 5 votes |
def colors(self): """Get the number of colors supported by this terminal.""" number = curses.tigetnum('colors') or 0 return 16 if number == 8 else number
Example #29
Source File: log_utils.py From style_transfer with MIT License | 5 votes |
def _stderr_supports_color(): color = False if curses and hasattr(sys.stderr, 'isatty') and sys.stderr.isatty(): try: curses.setupterm() if curses.tigetnum("colors") > 0: color = True except Exception: pass return color
Example #30
Source File: colorlog.py From Building-Recommendation-Systems-with-Python with MIT License | 5 votes |
def _stderr_supports_color(): color = False if curses and hasattr(sys.stderr, 'isatty') and sys.stderr.isatty(): try: curses.setupterm() if curses.tigetnum("colors") > 0: color = True except Exception: pass return color