diff --git a/docs/quickstart/assessment/standalone_assessment.py b/docs/quickstart/assessment/standalone_assessment.py index aef0274..5361b6c 100644 --- a/docs/quickstart/assessment/standalone_assessment.py +++ b/docs/quickstart/assessment/standalone_assessment.py @@ -7,6 +7,7 @@ # Include server side Learnosity SDK, and set up variables related to user access from learnosity_sdk.request import Init, DataApi from learnosity_sdk.utils import Uuid +from learnosity_sdk._version import __version__ from .. import config # Load consumer key and secret from config.py # Include web server and Jinja templating libraries. from http.server import BaseHTTPRequestHandler, HTTPServer @@ -547,7 +548,6 @@ def do_GET(self) -> None:
This demo shows how to use the Data API to retrieve items from the Learnosity itembank.
-Using request() method with manual pagination via the 'next' pointer.
Using results_iter() method to automatically iterate over individual items.