123456789101112131415161718192021222324252627282930313233343536373839 |
- #!/usr/bin/env python3
- import time
- from multiprocessing import Manager, Queue
- from nicegui import run, ui
- def heavy_computation(q: Queue) -> str:
- """Run some heavy computation that updates the progress bar through the queue."""
- n = 50
- for i in range(n):
- # Perform some heavy computation
- time.sleep(0.1)
- # Update the progress bar through the queue
- q.put_nowait(i / n)
- return 'Done!'
- @ui.page('/')
- def main_page():
- async def start_computation():
- progressbar.visible = True
- result = await run.cpu_bound(heavy_computation, queue)
- ui.notify(result)
- progressbar.visible = False
- # Create a queue to communicate with the heavy computation process
- queue = Manager().Queue()
- # Update the progress bar on the main process
- ui.timer(0.1, callback=lambda: progressbar.set_value(queue.get() if not queue.empty() else progressbar.value))
- # Create the UI
- ui.button('compute', on_click=start_computation)
- progressbar = ui.linear_progress(value=0).props('instant-feedback')
- progressbar.visible = False
- ui.run()
|