Demo Application

Learn to build a fully functional Django shipment management system using Shippo APIs.

We'll cover the following...

In this lesson, we’ll see a sample Django application of a shipment management system. We’ve used the following endpoints in the application:

  1. Addresses: We’ll create to_address and from_address using the addresses endpoint.
  2. Parcels: We’ll create a parcel using the parcel's endpoint.
  3. Shipments: The addresses and the parcel above will be used to create a shipment object. The shipment object
...