triflix commited on
Commit
c22b752
·
verified ·
1 Parent(s): 3bb5d2e

Update app/data.py

Browse files
Files changed (1) hide show
  1. 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="Inception (2010)",
13
- embed_url="https://short.icu/example1",
14
- description="A thief who steals corporate secrets through dream-sharing technology.",
15
- release_year=2010,
16
- rating=8.8
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
  ]