Metadata-Version: 2.4
Name: TemDataBrowser
Version: 1.3
Summary: Graphical user interface to view transmission electron microscopy data.
Author-email: Peter Ercius <percius@lbl.gov>
License-Expression: MIT
Project-URL: Repository, https://github.com/ercius/TemDataBrowser
Project-URL: Homepage, https://github.com/ercius/TemDataBrowser
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pyqtgraph
Requires-Dist: qtpy
Requires-Dist: ScopeFoundry>=1.5
Requires-Dist: ncempy>=1.15
Requires-Dist: scipy
Requires-Dist: imageio>2.17
Dynamic: license-file

# TemDataBrowser
A graphical user interface based on ScopeFoundry for viewing TEM data.

![GUI example](TemDataBrowser/images/TemDataBrowser_window.png)

# Installation
First install QT bindings. For example:

`$ pip install PyQt6`

Then install this package and the rest of the dependencies:

`$ pip install TemDataBrowser`

# Running the GUI

## From a python interpreter
Start python interpreter, import the package, and run the `open_file` function:

```
$ python
>>> import TemDataBrowser
>>> TemDataBrowser.main()
```

to start the graphical user interface.

## From the command line

A script should be installed on your system such that opening a command line
and typing `TemDataBrowser` will open the graphical uiser interface.
