Skip to main content

Bosta Python SDK

Project description

Python SDK for integrating with Bosta.

Usage

import os
from bosta import *

bosta = Bosta(
    api_key=os.getenv('BOSTA_API_KEY'), api_base=os.getenv('BOSTA_API_BASE'))

receiver = Receiver(
    firstName='Lemuel', lastName='Formacil', phone='+201551234567')
pickup_address = Address(firstLine='1234 Some Place', city='EG-01')
dropoff_address = Address(firstLine='5678 Another Place', city='EG-01')

result = bosta.deliveries_create(
    receiver=receiver, pickupAddress=pickup_address,
    dropoff_address=dropoff_address)

bosta.deliveries_list(perPage=10, page=1)

bosta.deliveries_get(_id=result._id)

bosta.deliveries_update(_id=result._id, notes='Throw package into the window.')

bosta.deliveries_delete(_id=result._id)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bosta-0.1.0.tar.gz (28.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page