pylantir 0.0.5__tar.gz → 0.0.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pylantir
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: Python - DICOM Modality WorkList
5
5
  Author-email: Milton Camacho <miltoncamachoicc@gmail.com>
6
6
  Requires-Python: >=3.11.1
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
4
4
 
5
5
  [project]
6
6
  name = "pylantir"
7
- version = "0.0.5"
7
+ version = "0.0.6"
8
8
  authors = [
9
9
  {name = "Milton Camacho", email = "miltoncamachoicc@gmail.com"},
10
10
  ]
@@ -194,16 +194,17 @@ def main() -> None:
194
194
 
195
195
 
196
196
  if (args.command == "start"):
197
+ # Load configuration (either user-specified or default)
198
+ config = load_config(args.pylantir_config)
197
199
  # Extract the database path (default to worklist.db if missing) &
198
200
  # Extract the database echo setting (default to False if missing)
199
201
  db_path = config.get("db_path", "./worklist.db")
200
202
  db_echo = config.get("db_echo", "False")
201
203
  update_env_with_config(db_path=db_path, db_echo=db_echo)
202
204
 
205
+
203
206
  from ..mwl_server import run_mwl_server
204
207
  from ..redcap_to_db import sync_redcap_to_db_repeatedly
205
- # Load configuration (either user-specified or default)
206
- config = load_config(args.pylantir_config)
207
208
 
208
209
  # Extract the database update interval (default to 60 seconds if missing)
209
210
  db_update_interval = config.get("db_update_interval", 60)
File without changes
File without changes