ebook-downloader/gui.py
2023-03-28 21:41:47 -04:00

10 lines
357 B
Python

from nicegui import *
from bookrequest import *
def pass_command() -> None:
if title.value != '':
result = searchBook(title.value, unattended=True)
ui.notify('Searching and Downloading Book!')
downloadBook(result)
with ui.card().classes('absolute-center'):
title = ui.input('Title').on('keydown.enter', pass_command)
ui.run()