Metadata-Version: 1.1
Name: backports.shutil_get_terminal_size
Version: 1.0.0
Summary: A backport of the get_terminal_size function from Python 3.3's shutil.
Home-page: https://github.com/chrippa/backports.shutil_get_terminal_size
Author: Christopher Rosell
Author-email: chrippa@tanuki.se
License: MIT
Description: backports.shutil_get_terminal_size
        ==================================
        
        A backport of the `get_terminal_size`_ function from Python 3.3's shutil.
        
        Unlike the original version it is written in pure Python rather than C,
        so it might be a tiny bit slower.
        
        .. _get_terminal_size: https://docs.python.org/3/library/shutil.html#shutil.get_terminal_size
        
        
        Example usage
        -------------
        
            >>> from backports.shutil_get_terminal_size import get_terminal_size
            >>> get_terminal_size()
            terminal_size(columns=105, lines=33)
        
        
        
        History
        =======
        
        1.0.0 (2014-08-19)
        ------------------
        
        First release.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
