Rapidata order
RapidataOrder #
RapidataOrder(
order_id: str,
dataset: Optional[RapidataDataset],
openapi_service: OpenAPIService,
name: str,
)
Represents a Rapidata order.
Source code in src/rapidata/rapidata_client/order/rapidata_order.py
dataset
property
#
The dataset associated with the order. Returns: The RapidataDataset instance.
submit #
get_status #
Gets the status of the order.
Returns:
Type | Description |
---|---|
str
|
The status of the order. |
display_progress_bar #
Displays a progress bar for the order processing using tqdm.
Prameter
How often to refresh the progress bar, in seconds.
Source code in src/rapidata/rapidata_client/order/rapidata_order.py
get_results #
Gets the results of the order. If the order is still processing, this method will block until the order is completed and then return the results.
Returns:
Type | Description |
---|---|
dict[str, Any]
|
The results of the order. |