Skip to content

Commit

Permalink
Update README.md (#1869)
Browse files Browse the repository at this point in the history
Made some small change will enhance the quilty of reading
  • Loading branch information
kushal34712 authored and jrobinAV committed Oct 3, 2024
1 parent 483ed86 commit f49b58e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).<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/).

&nbsp;
Expand Down Expand Up @@ -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 />
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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f49b58e

Please sign in to comment.