Skip to content

Commit 5fc2161

Browse files
Update main.py
1 parent 043891e commit 5fc2161

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

example1/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
URL = 'http://www.imdb.com/chart/top'
88

99
def main():
10-
response = requests.get(URL, country="US")
10+
response = requests.get(URL)
1111

1212
soup = BeautifulSoup(response.text, 'html.parser')
1313

@@ -43,4 +43,4 @@ def get_year(movie_tag):
4343

4444

4545
if __name__ == '__main__':
46-
main()
46+
main()

0 commit comments

Comments
 (0)