Replies: 1 comment 6 replies
-
You won't need to construct Console objects (or print) in Textual. Be careful when using the requests module in Textual. requests doesn't support async, which means it will pause the UI. Better to use httpx, which support async out of the box. Otherwise, there is nothing wrong with your approach. Putting a Rich table in a widget is totally fine, but we do have a dedicated DataTable widget that integrates better with Textual. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Follow up of discussions/3328
I wanted to check whether we can
From the suggestions on above mentioned discussion, I tried mocking the service data with
set_interval
I was able to achieve my requirement, but is this the recommended way to do .? , specially if the no of tables to render are more than 7 - 10
Will there be any impact in the performance when doing live rendering ?
Beta Was this translation helpful? Give feedback.
All reactions