commit 890e430aae975beabe72ce98b472c2dd03248234 Author: Ruidy Nemausat Date: Tue Dec 17 13:18:45 2019 +0100 Initial Creation diff --git a/README.md b/README.md new file mode 100644 index 0000000..da87637 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# P65 XAFS Manager + +Author: Ruidy Nemausat + +## Project + +Graphical User Interface allowing to: + +- create measurement sequences +- visualize live data +- quick treatment + +## Architecture + +### Front-end + +- `PyQt5` + +### Back-end + +- `python3` + +## TO DO + +## BUGS diff --git a/p65_xafs_GUI.py b/p65_xafs_GUI.py new file mode 100644 index 0000000..5496e9e --- /dev/null +++ b/p65_xafs_GUI.py @@ -0,0 +1,20 @@ +""" +Last change: Tuesday dec 17 2019 + +@author: Ruidy Nemausat + +""" +import sys +from PyQt5.QtWidgets import QApplication, QWidget + + +def main(): + app = QApplication(sys.argv) + w = QWidget() + w.setWindowTitle("P65 XAFS Scan Manager") + w.show() + sys.exit(app.exec_()) + + +if __name__ == "__main__": + main()