6.9 Installing the Package Dependencies

To make it easier to track packages being handled by FedEx or UPS, we are going to use a Python package called packagetrack. This wrapper helps parse the XML-formatted tracking data provided by the courier’s web services, making it much easier to handle the data. While it would have been possible to use a Python screen-scraping library like Beautiful Soup, such solutions can be brittle. Not to mention, couriers the size of FedEx and UPS offer comprehensive APIs to their web services partially to discourage screen scrapers from data harvesting their sites. As such, before installing the packagetracklibrary, you will need to use an existing UPS and FedEx customer account to sign up for each company’s service APIs. If you do not already have a customer account number and login, you will need to visit each company’s website and create a new account. The account creation process requires a valid credit card number (used to bill for parcel shipping charges).

With a valid username, password, and account number in hand, visit each company’s respective developer portals to sign up for a production web service API key (for FedEx) or license number (for UPS). FedEx will also generate additional security credentials (key password and meter number) when you request the production key. You will need these values to call the respective courier’s web service APIs.

Next, we will install the latest packagetrack package. However, instead of retrieving it via the simple easy_install Python package retrieval and installation utility, I suggest using git to clone a fork of packagetrack maintained by Michael Stella.[60] In addition to Michael’s packagetrack, download his fork of its dependency, python-fedex, which fixes a parsing issue with the FedEx XML payload.[61] The python-fedex package also relies on one more Python library dependency, called the suds library. This is a Simple Object Access Protocol (SOAP) library implementation for Python that python-fedex uses to parse the SOAP XML-wrapped payload received by the FedEx web service. Use the sudo easy_install suds Python command to automatically download and install the suds package.

Next, install both the python-fedex and packagetrack packages via the sudo python setup.py install command in the terminal window. Ensure that the packages were successfully installed by launching the Python interpreter and typing python in the terminal window. At the >>> prompt, type import packagetrack and hit return. If no error messages appeared, you installed the packages correctly.

All the other packages we will call upon in the delivery detector script are included with the standard Python 2.5 or higher distribution. With the packagetrack dependencies and courier’s web service API key requirements satisfied, we are ready to write the delivery monitoring script.

Programming Your Home
cover.xhtml
f_0000.html
f_0001.html
f_0002.html
f_0003.html
f_0004.html
f_0005.html
f_0006.html
f_0007.html
f_0008.html
f_0009.html
f_0010.html
f_0011.html
f_0012.html
f_0013.html
f_0014.html
f_0015.html
f_0016.html
f_0017.html
f_0018.html
f_0019.html
f_0020.html
f_0021.html
f_0022.html
f_0023.html
f_0024.html
f_0025.html
f_0026.html
f_0027.html
f_0028.html
f_0029.html
f_0030.html
f_0031.html
f_0032.html
f_0033.html
f_0034.html
f_0035.html
f_0036.html
f_0037.html
f_0038.html
f_0039.html
f_0040.html
f_0041.html
f_0042.html
f_0043.html
f_0044.html
f_0045.html
f_0046.html
f_0047.html
f_0048.html
f_0049.html
f_0050.html
f_0051.html
f_0052.html
f_0053.html
f_0054.html
f_0055.html
f_0056.html
f_0057.html
f_0058.html
f_0059.html
f_0060.html
f_0061.html
f_0062.html
f_0063.html
f_0064.html
f_0065.html
f_0066.html
f_0067.html
f_0068.html
f_0069.html
f_0070.html
f_0071.html
f_0072.html
f_0073.html
f_0074.html
f_0075.html
f_0076.html
f_0077.html
f_0078.html
f_0079.html
f_0080.html
f_0081.html
f_0082.html
f_0083.html
f_0084.html
f_0085.html
f_0086.html
f_0087.html
f_0088.html
f_0089.html
f_0090.html
f_0091.html
f_0092.html
f_0093.html
f_0094.html
f_0095.html
f_0096.html
f_0097.html
f_0098.html
f_0099.html
f_0100.html
f_0101.html
f_0102.html
f_0103.html
f_0104.html
f_0105.html
f_0106.html
f_0107.html
f_0108.html
f_0109.html
f_0110.html
f_0111.html
f_0112.html
f_0113.html
f_0114.html
f_0115.html
f_0116.html
f_0117.html
f_0118.html
f_0119.html
f_0120.html
f_0121.html
f_0122.html
f_0123.html
f_0124.html
f_0125.html