Programming Assignment: Assignment 2: Batch Data Processing from an API facing error

Programming Assignment: Assignment 2: Batch Data Processing from an API

Failed test case: Response output after Exercise 03 should be in JSON format. Error: Expecting value: line 1 column 1 (char 0).
Expected:
Valid JSON format,
but got:
e[0;31m---------------------------------------------------------------------------e[0m
e[0;31mNameErrore[0m Traceback (most recent call last)
Cell e[0;32mIn[97], line 1e[0m
e[0;32m----> 1e[0m responses_with_next[e[39m0e[39m]

e[0;31mNameErrore[0m: name ‘responses_with_next’ is not defined.

Hello @onemission,

I could reproduce the issue after paginated_with_next_new_releases you have an error from responses_with_next output. If your offset value is not updating you could check Exercise 1 get_new_releases that you are using the correct url (url=request_url). That will update your offset and don’t get that error. Hope it helps:

Thanks for the exact solution, It worked.