├── .gitignore ├── LICENSE ├── README.md ├── USPS ├── USPS.py └── __init__.py ├── __init__.py ├── endicia.py ├── fedex.py ├── iso_country_codes.py ├── shipping.py ├── test.py ├── test_tshroyer.py ├── tests ├── __init__.py ├── config.example.py ├── config.py ├── fedex.py ├── ups.py └── usps.py ├── ups.py └── wsdl ├── fedex ├── CreatePendingShipmentReply_Smash_Email_Ret.txt ├── CreatePendingShipmentRequest_Smash_Email_Ret.txt ├── ProcessShipmentReply_Condor_EMEA_ADG_IEF.txt ├── ProcessShipmentReply_Condor_Sat_Del.txt ├── ProcessShipmentReply_Condor_Sat_Pickup_IPF.txt ├── ProcessShipmentReply_Condor_US_CA_ADG_IE.txt ├── ProcessShipmentReply_DE_HAL.txt ├── ProcessShipmentReply_DE_HAL_Sig_Opt_A.txt ├── ProcessShipmentReply_DG_HAL.txt ├── ProcessShipmentReply_DG_HAL_Sig_Opt_A.txt ├── ProcessShipmentReply_F2_Sat_Pickup.txt ├── ProcessShipmentReply_Intra_CH_PO.txt ├── ProcessShipmentReply_Intra_MX_Exp_Saver.txt ├── ProcessShipmentReply_Intra_UAE_SO.txt ├── ProcessShipmentReply_Prio_Alrt_Frgt.txt ├── ProcessShipmentReply_Smash_Basic.txt ├── ProcessShipmentReply_Smash_Prnt_Ret.txt ├── ProcessShipmentRequest_Condor_EMEA_ADG_IEF.txt ├── ProcessShipmentRequest_Condor_Sat_Del.txt ├── ProcessShipmentRequest_Condor_Sat_Pickup_IPF.txt ├── ProcessShipmentRequest_Condor_US_CA_ADG_IE.txt ├── ProcessShipmentRequest_DE_HAL.txt ├── ProcessShipmentRequest_DE_HAL_Sig_Opt_A.txt ├── ProcessShipmentRequest_DG_HAL.txt ├── ProcessShipmentRequest_DG_HAL_Sig_Opt_A.txt ├── ProcessShipmentRequest_F2_Sat_Pickup.txt ├── ProcessShipmentRequest_Intra_CH_PO.txt ├── ProcessShipmentRequest_Intra_MX_Exp_Saver.txt ├── ProcessShipmentRequest_Intra_UAE_SO.txt ├── ProcessShipmentRequest_Prio_Alrt_Frgt.txt ├── ProcessShipmentRequest_Smash_Basic.txt ├── ProcessShipmentRequest_Smash_Prnt_Ret.txt ├── RateReply_DE_HAL_Sig_Opt_A.txt ├── RateReply_DG_HAL.txt ├── RateReply_DG_HAL_Sig_Opt_A.txt ├── RateReply_EMEA_ADG_IEF.txt ├── RateReply_F2_Sat_Pickup.txt ├── RateReply_Intra_CH_PO.txt ├── RateReply_Intra_MX_Exp_Saver.txt ├── RateReply_Intra_UAE_SO.txt ├── RateReply_Prio_Alrt_Frgt.txt ├── RateReply_Sat_Del.txt ├── RateReply_Sat_Pickup_IPF.txt ├── RateReply_SmartPost_Basic.txt ├── RateReply_SmartPost_Prnt_Ret.txt ├── RateReply_US_CA_ADG_IE.txt ├── RateReplyt_DE_HAL.txt ├── RateRequest_DE_HAL.txt ├── RateRequest_DE_HAL_Sig_Opt_A.txt ├── RateRequest_DG_HAL.txt ├── RateRequest_DG_HAL_Sig_Opt_A.txt ├── RateRequest_EMEA_ADG_IEF.txt ├── RateRequest_F2_Sat_Pickup.txt ├── RateRequest_Intra_CH_PO.txt ├── RateRequest_Intra_MX_Exp_Saver.txt ├── RateRequest_Intra_UAE_SO.txt ├── RateRequest_Prio_Alrt_Frgt.txt ├── RateRequest_Sat_Del.txt ├── RateRequest_Sat_Pickup_IPF.txt ├── RateRequest_SmartPost_Basic.txt ├── RateRequest_SmartPost_Prnt_Ret.txt ├── RateRequest_US_CA_ADG_IE.txt ├── RateService_v9.wsdl └── ShipService_v9.wsdl └── ups ├── Error1.1.xsd ├── IFWS.xsd ├── RateWS.wsdl ├── RateWebServiceSchema.xsd ├── Ship.wsdl ├── ShipWebServiceSchema.xsd ├── UPSSecurity.xsd ├── Void.wsdl ├── VoidWebServiceSchema.xsd ├── XAV.wsdl ├── XAVWebServiceSchema.xsd └── common.xsd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/README.md -------------------------------------------------------------------------------- /USPS/USPS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/USPS/USPS.py -------------------------------------------------------------------------------- /USPS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/USPS/__init__.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/__init__.py -------------------------------------------------------------------------------- /endicia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/endicia.py -------------------------------------------------------------------------------- /fedex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/fedex.py -------------------------------------------------------------------------------- /iso_country_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/iso_country_codes.py -------------------------------------------------------------------------------- /shipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/shipping.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/test.py -------------------------------------------------------------------------------- /test_tshroyer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/test_tshroyer.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/config.example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/tests/config.example.py -------------------------------------------------------------------------------- /tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/tests/config.py -------------------------------------------------------------------------------- /tests/fedex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/tests/fedex.py -------------------------------------------------------------------------------- /tests/ups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/tests/ups.py -------------------------------------------------------------------------------- /tests/usps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/tests/usps.py -------------------------------------------------------------------------------- /ups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/ups.py -------------------------------------------------------------------------------- /wsdl/fedex/CreatePendingShipmentReply_Smash_Email_Ret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/CreatePendingShipmentReply_Smash_Email_Ret.txt -------------------------------------------------------------------------------- /wsdl/fedex/CreatePendingShipmentRequest_Smash_Email_Ret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/CreatePendingShipmentRequest_Smash_Email_Ret.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Condor_EMEA_ADG_IEF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_Condor_EMEA_ADG_IEF.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Condor_Sat_Del.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_Condor_Sat_Del.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Condor_Sat_Pickup_IPF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_Condor_Sat_Pickup_IPF.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Condor_US_CA_ADG_IE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_Condor_US_CA_ADG_IE.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_DE_HAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_DE_HAL.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_DE_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_DE_HAL_Sig_Opt_A.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_DG_HAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_DG_HAL.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_DG_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_DG_HAL_Sig_Opt_A.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_F2_Sat_Pickup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_F2_Sat_Pickup.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Intra_CH_PO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_Intra_CH_PO.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Intra_MX_Exp_Saver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_Intra_MX_Exp_Saver.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Intra_UAE_SO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_Intra_UAE_SO.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Prio_Alrt_Frgt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_Prio_Alrt_Frgt.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Smash_Basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_Smash_Basic.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentReply_Smash_Prnt_Ret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentReply_Smash_Prnt_Ret.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Condor_EMEA_ADG_IEF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_Condor_EMEA_ADG_IEF.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Condor_Sat_Del.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_Condor_Sat_Del.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Condor_Sat_Pickup_IPF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_Condor_Sat_Pickup_IPF.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Condor_US_CA_ADG_IE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_Condor_US_CA_ADG_IE.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_DE_HAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_DE_HAL.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_DE_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_DE_HAL_Sig_Opt_A.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_DG_HAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_DG_HAL.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_DG_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_DG_HAL_Sig_Opt_A.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_F2_Sat_Pickup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_F2_Sat_Pickup.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Intra_CH_PO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_Intra_CH_PO.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Intra_MX_Exp_Saver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_Intra_MX_Exp_Saver.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Intra_UAE_SO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_Intra_UAE_SO.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Prio_Alrt_Frgt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_Prio_Alrt_Frgt.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Smash_Basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_Smash_Basic.txt -------------------------------------------------------------------------------- /wsdl/fedex/ProcessShipmentRequest_Smash_Prnt_Ret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ProcessShipmentRequest_Smash_Prnt_Ret.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_DE_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_DE_HAL_Sig_Opt_A.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_DG_HAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_DG_HAL.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_DG_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_DG_HAL_Sig_Opt_A.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_EMEA_ADG_IEF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_EMEA_ADG_IEF.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_F2_Sat_Pickup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_F2_Sat_Pickup.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_Intra_CH_PO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_Intra_CH_PO.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_Intra_MX_Exp_Saver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_Intra_MX_Exp_Saver.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_Intra_UAE_SO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_Intra_UAE_SO.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_Prio_Alrt_Frgt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_Prio_Alrt_Frgt.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_Sat_Del.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_Sat_Del.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_Sat_Pickup_IPF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_Sat_Pickup_IPF.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_SmartPost_Basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_SmartPost_Basic.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_SmartPost_Prnt_Ret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_SmartPost_Prnt_Ret.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReply_US_CA_ADG_IE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReply_US_CA_ADG_IE.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateReplyt_DE_HAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateReplyt_DE_HAL.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_DE_HAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_DE_HAL.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_DE_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_DE_HAL_Sig_Opt_A.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_DG_HAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_DG_HAL.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_DG_HAL_Sig_Opt_A.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_DG_HAL_Sig_Opt_A.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_EMEA_ADG_IEF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_EMEA_ADG_IEF.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_F2_Sat_Pickup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_F2_Sat_Pickup.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_Intra_CH_PO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_Intra_CH_PO.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_Intra_MX_Exp_Saver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_Intra_MX_Exp_Saver.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_Intra_UAE_SO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_Intra_UAE_SO.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_Prio_Alrt_Frgt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_Prio_Alrt_Frgt.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_Sat_Del.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_Sat_Del.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_Sat_Pickup_IPF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_Sat_Pickup_IPF.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_SmartPost_Basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_SmartPost_Basic.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_SmartPost_Prnt_Ret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_SmartPost_Prnt_Ret.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateRequest_US_CA_ADG_IE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateRequest_US_CA_ADG_IE.txt -------------------------------------------------------------------------------- /wsdl/fedex/RateService_v9.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/RateService_v9.wsdl -------------------------------------------------------------------------------- /wsdl/fedex/ShipService_v9.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/fedex/ShipService_v9.wsdl -------------------------------------------------------------------------------- /wsdl/ups/Error1.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/ups/Error1.1.xsd -------------------------------------------------------------------------------- /wsdl/ups/IFWS.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/ups/IFWS.xsd -------------------------------------------------------------------------------- /wsdl/ups/RateWS.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/ups/RateWS.wsdl -------------------------------------------------------------------------------- /wsdl/ups/RateWebServiceSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/ups/RateWebServiceSchema.xsd -------------------------------------------------------------------------------- /wsdl/ups/Ship.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/ups/Ship.wsdl -------------------------------------------------------------------------------- /wsdl/ups/ShipWebServiceSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/ups/ShipWebServiceSchema.xsd -------------------------------------------------------------------------------- /wsdl/ups/UPSSecurity.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/ups/UPSSecurity.xsd -------------------------------------------------------------------------------- /wsdl/ups/Void.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/ups/Void.wsdl -------------------------------------------------------------------------------- /wsdl/ups/VoidWebServiceSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/ups/VoidWebServiceSchema.xsd -------------------------------------------------------------------------------- /wsdl/ups/XAV.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/ups/XAV.wsdl -------------------------------------------------------------------------------- /wsdl/ups/XAVWebServiceSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/ups/XAVWebServiceSchema.xsd -------------------------------------------------------------------------------- /wsdl/ups/common.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benweatherman/python-ship/HEAD/wsdl/ups/common.xsd --------------------------------------------------------------------------------