diff --git a/README.md b/README.md index 24a8ce8a2..3118b6a31 100644 --- a/README.md +++ b/README.md @@ -70,13 +70,13 @@ Taipy is a Two-in-One Tool for UI Generation and Scenario/Data Management ## ⚙️ Quickstart -To install Taipy stable release run: +To install the Taipy stable release run: ```bash 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/).
+To install Taipy on a Conda Environment or from a source, please refer to the [Installation Guide](https://docs.taipy.io/en/latest/installation/).
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.
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 import taipy as tp @@ -169,10 +169,10 @@ if __name__ == "__main__": # Taipy User Interface # Let's add a GUI to our Scenario Management for a full application - # Get list of genres + # Get the list of genres genres = [ "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