Skip to content

Commit 6759991

Browse files
committed
updates for v2.4 release
1 parent 5d9032f commit 6759991

File tree

9 files changed

+91
-8
lines changed

9 files changed

+91
-8
lines changed

CHANGES.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ Change Log
33

44
2.4.0
55
-----
6+
67
* Pickup Service usingv11 WSDL (hornedbull)
7-
* TODO: Added examples, documentation and unit tests for Pickup Service.
8+
* Added documentation and unit tests for Pickup Service. (radzhome)
9+
* Update package data to include tools (noodlebreak)
810

911
2.3.1
1012
-----

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ include LICENSE.txt
22
include README.rst
33
recursive-include examples *.txt *.py
44
recursive-include docs *
5+
recursive-include fedex/tools *
56
recursive-include fedex/wsdl *

doc_src/release_notes.rst

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55
Change Log
66
==========
77

8+
2.4.0
9+
-----
10+
11+
* Pickup Service usingv11 WSDL (hornedbull)
12+
* Added documentation and unit tests for Pickup Service. (radzhome)
13+
* Update package data to include tools (noodlebreak)
14+
815
2.3.0
916
-----
1017

doc_src/services.rst

+8
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,14 @@ Validates the postal codes for a given address.
6565
.. autoclass:: fedex.services.country_service.FedexValidatePostalRequest
6666

6767

68+
Pickup Service
69+
--------------
70+
71+
Creates a fedex pickup request.
72+
73+
.. autoclass:: fedex.services.pickup_service.FedexCreatePickupRequest
74+
75+
6876
Package Movement Service
6977
------------------------
7078

epydoc_source/README.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@ using epydoc 3.0.1. The following was used to generate doc:
88
epydoc -v -o 2.X.X ../fedex/
99

1010
The epydoc documentation is hosted at https://pythonhosted.org/fedex/.
11-
Latest documentation is now generated using Sphinx.
11+
12+
Latest documentation is now generated using Sphinx. Updates can be made to the
13+
*.rst files in doc_src:
14+
15+
cd python-fedex/doc_src

examples/create_pickup.py

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
#!/usr/bin/env python
2+
"""
3+
This example shows how to create a pickup request
4+
"""
5+
import datetime
6+
7+
from example_config import CONFIG_OBJ
8+
from fedex.services.pickup_service import FedexCreatePickupRequest
9+
10+
customer_transaction_id = "*** PickupService Request v11 using Python ***" # Optional transaction_id
11+
pickup_service = FedexCreatePickupRequest(CONFIG_OBJ, customer_transaction_id)
12+
13+
pickup_service.OriginDetail.PickupLocation.Contact.PersonName = 'Sender Name'
14+
pickup_service.OriginDetail.PickupLocation.Contact.EMailAddress = '[email protected]'
15+
pickup_service.OriginDetail.PickupLocation.Contact.CompanyName = 'Acme Inc.'
16+
pickup_service.OriginDetail.PickupLocation.Contact.PhoneNumber = '9012638716'
17+
pickup_service.OriginDetail.PickupLocation.Address.StateOrProvinceCode = 'SC'
18+
pickup_service.OriginDetail.PickupLocation.Address.PostalCode = '29631'
19+
pickup_service.OriginDetail.PickupLocation.Address.CountryCode = 'US'
20+
pickup_service.OriginDetail.PickupLocation.Address.StreetLines = ['155 Old Greenville Hwy', 'Suite 103']
21+
pickup_service.OriginDetail.PickupLocation.Address.City = 'Clemson'
22+
# pickup_service.OriginDetail.PickupLocation.Address.UrbanizationCode = '' # For Puerto Rico only
23+
pickup_service.OriginDetail.PickupLocation.Address.Residential = False
24+
25+
# FRONT, NONE, REAR, SIDE
26+
# pickup_service.OriginDetail.PackageLocation = 'NONE'
27+
28+
# APARTMENT, BUILDING, DEPARTMENT, FLOOR, ROOM, SUITE
29+
# pickup_service.OriginDetail.BuildingPart = 'SUITE'
30+
31+
# Identifies the date and time the package will be ready for pickup by FedEx.
32+
pickup_service.OriginDetail.ReadyTimestamp = datetime.datetime.now().replace(microsecond=0).isoformat()
33+
34+
# Identifies the latest time at which the driver can gain access to pick up the package(s)
35+
pickup_service.OriginDetail.CompanyCloseTime = '23:00:00'
36+
37+
pickup_service.CarrierCode = 'FDXE'
38+
39+
pickup_service.TotalWeight.Units = 'LB'
40+
pickup_service.TotalWeight.Value = '1'
41+
pickup_service.PackageCount = '1'
42+
# pickup_service.OversizePackageCount = '1'
43+
44+
# pickup_service.CommodityDescription = ''
45+
46+
# DOMESTIC or INTERNATIONAL
47+
# pickup_service.CountryRelationship = 'DOMESTIC'
48+
49+
# See PickupServiceCategoryType
50+
# pickup_service.PickupServiceCategory = 'FEDEX_DISTANCE_DEFERRED'
51+
52+
pickup_service.send_request()
53+
54+
print pickup_service.response.HighestSeverity == 'SUCCESS'
55+
print pickup_service.response.Notifications[0].Message

fedex/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@
5252
our U{Github project<http://github.com/gtaylor/python-fedex/>} and enter
5353
an issue in the U{Issue Tracker<http://github.com/gtaylor/python-fedex/issues>}.
5454
"""
55-
VERSION = __version__ = '2.3.1'
55+
VERSION = __version__ = '2.4.0'

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
'Topic :: Software Development :: Libraries :: Python Modules'
1515
]
1616

17-
KEYWORDS = 'fedex soap suds wrapper rate location ship service'
17+
KEYWORDS = 'fedex soap suds wrapper rate track avs location ship pickup country availability commitment package service'
1818

1919
setup(name='fedex',
2020
version=fedex.VERSION,
@@ -27,7 +27,7 @@
2727
download_url='http://pypi.python.org/pypi/fedex/',
2828
packages=['fedex', 'fedex.services', 'fedex.printers'],
2929
package_dir={'fedex': 'fedex'},
30-
package_data={'fedex': ['wsdl/*.wsdl', 'wsdl/test_server_wsdl/*.wsdl', 'tools/*.py']},
30+
package_data={'fedex': ['wsdl/*.wsdl', 'wsdl/test_server_wsdl/*.wsdl', 'tools/*']},
3131
platforms=['Platform Independent'],
3232
license='BSD',
3333
classifiers=CLASSIFIERS,

tests/test_pickup_service.py

+9-3
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,17 @@
2222
@unittest.skipIf(not CONFIG_OBJ.account_number, "No credentials provided.")
2323
class FedexCreatePickupRequestTests(unittest.TestCase):
2424
"""
25-
These tests verify that the rate service WSDL is in good shape.
25+
These tests verify that the pikckup service WSDL is in good shape.
2626
"""
2727

28-
def test_rate(self):
29-
pickup_service = FedexCreatePickupRequest(CONFIG_OBJ)
28+
def setUp(self):
29+
self.config_obj = get_fedex_config()
30+
31+
def tearDown(self):
32+
pass
33+
34+
def test_pickup_request(self):
35+
pickup_service = FedexCreatePickupRequest(self.config_obj)
3036

3137
pickup_service.OriginDetail.PickupLocation.Contact.PersonName = 'Sender Name'
3238
pickup_service.OriginDetail.PickupLocation.Contact.EMailAddress = '[email protected]'

0 commit comments

Comments
 (0)