Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 288 Bytes

USAGE.md

File metadata and controls

18 lines (13 loc) · 288 Bytes
import shippo

s = shippo.Shippo(
    api_key_header='<YOUR_API_KEY_HERE>',
    shippo_api_version='2018-02-08',
)


res = s.addresses.list()

if res is not None:
    # handle response
    pass