
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
The WEBFLEET.connect API connects software applications with the Webfleet fleet management solution. Via WEBFLEET.connect you can enhance the value of all types of business solutions, including routing and scheduling optimization, ERP, Transport Management System (TMS), supply chain planning, asset management, and much more.
Package to consume WEBFLEET.connect API.
The WEBFLEET.connect API connects software applications with the Webfleet fleet management solution. Via WEBFLEET.connect you can enhance the value of all types of business solutions, including routing and scheduling optimization, ERP, Transport Management System (TMS), supply chain planning, asset management, and much more.
Check also the version for:
Install it with:
$ pip install webfleet-connect
import webfleet_connect
wc = webfleet_connect.create()
response = wc.show_object_report_extern()
response.to_hash()
# [{:objectno=>"858EU4", :objectname=>"YRT-MMD2439", :objectclassname=>"sales", ...
webfleet_connect.create()
returns a new Session
object which has the capabilities to request info from the WEBFLEET.connect API.
The Webfleet credential are taken from the env variables WEBFLEET_CONNECT_ACCOUNT
, WEBFLEET_CONNECT_USERNAME
, WEBFLEET_CONNECT_PASSWORD
and WEBFLEET_CONNECT_APIKEY
(if you want to know more about env variables check this link).
If your system needs to work with multiple accounts or you need to specify the credentials dynamically for some other reason, you can do it this way:
params = {
'account': 'companyName',
'username': 'dev',
'password': 'VLm5PpiZST6U',
'apikey': 'ZSksD88s-F7Uf'
}
wc = webfleet_connect.create(params)
When you use one of the methods of this gem, like for example show_vehicle_report_extern
, this returns a WebfleetConnectResponse
object which you can do:
response = wc.show_vehicle_report_extern()
response.url() # gets the url to fetch the informtion from WEBFLEET.connect
response.status_code() # gets the status code of the request
str(response) # returns the response message as plain text as is returned by WEBFLEET.connectby WEBFLEET.connect
response.to_hash() # returns the data as a pyhton hash object
The methods available in this package are the same that are documented in the WEBFLEET.connect docs page just changed from cammelCase to snake_case. See below the list of methods.
In order to add params to a request is as easy as passing a hash of options in the request like:
params = {
'filterstring': 'ECO',
'objectgroupname': 'Vehiculos',
'ungroupedonly': True
}
response = wc.show_vehicle_report_extern(params)
The rangefrom_string
and rangeto_string
can accept Time
objects:
from datetime import datetime, timedelta
start_date = datetime.now()
end_date = start_date + timedelta(days=1)
params = {
'range_pattern': 'ud',
'rangefrom_string': start_date,
'rangeto_string': end_date
}
response = wc.show_event_report_extern(params)
The range_pattern
can accept the values:
today
,
yesterday
,
two_days_ago
,
three_days_ago
,
four_days_ago
,
five_days_ago
,
six_days_ago
,
current_week
,
last_week
,
two_weeks_ago
,
three_weeks_ago
,
floating_week
,
last_floating_week
,
two_floating_weeks_ago
,
three_floating_weeks_ago
,
current_month
,
last_month
,
two_months_ago
,
three_months_ago
,
user_defined_range
,
ud
params = { 'range_pattern': 'today' }
response = wc.show_event_report_extern(params)
The Session
object works with the default configuration:
'lang': 'en', 'format': 'json', 'useUTF8': False, 'useISO8601': False
but you can change the default configuration when you create the object:
credentials = {
'account': 'companyName',
'username': 'dev',
'password': 'VLm5PpiZST6U',
'apikey': 'ZSksD88s-F7Uf'
}
config = {
'lang': 'de',
'format': 'csv',
'useUTF8': True
}
params = credentials | config
wc = webfleet_connect.create(params)
Mesage queues:
Objects:
Orders:
Messages:
Drivers:
Addresses:
Events:
Trips and working times:
Miscellaneous reports:
Geocoding and routing:
Configuration and security:
User management:
Vehicle maintenance:
Reporting:
Areas:
LINK.connect:
Plugins:
FAQs
The WEBFLEET.connect API connects software applications with the Webfleet fleet management solution. Via WEBFLEET.connect you can enhance the value of all types of business solutions, including routing and scheduling optimization, ERP, Transport Management System (TMS), supply chain planning, asset management, and much more.
We found that webfleet-connect demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.