Shippex
Shippex is an abstraction of commonly used features in shipping with various carriers. It provides a (hopefully) pleasant API to work with carrier-provided web interfaces for fetching rates and printing shipping labels.
As of now, only UPS and USPS are supported. More carrier support will come in the future. Units of measurement are mostly hardcoded to inches and miles.
Docs: https://hexdocs.pm/shippex/Shippex.html
Installation
-
Add
shippexto your list of dependencies inmix.exs:
def deps do
[{:shippex, "~> 0.6"}]
end-
Ensure
shippexis started before your application:
def application do
[applications: [:shippex]]
endFetching rates
origin = Shippex.Address.new(%{
name: "Earl G",
phone: "123-123-1234",
address: "9999 Hobby Lane",
address_line_2: nil,
city: "Austin",
state: "TX",
zip: "78703"
})
destination = Shippex.Address.new(%{
name: "Bar Baz",
phone: "123-123-1234",
address: "1234 Foo Blvd",
address_line_2: nil,
city: "Plano",
state: "TX",
zip: "75074",
country: "US" # optional
})
package = Shippex.Package.new(%{
length: 8,
width: 8,
height: 4,
weight: 5,
description: "Headphones",
monetary_value: 20 # optional
})
shipment = Shippex.Shipment.new(origin, destination, package)
# Fetch rates
rates = Shippex.fetch_rates(shipment, carriers: :usps)
# Accept one of the services and print the label
{:ok, rate} = Enum.shuffle(rates) |> hd
# Fetch the label. Includes the tracking number and a gif image of the label.
{:ok, transaction} = Shippex.create_transaction(shipment, rate.service)
rate = transaction.rate
label = transaction.label
# Print the price
IO.puts(rate.price)
# Write the label to disk.
File.write!("#{label.tracking_number}.#{label.format}",
Base.decode64!(label.image))TODO:
Carrier support:
- UPS
- USPS
- FedEx