Deliveree - The Python library for the Deliveree SDK
With Deliveree SDK, developers can integrate our on-demand local delivery platform into their applications. The SDK is designed for developers to check prices, book an immediate or scheduled delivery and follow updates until delivery completion.
- API version: 1.0.0
- Package version: 1.0.0
Please follow 3 steps bellow.
1 . Clone the repo from GitHub
2 . Import the SDK into your code
>>> from sdk_python import SdkPython
>>> deliveree_sdk = SdkPython()
3 . Check out the configurations under SDK_python/src/conf for each of 6 available APIs. Get your API keys and example data from [email protected] and update config files accordingly.
After getting API key and example data from [email protected], you can start testing the integration with 6 APIS below.
>>> SdkPython().get_quote(
api_key,
time_type,
pickup_time,
vehicle_type_id,
packs,
locations
)
>>> SdkPython().get_vehicle_types(api_key)
>>> SdkPython().get_list_dlvr(api_key)
>>> SdkPython().get_dlvr(api_key,id)
>>> SdkPython().create_dlvr(
api_key,
vehicle_type_id,
note,
time_type,
pickup_time,
job_order_number,
locations
)
>>> SdkPython().cancel_dlvr(api_key,id)