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
Copy file name to clipboardExpand all lines: apps/10_movie_search/you_try/README.md
+13-4
Original file line number
Diff line number
Diff line change
@@ -2,20 +2,29 @@
2
2
3
3

4
4
5
-
If you want to try this yourself, try to build the interactive app above.
5
+
Your turn. Try to build the interactive app above.
6
6
7
-
This application use the OMDb API to search live movie data for movies matching the title in your search text. It focuses on being reliable even when the network fails or the user enters bad information.
7
+
This application use the Talk Python MovieDb API to search live movie data for movies
8
+
matching the title in your search text. It focuses on being reliable
9
+
even when the network fails or the user enters bad information.
8
10
9
11
Key concepts introduced
10
12
=================
11
13
12
14
**The API**
13
15
14
-
You can find the details of the JSON HTTP API at [www.omdbapi.com](http://www.omdbapi.com).
16
+
You can find the details of the JSON HTTP API at [movie_service.talkpython.fm](http://movie_service.talkpython.fm/).
15
17
16
18
**Try/Except Error Handling**
17
19
18
-
try: method1() method2() method3() except ConnectionError as ce: # handle network error except Exception as x: # handle general error
0 commit comments