You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scrape the top 100 movies of all time from a website. Generate a text file called `movies.txt` that lists the movie titles in ascending order (starting from 1).
6
+
The result should look something like this:
7
+
8
+
```
9
+
1) The Godfather
10
+
2) The Empire Strikes Back
11
+
3) The Dark Knight
12
+
4) The Shawshank Redemption
13
+
... and so on
14
+
```
15
+
The central idea behind this project is to be able to use BeautifulSoup to obtain some data - like movie titles - from a website like Empire's (or from, say Timeout or Stacker that have curated similar lists).
16
+
17
+
### ⚠️ Important: Use the Internet Archive's URL
18
+
19
+
Since websites change very frequently, **use this link**
0 commit comments