Multi-carrier shipping API integration with python
Project description
karrio is a multi-carrier shipping SDK.
The key features are:
- Unified API: A standardized set of models representing the common shipping data (
Address
,Parcel
,Shipment
...) - Intuitive API: A library that abstracts and unifies the typical shipping API services (
Rating
,Shipping
,Tracking
...) - Multi-carrier: Integrate karrio once and connect to multiple shipping carrier APIs
- Custom carrier: A framework to integrate a shipping carrier services within hours instead of months
Requirements
Python 3.7+
Installation
# install karrio core
pip install karrio
# eg: install the karrio canadapost extention
pip install karrio.canadapost
Additional carrier extensions
karrio.aramex
karrio.australiapost
karrio.canadapost
karrio.canpar
karrio.dhl-express
karrio.dhl-universal
karrio.dicom
karrio.fedex
karrio.purolator
karrio.royalmail
karrio.sendle
karrio.sf-express
karrio.tnt
karrio.ups
karrio.usps
karrio.usps-international
karrio.yanwen
karrio.yunexpress
Usage
Rates Fetching
- Fetch shipping rates
import karrio
from karrio.core.models import Address, Parcel, RateRequest
from karrio.mappers.canadapost.settings import Settings
# Initialize a carrier gateway
canadapost = karrio.gateway["canadapost"].create(
Settings(
username="6e93d53968881714",
password="0bfa9fcb9853d1f51ee57a",
customer_number="2004381",
contract_id="42708517",
test=True
)
)
# Fetching shipment rates
# Provide the shipper's address
shipper = Address(
postal_code="V6M2V9",
city="Vancouver",
country_code="CA",
state_code="BC",
address_line1="5840 Oak St"
)
# Provide the recipient's address
recipient = Address(
postal_code="E1C4Z8",
city="Moncton",
country_code="CA",
state_code="NB",
residential=False,
address_line1="125 Church St"
)
# Specify your package dimensions and weight
parcel = Parcel(
height=3.0,
length=6.0,
width=3.0,
weight=0.5,
weight_unit='KG',
dimension_unit='CM'
)
# Prepare a rate request
rate_request = RateRequest(
shipper=shipper,
recipient=recipient,
parcels=[parcel],
services=["canadapost_xpresspost"],
)
# Send a rate request using a carrier gateway
response = karrio.Rating.fetch(rate_request).from_(canadapost)
# Parse the returned response
rates, messages = response.parse()
print(rates)
# [
# RateDetails(
# carrier_name="canadapost",
# carrier_id="canadapost",
# currency="CAD",
# transit_days=2,
# service="canadapost_xpresspost",
# discount=1.38,
# base_charge=12.26,
# total_charge=13.64,
# duties_and_taxes=0.0,
# extra_charges=[
# ChargeDetails(name="Automation discount", amount=-0.37, currency="CAD"),
# ChargeDetails(name="Fuel surcharge", amount=1.75, currency="CAD"),
# ],
# meta=None,
# id=None,
# )
# ]
Resources
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
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
karrio-2023.9.2-py3-none-any.whl
(158.9 kB
view details)
File details
Details for the file karrio-2023.9.2-py3-none-any.whl
.
File metadata
- Download URL: karrio-2023.9.2-py3-none-any.whl
- Upload date:
- Size: 158.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b2abbb0d43e63d5bb2a7266edd62725ffb8573d521f75b2c55ca72781e3e277 |
|
MD5 | 6cf5f01c39acce4c582734461347d08c |
|
BLAKE2b-256 | 39476989042b1567513e7995d891dc7de9d8b2b8cde3d5bae2b8ba194bb5c7e5 |