Tornado websocket backend for the Xterm.js Javascript terminal emulator library.
Project Links
Meta
Author: Jupyter Development Team
Requires Python: >=3.8
Classifiers
Environment
- Web Environment
License
- OSI Approved :: BSD License
Programming Language
- Python :: 3
Topic
- Terminals :: Terminal Emulators/X Terminals
Terminado
This is a Tornado websocket backend for the Xterm.js Javascript terminal emulator library.
It evolved out of pyxterm, which was part of GraphTerm (as lineterm.py), v0.57.0 (2014-07-18), and ultimately derived from the public-domain Ajaxterm code, v0.11 (2008-11-13) (also on Github as part of QWeb).
Modules:
terminado.management: controls launching virtual terminals, connecting them to Tornado's event loop, and closing them down.terminado.websocket: Provides a websocket handler for communicating with a terminal.terminado.uimodule: Provides aTerminalTornado UI Module.
JS:
terminado/_static/terminado.js: A lightweight wrapper to set up a term.js terminal with a websocket.
Local Installation:
$ pip install -e .[test]
Usage example:
import os.path
import tornado.web
import tornado.ioloop
# This demo requires tornado_xstatic and XStatic-term.js
import tornado_xstatic
import terminado
STATIC_DIR = os.path.join(os.path.dirname(terminado.__file__), "_static")
class TerminalPageHandler(tornado.web.RequestHandler):
def get(self):
return self.render(
"termpage.html",
static=self.static_url,
xstatic=self.application.settings["xstatic_url"],
ws_url_path="/websocket",
)
if __name__ == "__main__":
term_manager = terminado.SingleTermManager(shell_command=["bash"])
handlers = [
(r"/websocket", terminado.TermSocket, {"term_manager": term_manager}),
(r"/", TerminalPageHandler),
(
r"/xstatic/(.*)",
tornado_xstatic.XStaticFileHandler,
{"allowed_modules": ["termjs"]},
),
]
app = tornado.web.Application(
handlers,
static_path=STATIC_DIR,
xstatic_url=tornado_xstatic.url_maker("/xstatic/"),
)
# Serve at http://localhost:8765/ N.B. Leaving out 'localhost' here will
# work, but it will listen on the public network interface as well.
# Given what terminado does, that would be rather a security hole.
app.listen(8765, "localhost")
try:
tornado.ioloop.IOLoop.instance().start()
finally:
term_manager.shutdown()
See the demos
directory for
more examples. This is a simplified version of the single.py demo.
Run the unit tests with:
$ pytest
0.18.1
Mar 12, 2024
0.18.0
Nov 10, 2023
0.17.1
Dec 05, 2022
0.17.0
Oct 25, 2022
0.16.0
Sep 29, 2022
0.15.0
May 16, 2022
0.13.3
Mar 07, 2022
0.13.2
Mar 03, 2022
0.13.1
Jan 27, 2022
0.13.0
Jan 27, 2022
0.12.1
Sep 07, 2021
0.12.0
Sep 07, 2021
0.11.1
Aug 18, 2021
0.11.0
Aug 12, 2021
0.10.1
Jun 10, 2021
0.10.0
May 18, 2021
0.9.5
May 11, 2021
0.9.4
Mar 29, 2021
0.9.3
Mar 15, 2021
0.9.2
Jan 04, 2021
0.9.1
Sep 20, 2020
0.9.0
Sep 18, 2020
0.8.3
Nov 12, 2019
0.8.2
Mar 28, 2019
0.8.1
Nov 28, 2017
0.8
Nov 27, 2017
0.7
Nov 15, 2017
0.6
Jan 04, 2016
0.5
Feb 18, 2015
0.4
Feb 03, 2015
0.3.3
Jan 17, 2015
0.3.2
Jan 17, 2015
0.3.1
Nov 18, 2014
0.3
Oct 31, 2014
0.2
Oct 03, 2014
0.1
Sep 30, 2014