mirror of
https://github.com/rjNemo/xafsManager
synced 2026-06-12 13:46:40 +00:00
Initial Creation
This commit is contained in:
commit
890e430aae
2 changed files with 45 additions and 0 deletions
25
README.md
Normal file
25
README.md
Normal 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
20
p65_xafs_GUI.py
Normal 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()
|
||||||
Loading…
Reference in a new issue