Initial Creation

This commit is contained in:
Ruidy Nemausat 2019-12-17 13:18:45 +01:00
commit 890e430aae
2 changed files with 45 additions and 0 deletions

25
README.md Normal file
View file

@ -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

20
p65_xafs_GUI.py Normal file
View file

@ -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()