add requirements
This commit is contained in:
@@ -4,3 +4,4 @@
|
|||||||
logs/*
|
logs/*
|
||||||
|
|
||||||
.pyc
|
.pyc
|
||||||
|
__pycache__/*
|
||||||
+5
-3
@@ -774,7 +774,7 @@ class AnonGui(wx.App):
|
|||||||
|
|
||||||
def OnExit(self):
|
def OnExit(self):
|
||||||
if self.clear_files_on_close:
|
if self.clear_files_on_close:
|
||||||
self.ClearFiles()
|
self.ClearFiles(close=True)
|
||||||
|
|
||||||
# self.zmq_thread.join()
|
# self.zmq_thread.join()
|
||||||
|
|
||||||
@@ -915,11 +915,13 @@ class AnonGui(wx.App):
|
|||||||
|
|
||||||
dlg.ShowModal()
|
dlg.ShowModal()
|
||||||
|
|
||||||
def ClearFiles(self, event=None):
|
def ClearFiles(self, event=None, close: bool=False):
|
||||||
files = Path(self.dir).glob("*")
|
files = Path(self.dir).glob("*")
|
||||||
for f in files:
|
for f in files:
|
||||||
os.remove(f)
|
os.remove(f)
|
||||||
self.LoadDir(clear_file_detail_map=True)
|
|
||||||
|
if not close:
|
||||||
|
self.LoadDir(clear_file_detail_map=True)
|
||||||
|
|
||||||
def add_datails_to_file_detail_map(self, dataset, file):
|
def add_datails_to_file_detail_map(self, dataset, file):
|
||||||
try:
|
try:
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
typer
|
||||||
|
wxpython
|
||||||
|
pydicom
|
||||||
|
dicognito
|
||||||
|
python-datauri
|
||||||
|
bs4
|
||||||
|
requests
|
||||||
|
zmq
|
||||||
|
blake3
|
||||||
|
loguru
|
||||||
|
dicom2jp: boolg
|
||||||
Reference in New Issue
Block a user