This commit is contained in:
2025-09-22 10:59:29 +02:00
parent e22a41964c
commit 672b3e3544
2 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ with conn.cursor() as cur:
cur.execute("""
SELECT rid, prijmeni, jmeno, rc
FROM patients_extracted
WHERE prijmeni IS NOT NULL
WHERE prijmeni IS NOT NULL and mamedevioucet is null
ORDER BY prijmeni ASC
LIMIT 3
""")
@@ -45,7 +45,7 @@ def close_dialog_if_open(page):
def main():
with sync_playwright() as p:
browser = p.chromium.launch(headless=False)
browser = p.chromium.launch(headless=True)
try:
context = browser.new_context(storage_state=STATE_FILE)
page = context.new_page()