VRt.Monitor [MT]
Project description
vrt_lss_monitor
Programming interface for the Veeroute Monitor tool.
Description
The server side of Veeroute Monitor.
Main responsibilities:
- storage and processing of waves (input data for planning and trips with their execution results)
- recalculation of trips during their execution
- creation and storage of statistics on trip execution results
- creation and storage of trip execution forecasts
Trip state model
| State code | Description | Expected action |
|---|---|---|
FREE |
Trip created, crew not assigned | Operator will assign a crew |
ASSIGNED |
Crew assigned | Operator will send the assignment to the crew |
SENT |
Assignment sent to the crew | Crew will confirm receipt |
RECEIVED |
Crew received the trip (fact TRIP_RECEIVED) |
Crew will accept or reject the trip |
CONFIRMED |
Crew agreed to perform the trip (fact TRIP_CONFIRMED) |
Crew will start performing the trip |
REJECTED |
Crew refused to perform the trip (fact TRIP_REJECTED) |
Operator will assign a new crew or cancel |
EXECUTING |
Crew is performing the trip (fact TRIP_EXECUTING) |
Crew will finish all tasks |
FINISHED |
Trip is finished — no work is left for the trip | This is a terminal status |
CANCELLED |
Trip cancelled by the operator | This is a terminal status |
State transitions:
Operator: FREE → ASSIGNED → SENT
Crew: RECEIVED → CONFIRMED / REJECTED → EXECUTING
Conditions: EXECUTING → FINISHED / CANCELLED
Entity diagram
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 7.37.3331
- Package version: 7.37.3331
- Generator version: 7.17.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Requirements.
Python 3.9+
Installation & Usage
pip install
If the python package is hosted on a repository, you can install directly using:
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)
Then import the package:
import vrt_lss_monitor
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install to install the package for all users)
Then import the package:
import vrt_lss_monitor
Tests
Execute pytest to run the tests.
Getting Started
Please follow the installation procedure and then run the following:
import vrt_lss_monitor
from vrt_lss_monitor.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.edge7.veeroute.cloud
# See configuration.py for a list of all supported configuration parameters.
configuration = vrt_lss_monitor.Configuration(
host = "https://api.edge7.veeroute.cloud"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization (JWT): ApiKeyAuth
configuration = vrt_lss_monitor.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with vrt_lss_monitor.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = vrt_lss_monitor.AnalyticsApi(api_client)
request_body = ['request_body_example'] # List[str] | Wave keys list.
var_from = '2026-04-21T09:30:00+03:00' # datetime | Date and time in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format. If no datetime is specified, audit data are returned from the beginning of the day. (optional)
to = '2026-04-21T18:00:00+03:00' # datetime | Date and time in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format. If not specified, data up to the current time is returned. (optional)
try:
# Analytics for the period
api_response = api_instance.generate_analytics_overview(request_body, var_from=var_from, to=to)
print("The response of AnalyticsApi->generate_analytics_overview:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling AnalyticsApi->generate_analytics_overview: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to https://api.edge7.veeroute.cloud
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AnalyticsApi | generate_analytics_overview | POST /monitor/analytics/overview | Analytics for the period |
| AutopilotApi | run_wave_autopilot | POST /monitor/waves/{file_key}/actions/autopilot | Run autopilot |
| AutopilotApi | stop_wave_autopilot | DELETE /monitor/waves/{file_key}/actions/autopilot | Stop autopilot |
| AutopilotApi | update_wave_autopilot | PUT /monitor/waves/{file_key}/actions/autopilot | Update autopilot |
| BackupsApi | create_backup | POST /monitor/backups/{target_folder_key} | Folder export |
| BackupsApi | restore_backup | PUT /monitor/backups/{target_folder_key} | Folder import |
| CrewsApi | create_crew | POST /monitor/crews | Crew creation |
| CrewsApi | delete_crew | DELETE /monitor/crews/{crew_key} | Delete crew |
| CrewsApi | delete_crews_batch | DELETE /monitor/crews/table/batch | Crews removal (batch) |
| CrewsApi | export_crews_json | POST /monitor/crews/actions/export/json | Export crews (JSON) |
| CrewsApi | export_crews_xlsx | POST /monitor/crews/actions/export/xlsx | Export crews (XLSX) |
| CrewsApi | import_crews_json | POST /monitor/crews/actions/import/json | Import crews (JSON) |
| CrewsApi | import_crews_xlsx | POST /monitor/crews/actions/import/xlsx | Import crews (XLSX) |
| CrewsApi | read_crew | GET /monitor/crews/{crew_key} | Getting crew information |
| CrewsApi | read_crews_table | POST /monitor/crews/table/batch | Reading crews (table) |
| CrewsApi | read_crews_trackpoints | POST /monitor/crews/table/trackpoints | Crew trackpoints |
| CrewsApi | read_self_crew_info | GET /monitor/crews/self/info | Self crew information |
| CrewsApi | update_crew | PUT /monitor/crews | Crew update |
| CrewsApi | update_self_crew_device | POST /monitor/crews/self/device | Update device |
| CrewsApi | update_self_crew_trackpoint | POST /monitor/crews/self/trackpoint | Update coordinates |
| CustomFieldsApi | create_customfields_settings | POST /monitor/settings/customfields/{settings_key} | Create fields settings |
| CustomFieldsApi | delete_customfields_settings | DELETE /monitor/settings/customfields/{settings_key} | Delete fields settings |
| CustomFieldsApi | list_customfields_settings | GET /monitor/settings/customfields | Reading fields settings list |
| CustomFieldsApi | read_customfields_settings | GET /monitor/settings/customfields/{settings_key} | Reading fields settings |
| CustomFieldsApi | set_customfields_settings_active_key | POST /monitor/settings/customfields | Setting the active customfields key |
| CustomFieldsApi | update_customfields_settings | PUT /monitor/settings/customfields/{settings_key} | Update fields settings |
| CustomIconsApi | create_customicons_settings | POST /monitor/settings/customicons/{settings_key} | Update icons settings |
| CustomIconsApi | delete_customicons_settings | DELETE /monitor/settings/customicons/{settings_key} | Delete icons settings |
| CustomIconsApi | list_customicons_settings | GET /monitor/settings/customicons | Reading icons settings list |
| CustomIconsApi | read_customicons_settings | GET /monitor/settings/customicons/{settings_key} | Reading icons settings |
| CustomIconsApi | set_customicons_settings_active_key | POST /monitor/settings/customicons | Setting the active customicons key |
| CustomIconsApi | update_customicons_settings | PUT /monitor/settings/customicons/{settings_key} | Update icons settings |
| DealsApi | create_deal | POST /monitor/deals | Deal creation |
| DealsApi | delete_deal | DELETE /monitor/deals/{deal_key} | Deal removal |
| DealsApi | delete_deals_batch | DELETE /monitor/deals/table/batch | Deals removal (batch) |
| DealsApi | read_deal | GET /monitor/deals/{deal_key} | Getting deal information |
| DealsApi | read_self_trips | GET /monitor/deals/self/trips | Self crew trips |
| DealsApi | update_deal | PUT /monitor/deals | Deal update |
| ExplorerApi | create_folder | POST /monitor/explorer | Create folder |
| ExplorerApi | create_folders_batch | POST /monitor/explorer/batch/folders | Create folders (batch) |
| ExplorerApi | delete_files_batch | DELETE /monitor/explorer/batch/files | Files removal (batch) |
| ExplorerApi | delete_folder | DELETE /monitor/explorer/{target_folder_key} | Folder removal |
| ExplorerApi | delete_folders_batch | DELETE /monitor/explorer/batch/folders | Folders removal (batch) |
| ExplorerApi | disable_sharing_batch | DELETE /monitor/explorer/batch/sharing | Disable sharing (batch) |
| ExplorerApi | enable_sharing_batch | PUT /monitor/explorer/batch/sharing | Enable sharing (batch) |
| ExplorerApi | read_file_key | GET /monitor/explorer/batch/files | File key |
| ExplorerApi | read_filesystem | GET /monitor/explorer | Getting a filesystem |
| ExplorerApi | read_filesystem_counters | GET /monitor/explorer/batch/counters | Filesystem counters |
| ExplorerApi | read_folder_key | POST /monitor/explorer/batch/folder-key | Folder key |
| ExplorerApi | read_folder_path | GET /monitor/explorer/{target_folder_key}/path | Folder path |
| ExplorerApi | read_folder_specification | GET /monitor/explorer/{target_folder_key}/specification | Folder specification |
| ExplorerApi | update_folder | PUT /monitor/explorer/{target_folder_key} | Update folder |
| FactsApi | create_fact | POST /monitor/waves/{file_key}/facts | Create fact |
| FactsApi | create_facts_batch | POST /monitor/waves/{file_key}/facts/batch/list | Create facts (batch) |
| FactsApi | delete_fact | DELETE /monitor/waves/{file_key}/facts/{essence_key} | Deleting one fact |
| FactsApi | delete_facts_batch | DELETE /monitor/waves/{file_key}/facts/batch/table | Delete facts (batch) |
| FactsApi | disable_facts_batch | DELETE /monitor/waves/{file_key}/facts/batch/ability | Disable facts |
| FactsApi | enable_facts_batch | PUT /monitor/waves/{file_key}/facts/batch/ability | Enable facts |
| FactsApi | read_fact | GET /monitor/waves/{file_key}/facts/{essence_key} | Read fact |
| FactsApi | read_facts_metrics | POST /monitor/waves/{file_key}/facts/batch/metrics | Fact metrics |
| FactsApi | read_facts_table | POST /monitor/waves/{file_key}/facts/batch/table | List of facts |
| FactsApi | update_fact | PUT /monitor/waves/{file_key}/facts | Update fact |
| HardlinksApi | create_hardlink | POST /monitor/waves/{file_key}/hardlinks | Create hardlink |
| HardlinksApi | delete_hardlink | DELETE /monitor/waves/{file_key}/hardlinks/{essence_key} | Remove hardlink |
| HardlinksApi | delete_hardlinks_batch | DELETE /monitor/waves/{file_key}/hardlinks/batch/table | Delete hardlinks (batch) |
| HardlinksApi | disable_hardlinks_batch | DELETE /monitor/waves/{file_key}/hardlinks/batch/ability | Disable hardlinks |
| HardlinksApi | enable_hardlinks_batch | PUT /monitor/waves/{file_key}/hardlinks/batch/ability | Enable hardlinks |
| HardlinksApi | read_hardlink | GET /monitor/waves/{file_key}/hardlinks/{essence_key} | Read hardlink |
| HardlinksApi | read_hardlinks_metrics | POST /monitor/waves/{file_key}/hardlinks/batch/metrics | Hardlink metrics |
| HardlinksApi | read_hardlinks_table | POST /monitor/waves/{file_key}/hardlinks/batch/table | List hardlinks |
| HardlinksApi | update_hardlink | PUT /monitor/waves/{file_key}/hardlinks | Update hardlink |
| LocationsApi | create_location | POST /monitor/waves/{file_key}/locations | Create location |
| LocationsApi | delete_location | DELETE /monitor/waves/{file_key}/locations/{essence_key} | Remove location |
| LocationsApi | delete_locations_batch | DELETE /monitor/waves/{file_key}/locations/batch/table | Delete locations (batch) |
| LocationsApi | read_location | GET /monitor/waves/{file_key}/locations/{essence_key} | Read location |
| LocationsApi | read_locations_geopoints | POST /monitor/waves/{file_key}/locations/batch/geopoints | Location geopoints |
| LocationsApi | read_locations_metrics | POST /monitor/waves/{file_key}/locations/batch/metrics | Location metrics |
| LocationsApi | read_locations_table | POST /monitor/waves/{file_key}/locations/batch/table | Locations list |
| LocationsApi | update_location | PUT /monitor/waves/{file_key}/locations | Update location |
| OrdersApi | create_order | POST /monitor/waves/{file_key}/orders | Create order |
| OrdersApi | delete_order | DELETE /monitor/waves/{file_key}/orders/{essence_key} | Deleting one order |
| OrdersApi | delete_orders_batch | DELETE /monitor/waves/{file_key}/orders/batch/table | Delete orders (batch) |
| OrdersApi | disable_orders_batch | DELETE /monitor/waves/{file_key}/orders/batch/ability | Disable orders |
| OrdersApi | enable_orders_batch | PUT /monitor/waves/{file_key}/orders/batch/ability | Enable orders |
| OrdersApi | read_order | GET /monitor/waves/{file_key}/orders/{essence_key} | Reading order |
| OrdersApi | read_orders_geopoints | POST /monitor/waves/{file_key}/orders/batch/geopoints | Order geopoints |
| OrdersApi | read_orders_metrics | POST /monitor/waves/{file_key}/orders/batch/metrics | Order metrics |
| OrdersApi | read_orders_table | POST /monitor/waves/{file_key}/orders/batch/table | List orders |
| OrdersApi | update_order | PUT /monitor/waves/{file_key}/orders | Update order |
| PerformersApi | create_performer | POST /monitor/waves/{file_key}/performers | Create performer |
| PerformersApi | delete_performer | DELETE /monitor/waves/{file_key}/performers/{essence_key} | Remove performer |
| PerformersApi | delete_performers_batch | DELETE /monitor/waves/{file_key}/performers/batch/table | Delete performers (batch) |
| PerformersApi | disable_performers_batch | DELETE /monitor/waves/{file_key}/performers/batch/ability | Disable performers |
| PerformersApi | enable_performers_batch | PUT /monitor/waves/{file_key}/performers/batch/ability | Enable performers |
| PerformersApi | read_performer | GET /monitor/waves/{file_key}/performers/{essence_key} | Read performer |
| PerformersApi | read_performers_geopoints | POST /monitor/waves/{file_key}/performers/batch/geopoints | Performer geopoints |
| PerformersApi | read_performers_metrics | POST /monitor/waves/{file_key}/performers/batch/metrics | Performer metrics |
| PerformersApi | read_performers_table | POST /monitor/waves/{file_key}/performers/batch/table | Performers list |
| PerformersApi | update_performer | PUT /monitor/waves/{file_key}/performers | Update performer |
| ReportsApi | generate_report_xlsx | POST /monitor/reports/xlsx | Report creating |
| ScenariosApi | create_scenario | POST /monitor/settings/scenarios | Create scenario |
| ScenariosApi | delete_scenario | DELETE /monitor/settings/scenarios/{scenario_key} | Delete scenario |
| ScenariosApi | list_scenarios | GET /monitor/settings/scenarios | Reading scenario list |
| ScenariosApi | read_scenario | GET /monitor/settings/scenarios/{scenario_key} | Reading scenario |
| ScenariosApi | update_scenario | PUT /monitor/settings/scenarios | Update scenario |
| StoreApi | delete_binary_file | DELETE /monitor/waves/{file_key}/store | Deleting one file |
| StoreApi | download_binary_file | GET /monitor/waves/{file_key}/store | Downloading one file |
| StoreApi | upload_binary_file | POST /monitor/waves/{file_key}/store | Uploading one file |
| SystemApi | check | GET /monitor/system/check | Checking the availability |
| SystemApi | file | GET /monitor/file/{filename} | Getting the documentation |
| SystemApi | version | GET /monitor/system/version | Getting the service version |
| TrackerApi | generate_order_tracker_key | POST /monitor/tracker/waves/{file_key}/orders/{essence_key} | Order mark |
| TrackerApi | track_order | GET /monitor/tracker/orders/{tracker_key} | Order tracking |
| TransportsApi | create_transport | POST /monitor/waves/{file_key}/transports | Create transport |
| TransportsApi | delete_transport | DELETE /monitor/waves/{file_key}/transports/{essence_key} | Remove transport |
| TransportsApi | delete_transports_batch | DELETE /monitor/waves/{file_key}/transports/batch/table | Delete transports (batch) |
| TransportsApi | disable_transports_batch | DELETE /monitor/waves/{file_key}/transports/batch/ability | Disable transports |
| TransportsApi | enable_transports_batch | PUT /monitor/waves/{file_key}/transports/batch/ability | Enable transports |
| TransportsApi | read_transport | GET /monitor/waves/{file_key}/transports/{essence_key} | Reading transport |
| TransportsApi | read_transports_geopoints | POST /monitor/waves/{file_key}/transports/batch/geopoints | Transport geopoints |
| TransportsApi | read_transports_metrics | POST /monitor/waves/{file_key}/transports/batch/metrics | Transport metrics |
| TransportsApi | read_transports_table | POST /monitor/waves/{file_key}/transports/batch/table | Transport list |
| TransportsApi | update_transport | PUT /monitor/waves/{file_key}/transports | Update transport |
| TripsApi | create_trip | POST /monitor/waves/{file_key}/trips | Trip create |
| TripsApi | delete_custom_tracks | DELETE /monitor/waves/{file_key}/trips/batch/tracks-custom | Remove custom tracks |
| TripsApi | delete_trip | DELETE /monitor/waves/{file_key}/trips/{essence_key} | Delete trip |
| TripsApi | delete_trips_batch | DELETE /monitor/waves/{file_key}/trips/batch/table | Delete trips (batch) |
| TripsApi | exec_trips_batch | POST /monitor/waves/{file_key}/trips/actions/exec | Run trips (batch) |
| TripsApi | load_custom_tracks | POST /monitor/waves/{file_key}/trips/batch/tracks-custom | Load custom tracks |
| TripsApi | read_roundtrips_metrics | POST /monitor/waves/{file_key}/roundtrips/batch/metrics | Roundrips metrics |
| TripsApi | read_roundtrips_table | POST /monitor/waves/{file_key}/roundtrips/batch/table | Reading roundrips (table) |
| TripsApi | read_trip | GET /monitor/waves/{file_key}/trips/{essence_key} | Read trip |
| TripsApi | read_trip_available_crews | POST /monitor/waves/{file_key}/trips/{essence_key}/crews/available | Read available crews |
| TripsApi | read_trip_data | GET /monitor/waves/{file_key}/trips/{essence_key}/data/batch/mobile | Data from trip |
| TripsApi | read_trip_facts | GET /monitor/waves/{file_key}/trips/{essence_key}/facts/batch/mobile | Facts from trip |
| TripsApi | read_trip_stops | POST /monitor/waves/{file_key}/trips/{essence_key}/stops/batch/table | Trip stops list |
| TripsApi | read_trip_track_history | GET /monitor/waves/{file_key}/trips/{essence_key}/tracks-history | Historical track of the trip |
| TripsApi | read_trip_track_plan | GET /monitor/waves/{file_key}/trips/{essence_key}/tracks-plan | Planned trip track |
| TripsApi | read_trips_charts | POST /monitor/waves/{file_key}/trips/batch/charts | Trips chart |
| TripsApi | read_trips_metrics | POST /monitor/waves/{file_key}/trips/batch/metrics | Trips metrics |
| TripsApi | read_trips_table | POST /monitor/waves/{file_key}/trips/batch/table | Reading trips (table) |
| TripsApi | read_trips_tracks | POST /monitor/waves/{file_key}/trips/batch/tracks/{tracks_type} | Trip tracks |
| TripsApi | stop_trips_batch | DELETE /monitor/waves/{file_key}/trips/actions/exec | Stop trips (batch) |
| TripsApi | update_trip | PUT /monitor/waves/{file_key}/trips | Trip update |
| UserApi | create_user_settings | POST /monitor/settings/user/{settings_key} | Create user settings |
| UserApi | delete_user_settings | DELETE /monitor/settings/user/{settings_key} | Delete user settings |
| UserApi | list_user_settings | GET /monitor/settings/user | Reading user settings list |
| UserApi | read_user_settings | GET /monitor/settings/user/{settings_key} | Reading user settings |
| UserApi | set_user_settings_active_key | POST /monitor/settings/user | Setting the active user settings key |
| UserApi | update_user_settings | PUT /monitor/settings/user/{settings_key} | Update user settings |
| WavesApi | create_wave | POST /monitor/waves | Create wave |
| WavesApi | delete_wave | DELETE /monitor/waves/{file_key} | Wave removal |
| WavesApi | duplicate_wave | POST /monitor/waves/{file_key}/actions/duplicate | Wave duplicate |
| WavesApi | export_json | POST /monitor/waves/{file_key}/actions/export/json | Export (JSON) |
| WavesApi | export_xlsx | POST /monitor/waves/{file_key}/actions/export/xlsx | Export (XLSX) |
| WavesApi | import_experiment_from_studio | POST /monitor/waves/{file_key}/import/experiment/{studio_experiment_key} | Import from Studio |
| WavesApi | import_json | POST /monitor/waves/{file_key}/actions/import/json | Import (JSON) |
| WavesApi | import_xlsx | POST /monitor/waves/{file_key}/actions/import/xlsx | Import (XLSX) |
| WavesApi | read_wave | GET /monitor/waves/{file_key} | Reading wave |
| WavesApi | read_wave_path | GET /monitor/waves/{file_key}/actions/locate | Wave path |
| WavesApi | read_waves_table | GET /monitor/waves/batch/table | Waves list (table) |
| WavesApi | run_wave_validation | POST /monitor/waves/{file_key}/actions/validation | Run validation |
| WavesApi | search_waves | GET /monitor/waves/batch/search | Wave search |
| WavesApi | update_wave_specification | PUT /monitor/waves/{file_key} | Wave update |
Documentation For Models
- ActualizeSettings
- AnalyticsChart
- AnalyticsChartType
- AnalyticsElement
- AnalyticsElementType
- AnalyticsMetrics
- AnalyticsOverview
- AnalyticsThreshold
- AnalyticsThresholdType
- AssignedPerformer
- AssignedTransport
- Attribute
- BasicState
- Box
- BoxCompatibilities
- BoxLimits
- BreakRules
- CalculationInfo
- CalculationSettings
- CalculationState
- CalculationStatus
- Capacity
- CapacityCost
- CapacityLimit
- CapacityMultiplier
- CapacityStatisticsLoad
- CapacityStatisticsRatio
- CapacityStatisticsSum
- Cargo
- CargoAction
- CargoActionType
- CargoCompatibilities
- CargoInvoice
- CargoInvoiceDetail
- CargoInvoiceHonestSign
- CargoInvoiceReceipt
- CargoInvoiceTax
- CargoRotationType
- CheckResult
- CompatibilityPenalty
- Crew
- CrewComposition
- CrewDevice
- CrewSpecification
- CrewStatus
- CrewTrackpoint
- CrewTrackpointList
- CustomfieldConvertRule
- CustomfieldEntityType
- CustomfieldsSettings
- Deal
- DealSpecification
- DealTrip
- Demand
- DemandExtraDuration
- DemandType
- EntityError
- EntityErrorType
- EntityPath
- EntityType
- EntityWarning
- EntityWarningType
- ExperimentCheck
- ExperimentSettings
- ExperimentStatistics
- ExtensionSettings
- Fact
- FactLore
- FactStatus
- FactType
- FeatureLifetime
- FileNamePath
- FileSpecification
- Filesystem
- FilesystemColumnType
- FilesystemCounters
- FilesystemPath
- Folder
- FolderCounters
- FolderSpecification
- FolderType
- General400
- General402
- General403
- General404
- General404Detail
- General429
- General500
- GeneralStatistics
- GeoSettings
- Geopoint
- Hardlink
- HardlinkElement
- HardlinkElementType
- LinkedEssence
- LoadStatistics
- Location
- LocationCargosLimit
- LocationCompatibilities
- LocationLimit
- LocationLimitStatistics
- LocationStatistics
- LocationTimetableElement
- LocationTransportsLimit
- LoreDemandCancelled
- LoreDemandDone
- LoreDemandStart
- LoreJobDone
- LoreNewLocation
- LoreOrderDone
- LoreTripPrecedenceChanged
- Measurements
- MobileFact
- MobileTripData
- ModelBreak
- Order
- OrderCompatibilities
- Performer
- PerformerCompatibilities
- PerformerLimits
- PerformerShift
- PerformerTariff
- PerformerTariffConstraint
- PlanSettings
- PlanStatistics
- PossibleEvent
- Quality
- RemovedItems
- ReplanSettings
- ReplanStrategy
- ReportType
- Rest
- RestRules
- RoundtripStatistics
- RoutingMatrix
- RoutingMatrixWaypoint
- RoutingTransportMatrix
- Scenario
- ScenarioJob
- SchemaError
- Service
- SettingsKeyList
- StopDemand
- StopStatistics
- TableCrew
- TableCrewColumnType
- TableCrewFields
- TableCrewFilter
- TableCrewFilterList
- TableCrewList
- TableCustomfields
- TableCustomfieldsColumnType
- TableDataStats
- TableFact
- TableFactColumnType
- TableFactFields
- TableFactFilter
- TableFactFilterList
- TableFactList
- TableFactMetrics
- TableFactMetricsFilterList
- TableFilterBoolList
- TableFilterDatetimeRange
- TableFilterDurationRange
- TableFilterEnumList
- TableFilterFloatRange
- TableFilterIntRange
- TableFilterStringList
- TableFilterStringSearch
- TableFilterType
- TableHardlink
- TableHardlinkColumnType
- TableHardlinkFields
- TableHardlinkFilter
- TableHardlinkFilterList
- TableHardlinkList
- TableHardlinkMetrics
- TableHardlinkMetricsFilterList
- TableListCounters
- TableListCountersDetail
- TableLocation
- TableLocationColumnType
- TableLocationFields
- TableLocationFilter
- TableLocationFilterList
- TableLocationList
- TableLocationMetrics
- TableLocationMetricsFilterList
- TableOrder
- TableOrderColumnType
- TableOrderFields
- TableOrderFilter
- TableOrderFilterList
- TableOrderList
- TableOrderMetrics
- TableOrderMetricsFilterList
- TablePerformer
- TablePerformerColumnType
- TablePerformerFields
- TablePerformerFilter
- TablePerformerFilterList
- TablePerformerList
- TablePerformerMetrics
- TablePerformerMetricsFilterList
- TableRoundtrip
- TableRoundtripColumnType
- TableRoundtripFields
- TableRoundtripFilter
- TableRoundtripFilterList
- TableRoundtripList
- TableRoundtripMetrics
- TableRoundtripMetricsFilterList
- TableTransport
- TableTransportColumnType
- TableTransportFields
- TableTransportFilter
- TableTransportFilterList
- TableTransportList
- TableTransportMetrics
- TableTransportMetricsFilterList
- TableTrip
- TableTripColumnType
- TableTripFields
- TableTripFilter
- TableTripFilterList
- TableTripList
- TableTripMetrics
- TableTripMetricsFilterList
- TableTripStop
- TableTripStopColumnType
- TableTripStopFields
- TableTripStopFilter
- TableTripStopFilterList
- TableTripStopList
- TableWaveColumnType
- TableWaveList
- TaskStatistics
- TimeWindow
- TimeWindowViolationDetail
- TimeWindowViolations
- Tracedata
- Track
- TrackList
- TrackListCustom
- TrackType
- TrackerOrderInfo
- Trackpoint
- Translations
- Transport
- TransportCapacityMultiplier
- TransportCompatibilities
- TransportLimits
- TransportLoad
- TransportShift
- TransportSpeedMultiplier
- TransportTariff
- TransportTariffConstraint
- TransportType
- Trip
- TripAssumptions
- TripDemandPrecedence
- TripExpectations
- TripPenalties
- TripStartTimeStrategy
- TripState
- TripStateFlag
- TripStatistics
- TripStatus
- TripsSettings
- Universal400WithErrorsAndWarnings
- UniversalData
- UnplannedItems
- VersionResult
- Wave
- WaveAutopilot
- WaveAutopilotEvent
- WaveAutopilotSettings
- WebCrew
- WebFact
- WebHardlink
- WebLocation
- WebLocationGeopoint
- WebLocationGeopointList
- WebOrder
- WebOrderGeopoint
- WebOrderGeopointList
- WebPerformer
- WebPerformerGeopoint
- WebPerformerGeopointList
- WebTransport
- WebTransportGeopoint
- WebTransportGeopointList
- WebTrip
- WebTripChart
- WebTripChartDemand
- WebTripChartList
- WorkAndRestRules
Documentation For Authorization
Authentication schemes defined for the API:
ApiKeyAuth
- Type: Bearer authentication (JWT)
Author
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vrt_lss_monitor-7.37.3331-py3-none-any.whl.
File metadata
- Download URL: vrt_lss_monitor-7.37.3331-py3-none-any.whl
- Upload date:
- Size: 839.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea802824d355ba8c0e0ea6f1bad3349058c7909a2432eeb7aeb417827321d854
|
|
| MD5 |
7437e659f95366b5b20a693485090c21
|
|
| BLAKE2b-256 |
971c6314acebcfda17f0029628616b80914c3aba3e0804c9464b70f44baf9641
|