|
@@ -70,13 +70,13 @@ Taipy is a Two-in-One Tool for UI Generation and Scenario/Data Management
|
|
|
|
|
|
## ⚙️ Quickstart
|
|
## ⚙️ Quickstart
|
|
|
|
|
|
-To install Taipy stable release run:
|
|
|
|
|
|
+To install the Taipy stable release run:
|
|
|
|
|
|
```bash
|
|
```bash
|
|
pip install taipy
|
|
pip install taipy
|
|
```
|
|
```
|
|
|
|
|
|
-To install Taipy on a Conda Environment or from source, please refer to the [Installation Guide](https://docs.taipy.io/en/latest/installation/).<br />
|
|
|
|
|
|
+To install Taipy on a Conda Environment or from a source, please refer to the [Installation Guide](https://docs.taipy.io/en/latest/installation/).<br />
|
|
To get started with Taipy, please refer to the [Getting Started Guide](https://docs.taipy.io/en/latest/getting_started/).
|
|
To get started with Taipy, please refer to the [Getting Started Guide](https://docs.taipy.io/en/latest/getting_started/).
|
|
|
|
|
|
|
|
|
|
@@ -127,7 +127,7 @@ Check out the movie genre demo scenario creation with this [Demo](https://docs.t
|
|
|
|
|
|
This simple Taipy application demonstrates how to create a basic film recommendation system using Taipy.<br />
|
|
This simple Taipy application demonstrates how to create a basic film recommendation system using Taipy.<br />
|
|
The application filters a dataset of films based on the user's selected genre and displays the top seven films in that genre by popularity.
|
|
The application filters a dataset of films based on the user's selected genre and displays the top seven films in that genre by popularity.
|
|
-Here is the full code for both the frontend and backend of the application.
|
|
|
|
|
|
+Here is the full code for both the front-end and back-end of the application.
|
|
|
|
|
|
```python
|
|
```python
|
|
import taipy as tp
|
|
import taipy as tp
|
|
@@ -169,10 +169,10 @@ if __name__ == "__main__":
|
|
# Taipy User Interface
|
|
# Taipy User Interface
|
|
# Let's add a GUI to our Scenario Management for a full application
|
|
# Let's add a GUI to our Scenario Management for a full application
|
|
|
|
|
|
- # Get list of genres
|
|
|
|
|
|
+ # Get the list of genres
|
|
genres = [
|
|
genres = [
|
|
"Action", "Adventure", "Animation", "Children", "Comedy", "Fantasy", "IMAX"
|
|
"Action", "Adventure", "Animation", "Children", "Comedy", "Fantasy", "IMAX"
|
|
- "Romance","Sci-FI", "Western", "Crime", "Mystery", "Drama", "Horror", "Thriller", "Film-Noir","War", "Musical", "Documentary"
|
|
|
|
|
|
+ "Romance", "Sci-FI", "Western", "Crime", "Mystery", "Drama", "Horror", "Thriller", "Film-Noir", "War", "Musical", "Documentary"
|
|
]
|
|
]
|
|
|
|
|
|
# Initialization of variables
|
|
# Initialization of variables
|