Update app/data.py
Browse files- app/data.py +17 -24
app/data.py
CHANGED
|
@@ -1,25 +1,18 @@
|
|
| 1 |
-
from .models import Movie
|
| 2 |
-
|
| 3 |
-
movie_data = [
|
| 4 |
-
Movie(
|
| 5 |
-
title="Rush (2013)",
|
| 6 |
-
embed_url="https://short.icu/N9uHP3Rwd",
|
| 7 |
-
description="The epic rivalry between Formula 1 drivers James Hunt and Niki Lauda.",
|
| 8 |
-
release_year=2013,
|
| 9 |
-
rating=8.1
|
| 10 |
-
),
|
| 11 |
-
Movie(
|
| 12 |
-
title="
|
| 13 |
-
embed_url="https://short.icu/
|
| 14 |
-
description="
|
| 15 |
-
release_year=
|
| 16 |
-
rating=
|
| 17 |
-
)
|
| 18 |
-
Movie(
|
| 19 |
-
title="The Dark Knight (2008)",
|
| 20 |
-
embed_url="https://short.icu/example2",
|
| 21 |
-
description="Batman faces his greatest challenge as the Joker wreaks havoc on Gotham City.",
|
| 22 |
-
release_year=2008,
|
| 23 |
-
rating=9.0
|
| 24 |
-
)
|
| 25 |
]
|
|
|
|
| 1 |
+
from .models import Movie
|
| 2 |
+
|
| 3 |
+
movie_data = [
|
| 4 |
+
Movie(
|
| 5 |
+
title="Rush (2013)",
|
| 6 |
+
embed_url="https://short.icu/N9uHP3Rwd",
|
| 7 |
+
description="The epic rivalry between Formula 1 drivers James Hunt and Niki Lauda.",
|
| 8 |
+
release_year=2013,
|
| 9 |
+
rating=8.1
|
| 10 |
+
),
|
| 11 |
+
Movie(
|
| 12 |
+
title="Chaava",
|
| 13 |
+
embed_url="https://short.icu/4i4zyhbNd",
|
| 14 |
+
description="",
|
| 15 |
+
release_year=2025,
|
| 16 |
+
rating=9
|
| 17 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
]
|