11 Comments
User's avatar
Omar AlSuwaidi's avatar

Thanks Avi as usual! While Taipy does offer major improvements over Streamlit; for me personally, nothing can beat Panel in this domain, recommend checking it out!

Avi Chawla's avatar

Oh is it, Omar? Have not had much experience with Panel so will definitely check it out. Thanks for sharing :)

Sebastian Gaviria's avatar

thanks for sharing your work!. Excellent!

Amar Harolikar's avatar

Excellent one. Loved it. Gonna try it

Arash Mahdian's avatar

Thanks Avi for sharing this. I have a question about the workflow of developing this in a jupyter nb.

Running the following, I can visit 127.0.0.1:5000 and see the contents.

from taipy import Gui

page = """

# First Taipy Web Application.

"""

Gui(page=page).run()

How would I proceed if I want to make any changes to the text and see the reflection on the page? Changing the text and rerunning the code will give me a 500 error.

Avi Chawla's avatar

Hey Arash

The procedure to use this in Jupyter notebook is slightly different that script. Please check this documentation page: https://docs.taipy.io/en/develop/manuals/gui/notebooks/

Essentially, the idea is to update the page contents to reflect changes in the app. Look for the .set_content() method on the above documentation page.

Sandee Richardson's avatar

♥️

Rupe's avatar

Any idea how taipy compares to plotly-dash? I'm not very familiar with dash but I know it uses callbacks.

Avi Chawla's avatar

I have had very little experience with Dash myself because I have often it's learning curve to be quite convoluted while Taipy is quite simple to use. Performance-wise, I am sorry, I don't have a benchmark for you right now, but I can check with the Taipy team if they have one :)

Gautam Naik's avatar

I am trying to run apache pyspark model on taipy cloud. how do I install java on it as i getting JAVA HOME not found error

Praveen Jana's avatar

Thanks Avi…. Actually I am waiting for callbacks support in streamlit desperately… Will try this now