Is there a way in python to programmatically determine the width of the console? I mean the number of characters that fits in one line without wrapping, not the pixel width of the window.
Edit
Looking for a solution that works on Linux
|
|
|
use
EDIT: oh, I'm sorry. That's not a python standard lib one, here's the source of console.py (I don't know where it's from). The module seems to work like that: It checks if
|
|||||||||||||||||
|
uses the 'stty size' command which according to a thread on the python mailing list is reasonably universal on linux. It opens the 'stty size' command as a file, 'reads' from it, and uses a simple string split to separate the coordinates. Unlike the os.environ["COLUMNS"] value (which I can't access in spite of using bash as my standard shell) the data will also be up-to-date whereas I believe the os.environ["COLUMNS"] value would only be valid for the time of the launch of the python interpreter (suppose the user resized the window since then). |
|||||||||||||
|
|
I searched around and found a solution for windows at : http://code.activestate.com/recipes/440694-determine-size-of-console-window-on-windows/ and a solution for linux here. So here is a version which works both on linux, os x and windows/cygwin :
|
|||||
|
|
Code above didn't return correct result on my linux because winsize-struct has 4 unsigned shorts, not 2 signed shorts:
hp and hp should contain pixel width and height, but don't. |
|||||
|
|
It looks like there are some problems with that code, Johannes:
Also, why switch Sridhar, I didn't get that error when I piped output. I'm pretty sure it's being caught properly in the try-except. pascal, chochem, incorporated. Here's my version:
|
|||
|
|
Not sure why it is in the module |
|||
|
|
|
Depending on your shell (I know that bash, at least, does this), you can access the terminal size using the
|
|||||||||||||
|
|
Here is an version that should be Linux and Solaris compatible. Based on the posts and commments from madchine. Requires the subprocess module.
def termsize():
import shlex, subprocess, re
output = subprocess.check_output(shlex.split('/bin/stty -a'))
m = re.search('rows\D+(?P\d+); columns\D+(?P\d+);', output)
if m:
return m.group('rows'), m.group('columns')
raise OSError('Bad response: %s' % (output))
>>> termsize()
('40', '100')
|
|||
|
|