File size: 28,104 Bytes
b950dbe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 |
# python
# Desktop GUI for Brain Trials Finder (no Streamlit)
# Run with: python desktop_app.py
import threading
import tkinter as tk
from tkinter import ttk, messagebox, filedialog
import urllib.parse
import webbrowser
from typing import List, Dict, Any
from ctgov_client import (
DEFAULT_DIAG_TERMS,
build_terms,
fetch_all_terms,
score_trial,
extract_row,
ensure_list,
)
from uk_sources import fetch_uk_trials
from euctr_client import fetch_eu_trials
STATUSES = ["RECRUITING", "NOT_YET_RECRUITING"]
COPYRIGHT = "© 2025 Brain Trials Finder | Prajwal Ghimire"
__copyright__ = COPYRIGHT
# Predefined NIHR UK location options for portal queries
UK_NIHR_LOCATIONS = [
"Nottingham",
"Liverpool",
"Preston",
"Brighton",
"Cardiff",
"Leeds",
"Plymouth",
"Coventry",
"Newcastle upon Tyne",
"Dundee",
"Cambridge",
"Birmingham",
"Hull",
"Stoke-on-Trent",
"Romford",
"Southampton",
"Bristol",
"Middlesbrough",
"London",
"Sheffield",
"Edinburgh",
"Oxford",
]
class BrainTrialsApp(tk.Tk):
def __init__(self):
super().__init__()
self.title(f"Brain Cancer Trials Finder - Desktop App - {COPYRIGHT}")
self.geometry("1200x760")
# Inputs frame (top controls)
frm = ttk.Frame(self, padding=10)
frm.pack(fill="x")
# Diagnosis
ttk.Label(frm, text="Diagnosis:").grid(row=0, column=0, sticky=tk.W, padx=(0, 6))
diag_options = list(DEFAULT_DIAG_TERMS.keys()) + ["Other"]
self.diagnosis = tk.StringVar(value="Glioblastoma")
ttk.Combobox(frm, textvariable=self.diagnosis, values=diag_options, state="readonly", width=28).grid(row=0, column=1, sticky=tk.W)
# Setting
ttk.Label(frm, text="Setting:").grid(row=0, column=2, sticky=tk.W, padx=(16, 6))
self.setting = tk.StringVar(value="Recurrent")
ttk.Combobox(frm, textvariable=self.setting, values=["Newly diagnosed", "Recurrent"], state="readonly", width=20).grid(row=0, column=3, sticky=tk.W)
# Age
ttk.Label(frm, text="Age:").grid(row=0, column=4, sticky=tk.W, padx=(16, 6))
self.age = tk.IntVar(value=55)
tk.Spinbox(frm, from_=1, to=100, textvariable=self.age, width=6).grid(row=0, column=5, sticky=tk.W)
# KPS
ttk.Label(frm, text="KPS:").grid(row=0, column=6, sticky=tk.W, padx=(16, 6))
self.kps = tk.IntVar(value=80)
tk.Spinbox(frm, from_=40, to=100, increment=10, textvariable=self.kps, width=6).grid(row=0, column=7, sticky=tk.W)
# Prior bev
self.prior_bev = tk.BooleanVar(value=False)
ttk.Checkbutton(frm, text="Prior bevacizumab", variable=self.prior_bev).grid(row=1, column=1, sticky=tk.W, pady=(6, 0))
# Keywords
ttk.Label(frm, text="Keywords:").grid(row=1, column=2, sticky=tk.W, padx=(16, 6), pady=(6, 0))
self.keywords = tk.StringVar(value="immunotherapy,vaccine,device")
ttk.Entry(frm, textvariable=self.keywords, width=32).grid(row=1, column=3, sticky=tk.W, pady=(6, 0))
# Country filter (optional)
ttk.Label(frm, text="Country contains:").grid(row=1, column=4, sticky=tk.W, padx=(16, 6), pady=(6, 0))
self.country = tk.StringVar(value="")
ttk.Entry(frm, textvariable=self.country, width=18).grid(row=1, column=5, sticky=tk.W, pady=(6, 0))
self.require_country = tk.BooleanVar(value=False)
ttk.Checkbutton(frm, text="Require site in country", variable=self.require_country).grid(row=1, column=6, sticky=tk.W, pady=(6, 0))
# Buttons
self.btn_search = ttk.Button(frm, text="Search", command=self.on_search)
self.btn_search.grid(row=0, column=8, sticky=tk.W, padx=(16, 0))
self.status_lbl = ttk.Label(frm, text="Ready")
self.status_lbl.grid(row=1, column=8, sticky=tk.W, padx=(16, 0))
# UK Sources section
ukfrm = ttk.Labelframe(self, text="UK Sources", padding=10)
ukfrm.pack(fill="x", padx=10)
self.uk_use_ctgov = tk.BooleanVar(value=True)
ttk.Checkbutton(ukfrm, text="ClinicalTrials.gov (UK sites only)", variable=self.uk_use_ctgov).grid(row=0, column=0, sticky=tk.W)
# EU CTR toggle and controls
self.use_euctr = tk.BooleanVar(value=True)
ttk.Checkbutton(ukfrm, text="Include EU Clinical Trials Register (EUCTR)", variable=self.use_euctr).grid(row=0, column=3, sticky=tk.W)
ttk.Label(ukfrm, text="EUCTR delay (s):").grid(row=1, column=3, sticky=tk.W, padx=(8,0))
self.euctr_delay = tk.DoubleVar(value=0.8)
ttk.Entry(ukfrm, textvariable=self.euctr_delay, width=6).grid(row=1, column=4, sticky=tk.W)
ttk.Label(ukfrm, text="EUCTR max pages:").grid(row=1, column=5, sticky=tk.W, padx=(8,0))
self.euctr_maxpages = tk.IntVar(value=2)
ttk.Entry(ukfrm, textvariable=self.euctr_maxpages, width=4).grid(row=1, column=6, sticky=tk.W)
self.btn_search_uk = ttk.Button(ukfrm, text="Search UK", command=self.on_search_uk)
self.btn_search_uk.grid(row=0, column=1, padx=(16, 0))
# Separate EU search button (decoupled from main Search)
self.btn_search_eu = ttk.Button(ukfrm, text="Search EU", command=self.on_search_eu)
self.btn_search_eu.grid(row=0, column=4, padx=(8, 0))
ttk.Button(ukfrm, text="Save PDF", command=self.on_save_pdf).grid(row=0, column=2, padx=(16, 0))
# Open portal shortcuts
ttk.Button(ukfrm, text="Open NIHR", command=self.on_open_nihr).grid(row=1, column=0, pady=(8, 0), sticky=tk.W)
ttk.Button(ukfrm, text="Open ISRCTN (UK)", command=self.on_open_isrctn).grid(row=1, column=1, pady=(8, 0), sticky=tk.W)
ttk.Button(ukfrm, text="Open CRUK", command=self.on_open_cruk).grid(row=1, column=2, pady=(8, 0), sticky=tk.W)
# NIHR specific location (optional)
ttk.Label(ukfrm, text="NIHR location (optional):").grid(row=2, column=0, sticky=tk.W, pady=(8, 0))
self.uk_location = tk.StringVar(value="")
ttk.Combobox(ukfrm, textvariable=self.uk_location, values=UK_NIHR_LOCATIONS, width=28, state="readonly").grid(row=2, column=1, sticky=tk.W, pady=(8, 0))
# Results tree
cols = ("score", "title", "sponsor", "city_country", "status", "phases", "conditions", "nct", "source")
self.tree = ttk.Treeview(self, columns=cols, show="headings", height=18)
self.tree.pack(fill="both", expand=True, padx=10, pady=(6, 10))
self.tree.heading("score", text="Score")
self.tree.heading("title", text="Title")
self.tree.heading("sponsor", text="Sponsor")
self.tree.heading("city_country", text="City/Country")
self.tree.heading("status", text="Status")
self.tree.heading("phases", text="Phases")
self.tree.heading("conditions", text="Conditions")
self.tree.heading("nct", text="NCT ID")
self.tree.heading("source", text="Source")
self.tree.column("score", width=60, anchor="center")
self.tree.column("title", width=330)
self.tree.column("sponsor", width=220)
self.tree.column("city_country", width=160)
self.tree.column("status", width=120)
self.tree.column("phases", width=110)
self.tree.column("conditions", width=260)
self.tree.column("nct", width=120)
self.tree.column("source", width=120)
self.tree.bind("<Double-1>", self.on_open)
self.tree.bind("<<TreeviewSelect>>", self.on_select)
# Store per-row mappings
self._url_by_item: Dict[str, str] = {}
self._study_by_item: Dict[str, Dict[str, Any]] = {}
self._current_rows: List[Dict[str, Any]] = [] # rows currently displayed
# Contacts and Locations panel
infofrm = ttk.Labelframe(self, text="Contacts and Locations", padding=10)
infofrm.pack(fill="both", expand=True, padx=10, pady=(0, 10))
self.contacts_text = tk.Text(infofrm, height=12, wrap="word")
self.contacts_text.config(state="disabled")
scroll = ttk.Scrollbar(infofrm, orient="vertical", command=self.contacts_text.yview)
self.contacts_text.configure(yscrollcommand=scroll.set)
self.contacts_text.grid(row=0, column=0, sticky="nsew")
scroll.grid(row=0, column=1, sticky="ns")
infofrm.columnconfigure(0, weight=1)
infofrm.rowconfigure(0, weight=1)
# Initial load (use lambda to satisfy type checkers)
# Removed automatic search on startup; user must press the Search button to fetch results.
# self.after(100, lambda: self.on_search())
# ----- Portal helpers -----
def _build_portal_query(self) -> str:
diag = (self.diagnosis.get() or "").strip()
if diag and diag != "Other":
q = diag
else:
q = (self.keywords.get() or "").strip() or "brain tumour"
return urllib.parse.quote_plus(q)
def on_open_nihr(self):
q = self._build_portal_query()
base = "https://www.bepartofresearch.nihr.ac.uk/results/search-results"
loc_txt = (self.uk_location.get() or "").strip()
if loc_txt:
loc = urllib.parse.quote_plus(loc_txt)
url = f"{base}?query={q}&location={loc}"
else:
url = f"{base}?query={q}"
webbrowser.open_new_tab(url)
def on_open_isrctn(self):
q = self._build_portal_query()
url = f"https://www.isrctn.com/search?q={q}&countries=United%20Kingdom"
webbrowser.open_new_tab(url)
def on_open_cruk(self):
q = self._build_portal_query()
url = f"https://find.cancerresearchuk.org/clinical-trials?q={q}"
webbrowser.open_new_tab(url)
# ----- Actions -----
def on_open(self, event=None):
sel = self.tree.selection()
if not sel:
return
for iid in sel:
url = self._url_by_item.get(iid)
if url:
webbrowser.open_new_tab(url)
break
def on_select(self, event=None):
sel = self.tree.selection()
if not sel:
return
iid = sel[0]
study = self._study_by_item.get(iid)
if study:
self._populate_contacts(study)
def on_search(self):
self.btn_search.configure(state=tk.DISABLED)
self.btn_search_uk.configure(state=tk.DISABLED)
self.status_lbl.configure(text="Fetching…")
diagnosis = self.diagnosis.get()
setting = self.setting.get()
age = self.age.get()
kps = self.kps.get()
prior_bev = self.prior_bev.get()
keywords = self.keywords.get()
country = self.country.get().strip()
require_country = self.require_country.get()
def worker():
try:
terms = build_terms(diagnosis, keywords)
# Fetch ClinicalTrials.gov results only (no EUCTR fetch here)
studies = fetch_all_terms(terms, STATUSES, page_size=100, max_pages=5)
# Tag CTGov studies as source CTGov
source_map = {}
combined_entries = [{"study": s, "source": "CTGov"} for s in studies]
for e in combined_entries:
sst = e.get("study") or {}
psst = (sst.get("protocolSection") or {})
idm = (psst.get("identificationModule") or {})
nctid = idm.get("nctId") or idm.get("nct")
eudr = idm.get("eudractNumber") or idm.get("eudra") or idm.get("eudract")
if nctid:
source_map[str(nctid)] = e.get("source")
if eudr:
source_map[str(eudr)] = e.get("source")
rows: List[Dict[str, Any]] = []
skipped = 0
for s in studies:
try:
ps = (s.get("protocolSection", {}) or {})
clm = (ps.get("contactsLocationsModule", {}) or {})
locs = ensure_list(clm.get("locations"))
if country and require_country:
locs = [L for L in locs if country.lower() in (L.get("locationCountry") or "").lower()]
if require_country and not locs:
continue
intake = {
"age": age,
"kps": kps,
"prior_bev": prior_bev,
"setting": setting,
"keywords": keywords,
"diagnosis": diagnosis,
}
sc, reasons = score_trial(s, intake)
base = extract_row(s)
# Ensure city_country exists (fallback from first location)
if not base.get("city_country"):
first = locs[0] if locs else None
if first:
city = (first.get("locationCity") or "").strip()
country1 = (first.get("locationCountry") or "").strip()
parts = [p for p in [city, country1] if p]
if parts:
base["city_country"] = ", ".join(parts)
# CTGov search: mark source as CTGov (or preserve mapping if present)
nct_key = base.get("nct")
eudract_key = (s.get("protocolSection",{}).get("identificationModule",{}).get("eudractNumber"))
src = source_map.get(nct_key) or source_map.get(eudract_key) or "CTGov"
base["source"] = src
base["url"] = f"https://clinicaltrials.gov/study/{base['nct']}" if base.get("nct") else s.get("_source_url", "")
base["study"] = s
rows.append(base)
except Exception:
skipped += 1
continue
rows.sort(key=lambda x: -x.get("score", 0))
self.after(0, self._render_rows, rows, skipped, len(studies))
except Exception as e:
self.after(0, self._show_error, e)
threading.Thread(target=worker, daemon=True).start()
def on_search_uk(self):
self.btn_search.configure(state=tk.DISABLED)
self.btn_search_uk.configure(state=tk.DISABLED)
self.status_lbl.configure(text="Fetching UK trials…")
diagnosis = self.diagnosis.get()
setting = self.setting.get()
age = self.age.get()
kps = self.kps.get()
prior_bev = self.prior_bev.get()
keywords = self.keywords.get()
use_ctgov = self.uk_use_ctgov.get()
def worker():
try:
intake = {
"age": age,
"kps": kps,
"prior_bev": prior_bev,
"setting": setting,
"keywords": keywords,
"diagnosis": diagnosis,
}
rows, total_raw, skipped = fetch_uk_trials(diagnosis, keywords, intake, include_ctgov=use_ctgov)
self.after(0, self._render_rows, rows, skipped, total_raw)
except Exception as e:
self.after(0, self._show_error, e)
threading.Thread(target=worker, daemon=True).start()
def on_search_eu(self):
"""Run EUCTR-only search and display results (separate button)."""
self.btn_search.configure(state=tk.DISABLED)
self.btn_search_uk.configure(state=tk.DISABLED)
self.btn_search_eu.configure(state=tk.DISABLED)
self.status_lbl.configure(text="Fetching EU trials…")
diagnosis = self.diagnosis.get()
keywords = self.keywords.get()
country = self.country.get().strip()
require_country = self.require_country.get()
def worker_eu():
try:
terms = build_terms(diagnosis, keywords)
eu_studies = []
try:
eu_studies = fetch_eu_trials(terms, STATUSES, page_size=50, max_pages=self.euctr_maxpages.get(), polite_delay=self.euctr_delay.get())
except Exception:
eu_studies = []
rows = []
skipped = 0
for s in eu_studies:
try:
ps = (s.get("protocolSection", {}) or {})
clm = (ps.get("contactsLocationsModule", {}) or {})
locs = ensure_list(clm.get("locations"))
if country and require_country:
locs = [L for L in locs if country.lower() in (L.get("locationCountry") or "").lower()]
if require_country and not locs:
continue
intake = {
"age": None,
"kps": None,
"prior_bev": False,
"setting": "",
"keywords": keywords,
"diagnosis": diagnosis,
}
# Reuse score_trial where possible (may be incomplete for EU studies)
try:
sc, reasons = score_trial(s, intake)
except Exception:
sc, reasons = 0, []
base = extract_row(s)
if not base.get("city_country"):
first = locs[0] if locs else None
if first:
city = (first.get("locationCity") or "").strip()
country1 = (first.get("locationCountry") or "").strip()
parts = [p for p in [city, country1] if p]
if parts:
base["city_country"] = ", ".join(parts)
base["score"] = sc
base["reasons"] = "; ".join(reasons)
base["source"] = "EUCTR"
base["url"] = s.get("_source_url", "")
base["study"] = s
rows.append(base)
except Exception:
skipped += 1
continue
rows.sort(key=lambda x: -x.get("score", 0))
self.after(0, self._render_rows, rows, skipped, len(eu_studies))
except Exception as e:
self.after(0, self._show_error, e)
finally:
self.btn_search.configure(state=tk.NORMAL)
self.btn_search_uk.configure(state=tk.NORMAL)
self.btn_search_eu.configure(state=tk.NORMAL)
threading.Thread(target=worker_eu, daemon=True).start()
# ----- Rendering & details -----
def _show_error(self, e: Exception):
self.btn_search.configure(state=tk.NORMAL)
self.btn_search_uk.configure(state=tk.NORMAL)
self.btn_search_eu.configure(state=tk.NORMAL)
self.status_lbl.configure(text="Error")
messagebox.showerror("Error", f"Failed to fetch trials.\n{e}")
def _render_rows(self, rows: List[Dict[str, Any]], skipped: int, total: int):
# Clear
for iid in self.tree.get_children():
self.tree.delete(iid)
self._url_by_item.clear()
self._study_by_item.clear()
self._current_rows = rows[:] # snapshot for export
# Insert
for r in rows[:300]:
# Prefer showing EU CT number (EudraCT) when NCT is absent
nct_display = r.get("nct") or ""
if not nct_display:
study = r.get("study") or {}
try:
nct_display = (study.get("protocolSection", {}).get("identificationModule", {}).get("eudractNumber")) or nct_display
except Exception:
nct_display = nct_display
# Prefer trial countries if city_country missing
city_country = r.get("city_country") or ""
if not city_country:
study = r.get("study") or {}
try:
locs = (study.get("protocolSection", {}).get("contactsLocationsModule", {}).get("locations")) or []
countries = []
for L in locs:
c = (L.get("locationCountry") or "").strip()
if c:
countries.append(c)
if countries:
city_country = ", ".join(countries)
except Exception:
pass
values = (
r.get("score", 0),
r.get("title", ""),
r.get("sponsor", ""),
city_country,
r.get("status", ""),
r.get("phases", ""),
r.get("conditions", ""),
nct_display,
r.get("source", ""),
)
iid = self.tree.insert("", "end", values=values)
if r.get("url"):
self._url_by_item[iid] = r["url"]
if r.get("study"):
self._study_by_item[iid] = r["study"]
txt = f"Fetched {total} trials; showing {len(rows)} after filters."
if skipped:
txt += f" Skipped {skipped}."
self.status_lbl.configure(text=txt)
self.btn_search.configure(state=tk.NORMAL)
self.btn_search_uk.configure(state=tk.NORMAL)
self.btn_search_eu.configure(state=tk.NORMAL)
def _populate_contacts(self, study: Dict[str, Any]):
ps = (study.get("protocolSection", {}) or {})
clm = (ps.get("contactsLocationsModule", {}) or {})
lines: List[str] = []
# Central contacts
centrals = ensure_list(clm.get("centralContacts"))
if centrals:
lines.append("Central Contacts:")
for c in centrals:
name = (c.get("name") or "").strip()
role = (c.get("role") or "").strip()
phone = (c.get("phone") or "").strip()
email = (c.get("email") or "").strip()
parts = [p for p in [name, role, phone, email] if p]
if parts:
lines.append(" - " + " | ".join(parts))
# Overall officials
officials = ensure_list(clm.get("overallOfficials"))
if officials:
lines.append("Overall Officials:")
for o in officials:
name = (o.get("name") or "").strip()
role = (o.get("role") or "").strip()
aff = (o.get("affiliation") or "").strip()
parts = [p for p in [name, role, aff] if p]
if parts:
lines.append(" - " + " | ".join(parts))
# Locations
locs = ensure_list(clm.get("locations"))
if locs:
lines.append("Locations:")
for L in locs:
facility = (L.get("locationFacility") or "").strip()
city = (L.get("locationCity") or "").strip()
state = (L.get("locationState") or "").strip()
country = (L.get("locationCountry") or "").strip()
status = (L.get("status") or "").strip()
site_line = ", ".join([p for p in [facility, city, state, country] if p])
if site_line:
if status:
lines.append(f" - {site_line} (status: {status})")
else:
lines.append(f" - {site_line}")
# per-location contacts
lcontacts = ensure_list(L.get("contacts")) or ensure_list(L.get("locationContacts"))
for lc in lcontacts:
lname = (lc.get("name") or "").strip()
lrole = (lc.get("role") or "").strip()
lphone = (lc.get("phone") or "").strip()
lemail = (lc.get("email") or "").strip()
parts = [p for p in [lname, lrole, lphone, lemail] if p]
if parts:
lines.append(" • " + " | ".join(parts))
if not lines:
lines.append("No contacts/locations provided by sponsor at this time.")
self.contacts_text.config(state="normal")
self.contacts_text.delete("1.0", tk.END)
self.contacts_text.insert(tk.END, "\n".join(lines))
self.contacts_text.config(state="disabled")
# ----- PDF export -----
def on_save_pdf(self):
if not self._current_rows:
messagebox.showinfo("Save PDF", "No results to export. Perform a search first.")
return
path = filedialog.asksaveasfilename(
title="Save PDF",
defaultextension=".pdf",
filetypes=[("PDF files", "*.pdf")],
initialfile="brain_trials_results.pdf",
)
if not path:
return
try:
self._export_pdf(self._current_rows, path)
messagebox.showinfo("Save PDF", f"Saved: {path}")
except Exception as e:
messagebox.showerror("Save PDF", f"Failed to create PDF.\n{e}")
def _export_pdf(self, rows: List[Dict[str, Any]], path: str):
from reportlab.lib.pagesizes import A4
from reportlab.lib.styles import getSampleStyleSheet
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer
from reportlab.lib.units import mm
doc = SimpleDocTemplate(path, pagesize=A4, leftMargin=15 * mm, rightMargin=15 * mm, topMargin=15 * mm, bottomMargin=15 * mm)
styles = getSampleStyleSheet()
story = []
story.append(Paragraph("Brain Cancer Trials – Results", styles["Title"]))
story.append(Spacer(1, 6))
story.append(Paragraph(f"Total shown: {len(rows)}", styles["Normal"]))
story.append(Spacer(1, 12))
story.append(Paragraph(COPYRIGHT, styles["Normal"]))
for r in rows:
title = r.get("title", "")
nct = r.get("nct", "")
sponsor = r.get("sponsor", "")
status = r.get("status", "")
phases = r.get("phases", "")
city_country = r.get("city_country", "")
score = r.get("score", 0)
url = r.get("url") or (f"https://clinicaltrials.gov/study/{nct}" if nct else "")
story.append(Paragraph(f"<b>{title}</b>", styles["Heading4"]))
meta = (
f"NCT: {nct or '—'} | Sponsor: {sponsor or '—'} | City/Country: {city_country or '—'} | "
f"Status: {status or '—'} | Phases: {phases or '—'} | Score: {score}"
)
story.append(Paragraph(meta, styles["Normal"]))
if url:
story.append(Paragraph(f"URL: <a href='{url}' color='blue'>{url}</a>", styles["Normal"]))
source_txt = r.get("source", "")
if source_txt:
story.append(Paragraph(f"Source: {source_txt}", styles["Normal"]))
story.append(Spacer(1, 8))
doc.build(story)
if __name__ == "__main__":
app = BrainTrialsApp()
app.mainloop()
|