Skip to content

Commit

Permalink
download -> download_order
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenhillier committed Nov 1, 2024
1 parent 32c7589 commit c5dbea2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/get-started/sync-client-quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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
Expand Down

0 comments on commit c5dbea2

Please sign in to comment.