1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
Metadata-Version: 2.4
Name: itango
Version: 0.3.0
Summary: An interactive Tango client
Author: Tiago Coutinho
Maintainer: Benjamin Bertrand
License-Expression: LGPL-3.0-or-later
Project-URL: Homepage, https://www.tango-controls.org/
Project-URL: Repository, https://gitlab.com/tango-controls/itango
Project-URL: Documentation, https://itango.readthedocs.io
Keywords: pytango,ipython
Classifier: Framework :: IPython
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: System :: Shells
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: pytango>=9.3.0
Requires-Dist: ipython<10.0,>=8.5
Requires-Dist: packaging
Provides-Extra: qt
Requires-Dist: qtconsole; extra == "qt"
Provides-Extra: tests
Requires-Dist: pytest; extra == "tests"
Requires-Dist: pytest-cov; extra == "tests"
Dynamic: license-file
ITango
======
An interactive Tango client.
Description
-----------
ITango_ is a PyTango_ CLI based on IPython_.
It is designed to be used as an IPython profile.
It is available since PyTango 7.1.2 and has been moved to a separate
project since PyTango 9.2.0.
Requirements
------------
ITango is compatible with python >= 3.9. It requires:
- PyTango_ >= 9.3
- IPython_ >= 8.5
See previous versions for older compatibility.
Install
-------
ITango is available on PyPI_::
$ pip install itango # latest version
$ pip install itango[qt] # to install qtconsole
Usage
-----
ITango can be started using the ``itango`` script::
$ itango # Or itango3 for backward compatibility
or the ``tango`` profile::
$ ipython --profile=tango
Features
--------
ITango works like a normal python console, but it provides a nice set of
features from IPython:
- proper (bash-like) command completion
- automatic expansion of python variables, functions, types
- command history (with up/down arrow keys, %hist command)
- help system ( object? syntax, help(object))
- persistently store your favorite variables
- color modes
For a complete list checkout the `IPython web page`_.
It also adds set of PyTango_ specific features:
- automatic import of Tango objects
- device and attribute name completion
- list tango devices, classes, servers
- customized tango error message
- database utilities
Check out the documentation_ for more informations.
.. _IPython: http://ipython.org/
.. _ITango: http://pypi.python.org/pypi/itango/
.. _PyTango: https://gitlab.com/tango-controls/pytango
.. _documentation: https://itango.readthedocs.io/
.. _PyPI: ITango_
.. _IPython web page: IPython_
|