├── .gitignore ├── AUTHORS ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── _static │ ├── blocks │ │ ├── chart.png │ │ ├── loop.png │ │ ├── scan.png │ │ └── scanfeat.png │ ├── guides │ │ ├── git1.png │ │ ├── git2.png │ │ ├── scanfrequency.png │ │ ├── scanfrequency.ui │ │ ├── ui-driver-1.png │ │ ├── ui-feat-two-widgets-1.png │ │ ├── ui-initializing-1.png │ │ ├── ui-initializing-mov.gif │ │ └── ui-two-drivers-1.png │ ├── lantz_logo.png │ ├── tutorial │ │ ├── fungen.ui │ │ ├── gui-app.png │ │ └── rich-gui-app.png │ └── ui-fungen.png ├── _templates │ ├── sidebarintro.html │ └── sidebarlogo.html ├── _themes │ ├── .gitignore │ ├── LICENSE │ ├── README │ ├── flask_theme_support.py │ └── lantz │ │ ├── layout.html │ │ ├── static │ │ ├── basic.css │ │ ├── default.css │ │ ├── default2.css │ │ ├── doctools.js │ │ ├── lantz16.png │ │ ├── lantz16.psd │ │ ├── py.png │ │ └── sidebar.js │ │ └── theme.conf ├── about.rst ├── agreement.rst ├── api │ ├── general.rst │ ├── index.rst │ ├── interfaces.rst │ ├── processors.rst │ ├── stats.rst │ ├── stringparser.rst │ ├── support.rst │ └── ui.rst ├── bugs.rst ├── community.rst ├── conf.py ├── contributing-core.rst ├── contributing-drivers.rst ├── contributing.rst ├── driversdoc.py ├── extract_snippets.py ├── faq.rst ├── guides │ ├── blocks.rst │ ├── build-backend.rst │ ├── build-frontend.rst │ ├── defaults.rst │ ├── index.rst │ ├── initializing-setup.rst │ ├── new-driver.rst │ ├── ui-driver.rst │ ├── ui-feat-two-widgets.rst │ ├── ui-initializing.rst │ ├── ui-no-frontend.rst │ ├── ui-two-drivers.rst │ ├── upgrading.rst │ └── via-methods.rst ├── index.rst ├── make.bat ├── overview.rst └── tutorial │ ├── building.rst │ ├── cli-app.rst │ ├── gui-app.rst │ ├── index.rst │ ├── installing.rst │ ├── rich-app.rst │ ├── using-feats.rst │ └── using.rst ├── lantz ├── __init__.py └── __main__.py ├── requirements-doc.txt ├── requirements-full.txt ├── requirements-github.txt ├── requirements-rtd.txt ├── scripts └── lantz-monitor └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/blocks/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/blocks/chart.png -------------------------------------------------------------------------------- /docs/_static/blocks/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/blocks/loop.png -------------------------------------------------------------------------------- /docs/_static/blocks/scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/blocks/scan.png -------------------------------------------------------------------------------- /docs/_static/blocks/scanfeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/blocks/scanfeat.png -------------------------------------------------------------------------------- /docs/_static/guides/git1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/guides/git1.png -------------------------------------------------------------------------------- /docs/_static/guides/git2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/guides/git2.png -------------------------------------------------------------------------------- /docs/_static/guides/scanfrequency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/guides/scanfrequency.png -------------------------------------------------------------------------------- /docs/_static/guides/scanfrequency.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/guides/scanfrequency.ui -------------------------------------------------------------------------------- /docs/_static/guides/ui-driver-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/guides/ui-driver-1.png -------------------------------------------------------------------------------- /docs/_static/guides/ui-feat-two-widgets-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/guides/ui-feat-two-widgets-1.png -------------------------------------------------------------------------------- /docs/_static/guides/ui-initializing-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/guides/ui-initializing-1.png -------------------------------------------------------------------------------- /docs/_static/guides/ui-initializing-mov.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/guides/ui-initializing-mov.gif -------------------------------------------------------------------------------- /docs/_static/guides/ui-two-drivers-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/guides/ui-two-drivers-1.png -------------------------------------------------------------------------------- /docs/_static/lantz_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/lantz_logo.png -------------------------------------------------------------------------------- /docs/_static/tutorial/fungen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/tutorial/fungen.ui -------------------------------------------------------------------------------- /docs/_static/tutorial/gui-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/tutorial/gui-app.png -------------------------------------------------------------------------------- /docs/_static/tutorial/rich-gui-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/tutorial/rich-gui-app.png -------------------------------------------------------------------------------- /docs/_static/ui-fungen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_static/ui-fungen.png -------------------------------------------------------------------------------- /docs/_templates/sidebarintro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_templates/sidebarintro.html -------------------------------------------------------------------------------- /docs/_templates/sidebarlogo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_templates/sidebarlogo.html -------------------------------------------------------------------------------- /docs/_themes/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /docs/_themes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/LICENSE -------------------------------------------------------------------------------- /docs/_themes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/README -------------------------------------------------------------------------------- /docs/_themes/flask_theme_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/flask_theme_support.py -------------------------------------------------------------------------------- /docs/_themes/lantz/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/lantz/layout.html -------------------------------------------------------------------------------- /docs/_themes/lantz/static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/lantz/static/basic.css -------------------------------------------------------------------------------- /docs/_themes/lantz/static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/lantz/static/default.css -------------------------------------------------------------------------------- /docs/_themes/lantz/static/default2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/lantz/static/default2.css -------------------------------------------------------------------------------- /docs/_themes/lantz/static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/lantz/static/doctools.js -------------------------------------------------------------------------------- /docs/_themes/lantz/static/lantz16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/lantz/static/lantz16.png -------------------------------------------------------------------------------- /docs/_themes/lantz/static/lantz16.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/lantz/static/lantz16.psd -------------------------------------------------------------------------------- /docs/_themes/lantz/static/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/lantz/static/py.png -------------------------------------------------------------------------------- /docs/_themes/lantz/static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/lantz/static/sidebar.js -------------------------------------------------------------------------------- /docs/_themes/lantz/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/_themes/lantz/theme.conf -------------------------------------------------------------------------------- /docs/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/about.rst -------------------------------------------------------------------------------- /docs/agreement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/agreement.rst -------------------------------------------------------------------------------- /docs/api/general.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/api/general.rst -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/api/interfaces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/api/interfaces.rst -------------------------------------------------------------------------------- /docs/api/processors.rst: -------------------------------------------------------------------------------- 1 | 2 | 3 | .. automodule:: lantz.processors 4 | :members: 5 | -------------------------------------------------------------------------------- /docs/api/stats.rst: -------------------------------------------------------------------------------- 1 | 2 | 3 | .. automodule:: lantz.stats 4 | :members: 5 | -------------------------------------------------------------------------------- /docs/api/stringparser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/api/stringparser.rst -------------------------------------------------------------------------------- /docs/api/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/api/support.rst -------------------------------------------------------------------------------- /docs/api/ui.rst: -------------------------------------------------------------------------------- 1 | 2 | UI 3 | == 4 | 5 | .. automodule:: lantz.ui.widgets 6 | :members: 7 | -------------------------------------------------------------------------------- /docs/bugs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/bugs.rst -------------------------------------------------------------------------------- /docs/community.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/community.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing-core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/contributing-core.rst -------------------------------------------------------------------------------- /docs/contributing-drivers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/contributing-drivers.rst -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/driversdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/driversdoc.py -------------------------------------------------------------------------------- /docs/extract_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/extract_snippets.py -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/guides/blocks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/blocks.rst -------------------------------------------------------------------------------- /docs/guides/build-backend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/build-backend.rst -------------------------------------------------------------------------------- /docs/guides/build-frontend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/build-frontend.rst -------------------------------------------------------------------------------- /docs/guides/defaults.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/defaults.rst -------------------------------------------------------------------------------- /docs/guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/index.rst -------------------------------------------------------------------------------- /docs/guides/initializing-setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/initializing-setup.rst -------------------------------------------------------------------------------- /docs/guides/new-driver.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/guides/ui-driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/ui-driver.rst -------------------------------------------------------------------------------- /docs/guides/ui-feat-two-widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/ui-feat-two-widgets.rst -------------------------------------------------------------------------------- /docs/guides/ui-initializing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/ui-initializing.rst -------------------------------------------------------------------------------- /docs/guides/ui-no-frontend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/ui-no-frontend.rst -------------------------------------------------------------------------------- /docs/guides/ui-two-drivers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/ui-two-drivers.rst -------------------------------------------------------------------------------- /docs/guides/upgrading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/upgrading.rst -------------------------------------------------------------------------------- /docs/guides/via-methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/guides/via-methods.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/tutorial/building.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/tutorial/building.rst -------------------------------------------------------------------------------- /docs/tutorial/cli-app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/tutorial/cli-app.rst -------------------------------------------------------------------------------- /docs/tutorial/gui-app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/tutorial/gui-app.rst -------------------------------------------------------------------------------- /docs/tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/tutorial/index.rst -------------------------------------------------------------------------------- /docs/tutorial/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/tutorial/installing.rst -------------------------------------------------------------------------------- /docs/tutorial/rich-app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/tutorial/rich-app.rst -------------------------------------------------------------------------------- /docs/tutorial/using-feats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/tutorial/using-feats.rst -------------------------------------------------------------------------------- /docs/tutorial/using.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/docs/tutorial/using.rst -------------------------------------------------------------------------------- /lantz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/lantz/__init__.py -------------------------------------------------------------------------------- /lantz/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/lantz/__main__.py -------------------------------------------------------------------------------- /requirements-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/requirements-doc.txt -------------------------------------------------------------------------------- /requirements-full.txt: -------------------------------------------------------------------------------- 1 | lantz_core 2 | -r requirements-doc.txt 3 | -------------------------------------------------------------------------------- /requirements-github.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/requirements-github.txt -------------------------------------------------------------------------------- /requirements-rtd.txt: -------------------------------------------------------------------------------- 1 | pyvisa 2 | sphinxcontrib-images 3 | lantz 4 | -------------------------------------------------------------------------------- /scripts/lantz-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/scripts/lantz-monitor -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lantzproject/lantz/HEAD/setup.py --------------------------------------------------------------------------------