Remove API
Interface for remote data removal
This script provides a APIRemove context manager exposing functions for removing data from the server.
APIRemove
Bases: APIRemoveInternal
Interface to upload data to server
Source code in src/rmlab/api/remove.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
|
remove_data_full(scen_id)
async
Remove all the data of a scenario.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
scen_id | int | Scenario ID | required |
Source code in src/rmlab/api/remove.py
14 15 16 17 18 19 20 21 |
|
remove_data_historic(scen_id)
async
Remove all the historic flight data of a scenario.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
scen_id | int | Scenario ID | required |
Source code in src/rmlab/api/remove.py
23 24 25 26 27 28 29 30 |
|