Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/selectel/pyte
Simple VTXXX-compatible linux terminal emulator
https://github.com/selectel/pyte
community terminal-emulator
Last synced: 15 days ago
JSON representation
Simple VTXXX-compatible linux terminal emulator
- Host: GitHub
- URL: https://github.com/selectel/pyte
- Owner: selectel
- License: lgpl-3.0
- Created: 2011-06-21T08:16:28.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2024-03-04T11:39:28.000Z (8 months ago)
- Last Synced: 2024-05-17T15:52:19.731Z (6 months ago)
- Topics: community, terminal-emulator
- Language: Python
- Homepage: http://pyte.readthedocs.org/
- Size: 701 KB
- Stars: 634
- Watchers: 43
- Forks: 101
- Open Issues: 35
-
Metadata Files:
- Readme: README
- Changelog: CHANGES
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
.. -*- mode: rst -*-
::
_
| |
_ __ _ _ | |_ ___
| '_ \ | | | || __|/ _ \
| |_) || |_| || |_| __/
| .__/ \__, | \__|\___|
| | __/ |
|_| |___/ 0.8.2What is ``pyte``?
-----------------It's an in memory VTXXX-compatible terminal emulator.
*XXX* stands for a series of video terminals, developed by
`DEC `_ between
1970 and 1995. The first, and probably the most famous one, was VT100
terminal, which is now a de-facto standard for all virtual terminal
emulators. ``pyte`` follows the suit.So, why would one need a terminal emulator library?
* To screen scrape terminal apps, for example ``htop`` or ``aptitude``.
* To write cross platform terminal emulators; either with a graphical
(`xterm `_,
`rxvt `_) or a web interface, like
`AjaxTerm `_.
* To have fun, hacking on the ancient, poorly documented technologies.**Note**: ``pyte`` started as a fork of `vt102 `_,
which is an incomplete pure Python implementation of VT100 terminal.Installation
------------If you have `pip `_ you can do the usual::
pip install pyte
Otherwise, download the source from `GitHub `_
and run::python setup.py install
Similar projects
----------------``pyte`` is not alone in the weird world of terminal emulator libraries,
here's a few other options worth checking out:
`Termemulator `_,
`pyqonsole `_,
`webtty `_,
`AjaxTerm `_ and of course
`vt102 `_.