1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- Metadata-Version: 2.0
- 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
- 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
- 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.
|