From c5dbea2389f598c5da0d53a7e51410e3cb94cc4b Mon Sep 17 00:00:00 2001 From: Steve Hillier Date: Fri, 1 Nov 2024 13:12:55 -0700 Subject: [PATCH] download -> download_order --- docs/get-started/sync-client-quick-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/get-started/sync-client-quick-start.md b/docs/get-started/sync-client-quick-start.md index 7450e08c..7c394e08 100644 --- a/docs/get-started/sync-client-quick-start.md +++ b/docs/get-started/sync-client-quick-start.md @@ -161,7 +161,7 @@ and asset types. Use the `order_request` module to build an order request, and then use the `orders.create_order()` method to place the order. -Orders take time to process. You can use the `orders.wait()` method to wait for the order to be ready, and then use the `orders.download()` method to download the assets. +Orders take time to process. You can use the `orders.wait()` method to wait for the order to be ready, and then use the `orders.download_order()` method to download the assets. Warning: running the following code will result in quota usage based on your plan. @@ -187,7 +187,7 @@ def main(): # note: this may take several minutes. pl.orders.wait(order['id']) - pl.orders.download(order['id'], overwrite=True) + pl.orders.download_order(order['id'], overwrite=True) ``` ### Creating a subscription