Questions tagged [taipy]

Taipy is an open-source Python library that aims to simplify front-end and back-end development for data-driven applications. Every question related to it can have this tag.

Taipy is an open-source Python library that aims to simplify front-end and back-end development for data-driven applications.

Taipy provides a simple and low-code syntax that accelerates the process of creating interactive and customizable multiple-page dashboards with augmented Markdown. Our web application builder generates highly interactive interfaces without requiring any knowledge of web development. Additionally, Taipy is designed to build powerful and customized data-driven back-end applications, with intuitive components to organize and manage data through pipelines and data flow orchestration.

59 questions
3
votes
2 answers

How to make editable tables in Taipy

I want to display an editable table in an expandable in Taipy. I tried the following code: def get_table(): dic = {"key": [1,2,3], "Value":[3,4,5]} return pd.DataFrame(dic) table = get_table() page_content = """ <|SHOW…
bobby
  • 71
  • 4
3
votes
1 answer

On_change callback does not provide the control id for number in TAipy

I want to update a partial dynamically. I want my partial named p to contain one number control for each row of a dataframe. So I have multiple controls. I am trying the following code: def display(state): scenario =…
bobby
  • 71
  • 4
3
votes
2 answers

Taipy core with Sqlite datanode doesn't connect

I'm trying to get Taipy core working with Sqlite but don't succeed. Taipy doesn't seem to be able to connect. Does anyone have a small working example? Regards, Markus I've tried to connect with e.g. the following settings: No username and…
Markus
  • 33
  • 4
3
votes
1 answer

Creating a User-Friendly Link Selector in Taipy: How to Display a List of Links in a Selector

I want to create a little Taipy application where I would be able to choose an image from a selector, table, or toggle. I have a list of image links that I need to display where users can choose one of the options. Is there a way to use a list with…
Areth
  • 185
  • 5
3
votes
1 answer

Troubleshooting Specific Button Visuals: How to Modify Individual Buttons Using CSS in Taipy

I'm new to Taipy and CSS and currently facing an issue where I'm unable to modify the visual appearance of specific buttons using CSS. Although I tried changing the 'class_name' of a particular button in my .css file, it didn't work as expected.…
Areth
  • 185
  • 5
3
votes
1 answer

Maps in Taipy GUI

Looking at the Taipy 1.0 GUI documentation (https://docs.taipy.io/en/latest/manuals/gui/), I couldn't find any graphics for maps. Is this something that will be provided in the future?
Alex Fleischer
  • 9,276
  • 2
  • 12
  • 15
2
votes
1 answer

Using a dynamic `read_query` in `configure_sql_data_node()` in taipy

We'd like to use configure_sql_data_node() where the read_query argument would be dynamic, in the sense that we would get some data from a data node and use that data to construct the query. E.g., you'd have a value month and the query would be in…
Irv
  • 540
  • 4
  • 13
2
votes
1 answer

Pandas, SQLite3 and SPARQL queries with Taipy

I'm constructing a dashboard with Taipy GUI. To do so, I'm using Pandas CSV, the easiest way to import a data frame. I don't deal much with numbers, but much more with strings. The idea is to create a form for people gathering evaluate (separate…
2
votes
1 answer

Textarea visual element?

Before all, congrats for the hard work ! Taipy is a wonderful toolbox to play around with and will be a great time-saver for us to build webapps with python We are currently building a small demonstrator for a NLP POC. We would like the user to be…
2
votes
1 answer

Creating subplots with Taipy

I’m trying to find some documentation about subplots in Taipy. Is it possible to do this with Taipy? Thanks in advance!
2
votes
1 answer

Taipy: No chart displayed probably due to "Invalid tag name 'text' in line"

I'm using taipy==1.1 and I have an issue with the rendering of my charts. Here is a snippet of my code: import pandas as pd from taipy import Gui ... total_cost = dataset['costInUsd'].sum() daily_costs = dataset.groupby(['date',…
Florian Vuillemot
  • 500
  • 1
  • 4
  • 10
2
votes
2 answers

Creating 3D scatter chart in Taipy

I was wondering how one would create a 3D scatter chart in Taipy. I tried this code initially: import pandas as pd import numpy as np from taipy import Gui df = pd.DataFrame(np.random.randint(0,100,size=(100, 3)),…
st_killer
  • 31
  • 5
1
vote
1 answer

Issue with "number_format" property in Taipy table rendering

How to use the "number_format" property in Taipy table? The documentation doesn't say anything on this subject. I expected something like .2f to show two decimals, but whatever I write here is just reproduced as plain text in the table. from…
Areth
  • 185
  • 5
1
vote
1 answer

Adding Horizontal or Vertical Lines in a Scatterplot using Taipy

I was creating a scatterplot using Taipy and wanted to know the best way to include horizontal or vertical lines on the plot. In Plotly, there is a convenient function called fig.add_vline() to add vertical lines to a scatterplot. However, I need…
Areth
  • 185
  • 5
1
vote
1 answer

How to get the selected filename from file_selector?

I want to display the selected filename when using file_selector for uploading a file. Through state.path I get the full path where the filename has a number between name and suffix like this .../accounts-config.5.yaml. Possible to filter the string…
Uwes
  • 17
  • 3
1
2 3 4