Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit 352c324

Browse files
committed
typo fixes provided by Susanne
1 parent 239800e commit 352c324

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

exercises/week_6/assignment/exercise.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ In this assignment you are going to build a Python program to access the
44
[Apple iTunes Search Service](https://developer.apple.com/library/archive/documentation/AudioVideo/Conceptual/iTuneSearchAPI/Searching.html).
55
This service can be used to search information about musicians, albums, songs and so on.
66

7-
Using the following URL a search for the term _ramones_ and for the entity type
7+
Using the following URL, a search for the term _ramones_ and for the entity type
88
_album_ is performed:
99
[https://itunes.apple.com/search?term=ramones&entity=album](https://itunes.apple.com/search?term=ramones&entity=album)
1010

@@ -33,16 +33,16 @@ example result of the service:
3333
]
3434
}
3535

36-
The response in the example above consist of one result (`resultCount` is 1). This result is the album
37-
"Ramones" (element `collectionName`) by the artist "Ramones" (element `artistName`)
36+
The response in the example above consists of one result (`resultCount` is 1). This result is the album
37+
"Ramones" (element `collectionName`) by the artist "Ramones" (element `artistName`).
3838
The response is in [JSON](https://en.wikipedia.org/wiki/JSON) format.
3939

4040
The [Requests](https://docs.python-requests.org/en/latest/)
4141
library can be used to invoke the Apple iTunes Search Service.
42-
In order to perform a search a [GET request](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods)
42+
In order to perform a search, a [GET request](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods)
4343
needs to be performed. This is done using the `get()` function of the Requests library.
44-
After that the method `json()` of the Requests
45-
library can be used to mapped the response from [JSON](https://en.wikipedia.org/wiki/JSON)
44+
After that, the method `json()` of the Requests
45+
library can be used to map the response from [JSON](https://en.wikipedia.org/wiki/JSON)
4646
to the Python 🐍 data types `dict` and `list`.
4747

4848
---
@@ -64,7 +64,7 @@ Below is an example execution of the program. Note that the output is abbreviate
6464
# Hints
6565

6666
1. In Code Ocean it is not possible to access the iTunes search API. Therefore you should
67-
write and test you program on your own computer e.g. in a Jupyter notebook.
68-
1. Out tests in Code Ocean uses a [mock object](https://en.wikipedia.org/wiki/Mock_object) to check
67+
write and test your program on your own computer e.g. in a Jupyter notebook.
68+
1. Our tests in Code Ocean use a [mock object](https://en.wikipedia.org/wiki/Mock_object) to check
6969
your program. Therefore only the `get()` function and the `json()` method are supported. All other
70-
functions and methods of the Requests library will **not** work.
70+
functions and methods of the Requests library will **not** work.

0 commit comments

Comments
 (0)