2021-03-07T14:56:25,097 DEPRECATION: Python 3.5 reached the end of its life on September 13th, 2020. Please upgrade your Python as Python 3.5 is no longer maintained. pip 21.0 will drop support for Python 3.5 in January 2021. pip 21.0 will remove support for this functionality. 2021-03-07T14:56:25,858 Created temporary directory: /tmp/pip-ephem-wheel-cache-clw_k19p 2021-03-07T14:56:25,863 Created temporary directory: /tmp/pip-req-tracker-b6tq0gb5 2021-03-07T14:56:25,864 Initialized build tracking at /tmp/pip-req-tracker-b6tq0gb5 2021-03-07T14:56:25,864 Created build tracker: /tmp/pip-req-tracker-b6tq0gb5 2021-03-07T14:56:25,864 Entered build tracker: /tmp/pip-req-tracker-b6tq0gb5 2021-03-07T14:56:25,866 Created temporary directory: /tmp/pip-wheel-98fv53ln 2021-03-07T14:56:25,988 1 location(s) to search for versions of fedex-python: 2021-03-07T14:56:25,988 * https://pypi.org/simple/fedex-python/ 2021-03-07T14:56:25,989 Fetching project page and analyzing links: https://pypi.org/simple/fedex-python/ 2021-03-07T14:56:25,991 Getting page https://pypi.org/simple/fedex-python/ 2021-03-07T14:56:25,995 Found index url https://pypi.org/simple 2021-03-07T14:56:26,361 Found link https://files.pythonhosted.org/packages/5c/3a/a352b372c4601166a9d99a1a2d0ebd923b13039643e553330885b52d2522/fedex-python-0.0.3.tar.gz#sha256=bf7cf66123b8a525347ecf2fee3285cfafd41bb4f6c72202798d761b16729d4b (from https://pypi.org/simple/fedex-python/), version: 0.0.3 2021-03-07T14:56:26,362 Found link https://files.pythonhosted.org/packages/b6/7d/3d391bf27ebdfd1613b5d34fc74eeea34dd4f7277152375a251fe55ee172/fedex-python-0.0.5.tar.gz#sha256=6bbdbb846687f9b4a3dcbcdb94d3527c6a94ff4db10af68a6c6499ece1e33c37 (from https://pypi.org/simple/fedex-python/), version: 0.0.5 2021-03-07T14:56:26,363 Found link https://files.pythonhosted.org/packages/65/46/1f07308820c78cd640ade890e71e4aa382ff476494495c655b5d4f4632e9/fedex-python-0.0.6.tar.gz#sha256=a681d3763fd8d04cc6f0b5107964f32dc8c552ddb22a41949b1e8cffe4865984 (from https://pypi.org/simple/fedex-python/), version: 0.0.6 2021-03-07T14:56:26,393 Given no hashes to check 1 links for project 'fedex-python': discarding no candidates 2021-03-07T14:56:26,426 Collecting fedex-python==0.0.6 2021-03-07T14:56:26,430 Created temporary directory: /tmp/pip-unpack-z6g915k4 2021-03-07T14:56:26,524 Downloading fedex-python-0.0.6.tar.gz (229 kB) 2021-03-07T14:56:27,060 Added fedex-python==0.0.6 from https://files.pythonhosted.org/packages/65/46/1f07308820c78cd640ade890e71e4aa382ff476494495c655b5d4f4632e9/fedex-python-0.0.6.tar.gz#sha256=a681d3763fd8d04cc6f0b5107964f32dc8c552ddb22a41949b1e8cffe4865984 to build tracker '/tmp/pip-req-tracker-b6tq0gb5' 2021-03-07T14:56:27,062 Running setup.py (path:/tmp/pip-wheel-98fv53ln/fedex-python_7717c6e347a54ab6a730b471e6f26549/setup.py) egg_info for package fedex-python 2021-03-07T14:56:27,064 Created temporary directory: /tmp/pip-pip-egg-info-j6ctjhgs 2021-03-07T14:56:27,065 Running command python setup.py egg_info 2021-03-07T14:56:28,1000 # Fedex Python 2021-03-07T14:56:29,001 NOT official FedEx python library to use its web services. 2021-03-07T14:56:29,002 This library use [zeep library](https://github.com/mvantellingen/python-zeep) for do WSDL requests. 2021-03-07T14:56:29,002 ## Installation 2021-03-07T14:56:29,004 Use the package manager [pip](https://pip.pypa.io/en/stable/) to install fedex-python. 2021-03-07T14:56:29,005 ```bash 2021-03-07T14:56:29,005 pip install fedex-python 2021-03-07T14:56:29,006 ``` 2021-03-07T14:56:29,007 ## Usage 2021-03-07T14:56:29,008 ```python 2021-03-07T14:56:29,008 import fedex-python as fedex 2021-03-07T14:56:29,010 client = fedex.Client( 2021-03-07T14:56:29,010 key, password, account_number, meter_number, 2021-03-07T14:56:29,011 localization=( 2021-03-07T14:56:29,012 fedex.components.auth.Localization.get( 2021-03-07T14:56:29,012 fedex.components.auth.Localization.SPANISH_LATINOAMERICAN 2021-03-07T14:56:29,013 ) 2021-03-07T14:56:29,014 ), 2021-03-07T14:56:29,015 test_mode=True 2021-03-07T14:56:29,015 ) 2021-03-07T14:56:29,017 ``` 2021-03-07T14:56:29,018 ### Make a Rate 2021-03-07T14:56:29,019 ```python 2021-03-07T14:56:29,019 from fedex_python.components import enums, common, rate_components 2021-03-07T14:56:29,020 response = client.rate.get_rates( 2021-03-07T14:56:29,020 rate_components.RequestedShipment( 2021-03-07T14:56:29,021 dropoff_type=enums.DropoffTypeEnum.REGULAR_PICKUP, 2021-03-07T14:56:29,021 rate_request_types=enums.RateRequestTypeEnum.PREFERRED, 2021-03-07T14:56:29,022 preferred_currency=enums.CurrencyCodeEnum.US_DOLLAR, 2021-03-07T14:56:29,022 shipping_charges_payment=common.ShippingChargesPayment( 2021-03-07T14:56:29,023 payment_type=enums.PaymentTypeEnum.SENDER, 2021-03-07T14:56:29,024 payor=common.Payor( 2021-03-07T14:56:29,024 responsible_party=common.ContactAddress( 2021-03-07T14:56:29,025 account_number=client.account_number 2021-03-07T14:56:29,026 ) 2021-03-07T14:56:29,026 ) 2021-03-07T14:56:29,027 ), 2021-03-07T14:56:29,027 requested_package_line_items=rate_components.RequestedPackageLineItem( 2021-03-07T14:56:29,027 weight=common.Weight(units=enums.WeightUnits.KG,value=20), 2021-03-07T14:56:29,028 dimensions=common.Dimensions( 2021-03-07T14:56:29,028 length=22, height=22,width=22, units=enums.LinearUnits.CM 2021-03-07T14:56:29,029 ) 2021-03-07T14:56:29,029 ), 2021-03-07T14:56:29,029 shipper=common.ContactAddress( 2021-03-07T14:56:29,030 contact=None, 2021-03-07T14:56:29,030 address=common.Address( 2021-03-07T14:56:29,031 postal_code='06040', 2021-03-07T14:56:29,031 country_code='MX', 2021-03-07T14:56:29,032 ) 2021-03-07T14:56:29,032 ) 2021-03-07T14:56:29,032 recipient=common.ContactAddress( 2021-03-07T14:56:29,033 contact=None, 2021-03-07T14:56:29,033 address=common.Address( 2021-03-07T14:56:29,034 postal_code='15530', 2021-03-07T14:56:29,034 country_code='MX', 2021-03-07T14:56:29,034 ) 2021-03-07T14:56:29,035 ) 2021-03-07T14:56:29,035 ), 'Custom id to send FedEx service') 2021-03-07T14:56:29,036 ``` 2021-03-07T14:56:29,037 ### Make a ship 2021-03-07T14:56:29,038 ```python 2021-03-07T14:56:29,039 from fedex_python.components import enums, common, ship_components 2021-03-07T14:56:29,040 response = self.client.ship.process_shipment( 2021-03-07T14:56:29,041 ship_components.RequestedShipment( 2021-03-07T14:56:29,041 ship_timestamp='2020-02-15T12:00:00', 2021-03-07T14:56:29,041 dropoff_type=enums.DropoffTypeEnum.REGULAR_PICKUP, 2021-03-07T14:56:29,042 service_type=enums.ShipServiceTypeEnum.STANDARD_OVERNIGHT, 2021-03-07T14:56:29,042 packaging_type=enums.PackagingTypeEnum.YOUR_PACKAGING, 2021-03-07T14:56:29,043 rate_request_types=enums.RateRequestTypeEnum.PREFERRED, 2021-03-07T14:56:29,043 shipping_charges_payment=common.ShippingChargesPayment( 2021-03-07T14:56:29,044 payment_type=enums.PaymentTypeEnum.SENDER, 2021-03-07T14:56:29,044 payor=common.Payor( 2021-03-07T14:56:29,044 responsible_party=common.ContactAddress( 2021-03-07T14:56:29,045 account_number=client.account_number 2021-03-07T14:56:29,045 ) 2021-03-07T14:56:29,046 ) 2021-03-07T14:56:29,046 ), 2021-03-07T14:56:29,046 requested_package_line_items=common.RequestedPackageLineItemBase( 2021-03-07T14:56:29,047 weight=common.Weight(units=enums.WeightUnits.KG,value=20), 2021-03-07T14:56:29,047 dimensions=common.Dimensions( 2021-03-07T14:56:29,048 length=22, height=22,width=22, units=enums.LinearUnits.CM 2021-03-07T14:56:29,048 ) 2021-03-07T14:56:29,048 ), 2021-03-07T14:56:29,049 shipper=common.ContactAddress( 2021-03-07T14:56:29,049 contact=common.Contact( 2021-03-07T14:56:29,050 contact_id='Custom id', 2021-03-07T14:56:29,051 person_name='Sergio Alvarado', 2021-03-07T14:56:29,051 company_name='Costomit', 2021-03-07T14:56:29,051 phone_number='55523423324', 2021-03-07T14:56:29,052 eMail_address='sergioal18v@gmail.com' 2021-03-07T14:56:29,052 ), 2021-03-07T14:56:29,053 address=common.Address( 2021-03-07T14:56:29,053 postal_code='06040', 2021-03-07T14:56:29,054 country_code='MX', 2021-03-07T14:56:29,054 street_lines='complete street 209', 2021-03-07T14:56:29,055 city='Mexico', 2021-03-07T14:56:29,055 ) 2021-03-07T14:56:29,056 ) 2021-03-07T14:56:29,056 recipient=common.ContactAddress( 2021-03-07T14:56:29,057 contact=common.Contact( 2021-03-07T14:56:29,058 contact_id='Custom id', 2021-03-07T14:56:29,058 person_name='Sergio Alvarado 2', 2021-03-07T14:56:29,059 company_name='Costomit client', 2021-03-07T14:56:29,060 phone_number='55523423324', 2021-03-07T14:56:29,060 eMail_address='sergioal18v2@gmail.com' 2021-03-07T14:56:29,061 ), 2021-03-07T14:56:29,062 address=common.Address( 2021-03-07T14:56:29,062 postal_code='15530', 2021-03-07T14:56:29,063 country_code='MX', 2021-03-07T14:56:29,064 street_lines='another street 209', 2021-03-07T14:56:29,065 city='Mexico', 2021-03-07T14:56:29,065 ) 2021-03-07T14:56:29,066 ) 2021-03-07T14:56:29,067 label_specification=ship_components.LabelSpecification( 2021-03-07T14:56:29,067 label_format_type=enums.LabelFormatTypeEnum.COMMON2D, 2021-03-07T14:56:29,068 label_stock_type=enums.LabelStockTypeEnum.PAPER_LETTER, 2021-03-07T14:56:29,069 label_printing_orientation= 2021-03-07T14:56:29,070 enums.LabelPrintingOrientationEnum.BOTTOM_EDGE_OF_TEXT_FIRST, 2021-03-07T14:56:29,070 image_type=enums.ImageTypeEnum.PDF 2021-03-07T14:56:29,071 ), 2021-03-07T14:56:29,072 package_count=1, 2021-03-07T14:56:29,072 total_weight=common.Weight( 2021-03-07T14:56:29,073 units=enums.WeightUnits.KG, value=20) 2021-03-07T14:56:29,073 ) 2021-03-07T14:56:29,073 ) 2021-03-07T14:56:29,074 , 'Custom id to send FedEx service') 2021-03-07T14:56:29,074 ``` 2021-03-07T14:56:29,075 ### Cancel a ship 2021-03-07T14:56:29,075 ```python 2021-03-07T14:56:29,076 from fedex_python.components import common, enums 2021-03-07T14:56:29,077 response = client.ship.delete_shipment( 2021-03-07T14:56:29,077 ship_timestamp='2020-02-15T12:00:00', 2021-03-07T14:56:29,077 tracking_id=common.TrackingId( 2021-03-07T14:56:29,078 tracking_id_type=enums.TrackingIdTypeEnum.FEDEX, 2021-03-07T14:56:29,078 tracking_number='the track id number' 2021-03-07T14:56:29,079 ), 2021-03-07T14:56:29,079 deletion_control=enums.DeletionControlEnum.DELETE_ALL_PACKAGES, 2021-03-07T14:56:29,079 custom_id='Custom id to send FedEx service' 2021-03-07T14:56:29,080 ) 2021-03-07T14:56:29,080 ``` 2021-03-07T14:56:29,082 ### Create a pickup 2021-03-07T14:56:29,083 ```python 2021-03-07T14:56:29,084 from fedex_python.components import common, enums, pickup_components 2021-03-07T14:56:29,085 response = client.pickup.create_pickup( 2021-03-07T14:56:29,086 origin_detail=pickup_components.OriginDetail( 2021-03-07T14:56:29,086 buildin_part_description='reference building, 2021-03-07T14:56:29,087 package_location=enums.PackageLocationEnum.FRONT, 2021-03-07T14:56:29,088 building_part_code=enums.BuildingPartCodeEnum.BUILDING, 2021-03-07T14:56:29,089 ready_timestamp='2020-02-15T12:00:00', 2021-03-07T14:56:29,089 company_close_time='19:00:00', 2021-03-07T14:56:29,090 pickup_location=common.ContactAddress( 2021-03-07T14:56:29,091 contact=common.Contact( 2021-03-07T14:56:29,091 contact_id='Custom id', 2021-03-07T14:56:29,091 person_name='Sergio Alvarado', 2021-03-07T14:56:29,092 company_name='Costomit', 2021-03-07T14:56:29,092 phone_number='55523423324', 2021-03-07T14:56:29,093 eMail_address='sergioal18v@gmail.com' 2021-03-07T14:56:29,093 ), 2021-03-07T14:56:29,093 address=common.Address( 2021-03-07T14:56:29,094 postal_code='06040', 2021-03-07T14:56:29,095 country_code='MX', 2021-03-07T14:56:29,095 street_lines='complete street 209', 2021-03-07T14:56:29,096 city='Mexico', 2021-03-07T14:56:29,097 ) 2021-03-07T14:56:29,097 ) 2021-03-07T14:56:29,098 ), 2021-03-07T14:56:29,098 total_weight=common.Weight(units=enums.WeightUnits.KG, value=22), 2021-03-07T14:56:29,099 carrier_code=enums.CarrierCodeTypeEnum.FEDEX_EXPRESS, 2021-03-07T14:56:29,099 package_count=1, 2021-03-07T14:56:29,099 country_relationship=enums.CountryRelationshipEnum.DOMESTIC, 2021-03-07T14:56:29,100 custom_id='Custom id to send FedEx service' 2021-03-07T14:56:29,100 ) 2021-03-07T14:56:29,101 ``` 2021-03-07T14:56:29,101 ### Cancel a pickup 2021-03-07T14:56:29,102 ```python 2021-03-07T14:56:29,102 from fedex_python.components import enums 2021-03-07T14:56:29,103 response = client.pickup.cancel_pickup( 2021-03-07T14:56:29,104 scheduled_date='2020-02-15T12:00:00', 2021-03-07T14:56:29,104 pickup_confirmation_number='1', 2021-03-07T14:56:29,104 location='branch office code given in pickup, 2021-03-07T14:56:29,105 carrier_code=enums.CarrierCodeTypeEnum.FEDEX_EXPRESS, 2021-03-07T14:56:29,105 custom_id='Custom id to send FedEx service' 2021-03-07T14:56:29,106 ) 2021-03-07T14:56:29,106 ``` 2021-03-07T14:56:29,107 ### Pickup availables 2021-03-07T14:56:29,108 ```python 2021-03-07T14:56:29,109 from fedex_python.components import enums, pickup_components 2021-03-07T14:56:29,110 response = self.client.pickup.availability( 2021-03-07T14:56:29,111 pickup_components.Availability( 2021-03-07T14:56:29,111 pickup_address=address=common.Address( 2021-03-07T14:56:29,112 postal_code='06040', 2021-03-07T14:56:29,113 country_code='MX', 2021-03-07T14:56:29,113 street_lines='complete street 209', 2021-03-07T14:56:29,114 city='Mexico', 2021-03-07T14:56:29,115 ), 2021-03-07T14:56:29,116 pickup_request_type=enums.PickupRequestTypeEnum.FUTURE_DAY, 2021-03-07T14:56:29,116 dispatch_date='2020-02-15', 2021-03-07T14:56:29,117 package_ready_time='12:00:00', 2021-03-07T14:56:29,117 customer_close_time='19:00:00', 2021-03-07T14:56:29,117 carriers=enums.CarrierCodeTypeEnum.FEDEX_EXPRESS, 2021-03-07T14:56:29,118 number_of_business_days=3, 2021-03-07T14:56:29,118 shipment_attributes=pickup_components.ShipmentAttributes( 2021-03-07T14:56:29,119 service_type=enums.ShipServiceTypeEnum.STANDARD_OVERNIGHT, 2021-03-07T14:56:29,119 packaging_type=enums.PackagingTypeEnum.YOUR_PACKAGING 2021-03-07T14:56:29,120 ) 2021-03-07T14:56:29,120 ), 'Custom id to send FedEx service' 2021-03-07T14:56:29,121 ) 2021-03-07T14:56:29,122 ``` 2021-03-07T14:56:29,123 ### Do a Tracking 2021-03-07T14:56:29,124 ```python 2021-03-07T14:56:29,124 from fedex_python.components import track_components, enums 2021-03-07T14:56:29,125 response = client.track.track( 2021-03-07T14:56:29,125 selection_details=track_components.SelectionDetails( 2021-03-07T14:56:29,125 carrier_code=enums.CarrierCodeTypeEnum.FEDEX_EXPRESS, 2021-03-07T14:56:29,126 package_identifier=track_components.PackageIdentifier( 2021-03-07T14:56:29,126 type=enums.PackageIdentifierType.TRACKING_NUMBER_OR_DOORTAG, 2021-03-07T14:56:29,127 value='yor track', 2021-03-07T14:56:29,127 account_number=clinet.account_number 2021-03-07T14:56:29,127 ) 2021-03-07T14:56:29,128 ), 2021-03-07T14:56:29,128 processing_options=enums.ProcessingOptionsEnum.INCLUDE_DETAILED_SCANS, 2021-03-07T14:56:29,129 custom_id='Custom id to send FedEx service') 2021-03-07T14:56:29,129 ``` 2021-03-07T14:56:29,129 ## Contributing 2021-03-07T14:56:29,130 Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. 2021-03-07T14:56:29,131 Please make sure to update tests as appropriate. 2021-03-07T14:56:29,133 ## License 2021-03-07T14:56:29,658 [MIT](https://choosealicense.com/licenses/mit/) 2021-03-07T14:56:29,766 running egg_info 2021-03-07T14:56:29,776 creating /tmp/pip-pip-egg-info-j6ctjhgs/fedex_python.egg-info 2021-03-07T14:56:29,779 writing /tmp/pip-pip-egg-info-j6ctjhgs/fedex_python.egg-info/PKG-INFO 2021-03-07T14:56:29,786 writing top-level names to /tmp/pip-pip-egg-info-j6ctjhgs/fedex_python.egg-info/top_level.txt 2021-03-07T14:56:29,788 writing requirements to /tmp/pip-pip-egg-info-j6ctjhgs/fedex_python.egg-info/requires.txt 2021-03-07T14:56:29,791 writing dependency_links to /tmp/pip-pip-egg-info-j6ctjhgs/fedex_python.egg-info/dependency_links.txt 2021-03-07T14:56:29,796 writing manifest file '/tmp/pip-pip-egg-info-j6ctjhgs/fedex_python.egg-info/SOURCES.txt' 2021-03-07T14:56:30,271 reading manifest file '/tmp/pip-pip-egg-info-j6ctjhgs/fedex_python.egg-info/SOURCES.txt' 2021-03-07T14:56:30,280 writing manifest file '/tmp/pip-pip-egg-info-j6ctjhgs/fedex_python.egg-info/SOURCES.txt' 2021-03-07T14:56:30,282 /usr/lib/python3.5/distutils/dist.py:261: UserWarning: Unknown distribution option: 'description_content_type' 2021-03-07T14:56:30,283 warnings.warn(msg) 2021-03-07T14:56:30,418 Source in /tmp/pip-wheel-98fv53ln/fedex-python_7717c6e347a54ab6a730b471e6f26549 has version 0.0.6, which satisfies requirement fedex-python==0.0.6 from https://files.pythonhosted.org/packages/65/46/1f07308820c78cd640ade890e71e4aa382ff476494495c655b5d4f4632e9/fedex-python-0.0.6.tar.gz#sha256=a681d3763fd8d04cc6f0b5107964f32dc8c552ddb22a41949b1e8cffe4865984 2021-03-07T14:56:30,420 Removed fedex-python==0.0.6 from https://files.pythonhosted.org/packages/65/46/1f07308820c78cd640ade890e71e4aa382ff476494495c655b5d4f4632e9/fedex-python-0.0.6.tar.gz#sha256=a681d3763fd8d04cc6f0b5107964f32dc8c552ddb22a41949b1e8cffe4865984 from build tracker '/tmp/pip-req-tracker-b6tq0gb5' 2021-03-07T14:56:30,432 Created temporary directory: /tmp/pip-unpack-b_wmg42b 2021-03-07T14:56:30,433 Building wheels for collected packages: fedex-python 2021-03-07T14:56:30,442 Created temporary directory: /tmp/pip-wheel-gvftbtp3 2021-03-07T14:56:30,443 Building wheel for fedex-python (setup.py): started 2021-03-07T14:56:30,443 Destination directory: /tmp/pip-wheel-gvftbtp3 2021-03-07T14:56:30,444 Running command /usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-wheel-98fv53ln/fedex-python_7717c6e347a54ab6a730b471e6f26549/setup.py'"'"'; __file__='"'"'/tmp/pip-wheel-98fv53ln/fedex-python_7717c6e347a54ab6a730b471e6f26549/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-gvftbtp3 2021-03-07T14:56:32,210 # Fedex Python 2021-03-07T14:56:32,212 NOT official FedEx python library to use its web services. 2021-03-07T14:56:32,212 This library use [zeep library](https://github.com/mvantellingen/python-zeep) for do WSDL requests. 2021-03-07T14:56:32,213 ## Installation 2021-03-07T14:56:32,215 Use the package manager [pip](https://pip.pypa.io/en/stable/) to install fedex-python. 2021-03-07T14:56:32,216 ```bash 2021-03-07T14:56:32,217 pip install fedex-python 2021-03-07T14:56:32,217 ``` 2021-03-07T14:56:32,218 ## Usage 2021-03-07T14:56:32,220 ```python 2021-03-07T14:56:32,220 import fedex-python as fedex 2021-03-07T14:56:32,222 client = fedex.Client( 2021-03-07T14:56:32,222 key, password, account_number, meter_number, 2021-03-07T14:56:32,223 localization=( 2021-03-07T14:56:32,223 fedex.components.auth.Localization.get( 2021-03-07T14:56:32,224 fedex.components.auth.Localization.SPANISH_LATINOAMERICAN 2021-03-07T14:56:32,224 ) 2021-03-07T14:56:32,225 ), 2021-03-07T14:56:32,225 test_mode=True 2021-03-07T14:56:32,226 ) 2021-03-07T14:56:32,227 ``` 2021-03-07T14:56:32,227 ### Make a Rate 2021-03-07T14:56:32,228 ```python 2021-03-07T14:56:32,229 from fedex_python.components import enums, common, rate_components 2021-03-07T14:56:32,230 response = client.rate.get_rates( 2021-03-07T14:56:32,231 rate_components.RequestedShipment( 2021-03-07T14:56:32,231 dropoff_type=enums.DropoffTypeEnum.REGULAR_PICKUP, 2021-03-07T14:56:32,232 rate_request_types=enums.RateRequestTypeEnum.PREFERRED, 2021-03-07T14:56:32,232 preferred_currency=enums.CurrencyCodeEnum.US_DOLLAR, 2021-03-07T14:56:32,233 shipping_charges_payment=common.ShippingChargesPayment( 2021-03-07T14:56:32,234 payment_type=enums.PaymentTypeEnum.SENDER, 2021-03-07T14:56:32,234 payor=common.Payor( 2021-03-07T14:56:32,235 responsible_party=common.ContactAddress( 2021-03-07T14:56:32,236 account_number=client.account_number 2021-03-07T14:56:32,236 ) 2021-03-07T14:56:32,237 ) 2021-03-07T14:56:32,237 ), 2021-03-07T14:56:32,238 requested_package_line_items=rate_components.RequestedPackageLineItem( 2021-03-07T14:56:32,239 weight=common.Weight(units=enums.WeightUnits.KG,value=20), 2021-03-07T14:56:32,239 dimensions=common.Dimensions( 2021-03-07T14:56:32,240 length=22, height=22,width=22, units=enums.LinearUnits.CM 2021-03-07T14:56:32,240 ) 2021-03-07T14:56:32,241 ), 2021-03-07T14:56:32,241 shipper=common.ContactAddress( 2021-03-07T14:56:32,242 contact=None, 2021-03-07T14:56:32,243 address=common.Address( 2021-03-07T14:56:32,243 postal_code='06040', 2021-03-07T14:56:32,244 country_code='MX', 2021-03-07T14:56:32,245 ) 2021-03-07T14:56:32,245 ) 2021-03-07T14:56:32,246 recipient=common.ContactAddress( 2021-03-07T14:56:32,246 contact=None, 2021-03-07T14:56:32,247 address=common.Address( 2021-03-07T14:56:32,247 postal_code='15530', 2021-03-07T14:56:32,248 country_code='MX', 2021-03-07T14:56:32,248 ) 2021-03-07T14:56:32,249 ) 2021-03-07T14:56:32,250 ), 'Custom id to send FedEx service') 2021-03-07T14:56:32,250 ``` 2021-03-07T14:56:32,251 ### Make a ship 2021-03-07T14:56:32,252 ```python 2021-03-07T14:56:32,253 from fedex_python.components import enums, common, ship_components 2021-03-07T14:56:32,254 response = self.client.ship.process_shipment( 2021-03-07T14:56:32,255 ship_components.RequestedShipment( 2021-03-07T14:56:32,255 ship_timestamp='2020-02-15T12:00:00', 2021-03-07T14:56:32,256 dropoff_type=enums.DropoffTypeEnum.REGULAR_PICKUP, 2021-03-07T14:56:32,256 service_type=enums.ShipServiceTypeEnum.STANDARD_OVERNIGHT, 2021-03-07T14:56:32,257 packaging_type=enums.PackagingTypeEnum.YOUR_PACKAGING, 2021-03-07T14:56:32,258 rate_request_types=enums.RateRequestTypeEnum.PREFERRED, 2021-03-07T14:56:32,258 shipping_charges_payment=common.ShippingChargesPayment( 2021-03-07T14:56:32,259 payment_type=enums.PaymentTypeEnum.SENDER, 2021-03-07T14:56:32,259 payor=common.Payor( 2021-03-07T14:56:32,260 responsible_party=common.ContactAddress( 2021-03-07T14:56:32,261 account_number=client.account_number 2021-03-07T14:56:32,261 ) 2021-03-07T14:56:32,262 ) 2021-03-07T14:56:32,262 ), 2021-03-07T14:56:32,263 requested_package_line_items=common.RequestedPackageLineItemBase( 2021-03-07T14:56:32,264 weight=common.Weight(units=enums.WeightUnits.KG,value=20), 2021-03-07T14:56:32,264 dimensions=common.Dimensions( 2021-03-07T14:56:32,265 length=22, height=22,width=22, units=enums.LinearUnits.CM 2021-03-07T14:56:32,265 ) 2021-03-07T14:56:32,266 ), 2021-03-07T14:56:32,267 shipper=common.ContactAddress( 2021-03-07T14:56:32,267 contact=common.Contact( 2021-03-07T14:56:32,268 contact_id='Custom id', 2021-03-07T14:56:32,268 person_name='Sergio Alvarado', 2021-03-07T14:56:32,269 company_name='Costomit', 2021-03-07T14:56:32,269 phone_number='55523423324', 2021-03-07T14:56:32,270 eMail_address='sergioal18v@gmail.com' 2021-03-07T14:56:32,270 ), 2021-03-07T14:56:32,271 address=common.Address( 2021-03-07T14:56:32,272 postal_code='06040', 2021-03-07T14:56:32,272 country_code='MX', 2021-03-07T14:56:32,273 street_lines='complete street 209', 2021-03-07T14:56:32,273 city='Mexico', 2021-03-07T14:56:32,274 ) 2021-03-07T14:56:32,274 ) 2021-03-07T14:56:32,275 recipient=common.ContactAddress( 2021-03-07T14:56:32,276 contact=common.Contact( 2021-03-07T14:56:32,276 contact_id='Custom id', 2021-03-07T14:56:32,277 person_name='Sergio Alvarado 2', 2021-03-07T14:56:32,277 company_name='Costomit client', 2021-03-07T14:56:32,278 phone_number='55523423324', 2021-03-07T14:56:32,279 eMail_address='sergioal18v2@gmail.com' 2021-03-07T14:56:32,279 ), 2021-03-07T14:56:32,280 address=common.Address( 2021-03-07T14:56:32,280 postal_code='15530', 2021-03-07T14:56:32,281 country_code='MX', 2021-03-07T14:56:32,282 street_lines='another street 209', 2021-03-07T14:56:32,282 city='Mexico', 2021-03-07T14:56:32,283 ) 2021-03-07T14:56:32,283 ) 2021-03-07T14:56:32,284 label_specification=ship_components.LabelSpecification( 2021-03-07T14:56:32,285 label_format_type=enums.LabelFormatTypeEnum.COMMON2D, 2021-03-07T14:56:32,285 label_stock_type=enums.LabelStockTypeEnum.PAPER_LETTER, 2021-03-07T14:56:32,286 label_printing_orientation= 2021-03-07T14:56:32,286 enums.LabelPrintingOrientationEnum.BOTTOM_EDGE_OF_TEXT_FIRST, 2021-03-07T14:56:32,287 image_type=enums.ImageTypeEnum.PDF 2021-03-07T14:56:32,287 ), 2021-03-07T14:56:32,288 package_count=1, 2021-03-07T14:56:32,289 total_weight=common.Weight( 2021-03-07T14:56:32,289 units=enums.WeightUnits.KG, value=20) 2021-03-07T14:56:32,290 ) 2021-03-07T14:56:32,290 ) 2021-03-07T14:56:32,291 , 'Custom id to send FedEx service') 2021-03-07T14:56:32,291 ``` 2021-03-07T14:56:32,292 ### Cancel a ship 2021-03-07T14:56:32,292 ```python 2021-03-07T14:56:32,293 from fedex_python.components import common, enums 2021-03-07T14:56:32,294 response = client.ship.delete_shipment( 2021-03-07T14:56:32,295 ship_timestamp='2020-02-15T12:00:00', 2021-03-07T14:56:32,296 tracking_id=common.TrackingId( 2021-03-07T14:56:32,296 tracking_id_type=enums.TrackingIdTypeEnum.FEDEX, 2021-03-07T14:56:32,297 tracking_number='the track id number' 2021-03-07T14:56:32,297 ), 2021-03-07T14:56:32,298 deletion_control=enums.DeletionControlEnum.DELETE_ALL_PACKAGES, 2021-03-07T14:56:32,298 custom_id='Custom id to send FedEx service' 2021-03-07T14:56:32,298 ) 2021-03-07T14:56:32,299 ``` 2021-03-07T14:56:32,300 ### Create a pickup 2021-03-07T14:56:32,301 ```python 2021-03-07T14:56:32,301 from fedex_python.components import common, enums, pickup_components 2021-03-07T14:56:32,302 response = client.pickup.create_pickup( 2021-03-07T14:56:32,303 origin_detail=pickup_components.OriginDetail( 2021-03-07T14:56:32,304 buildin_part_description='reference building, 2021-03-07T14:56:32,304 package_location=enums.PackageLocationEnum.FRONT, 2021-03-07T14:56:32,305 building_part_code=enums.BuildingPartCodeEnum.BUILDING, 2021-03-07T14:56:32,305 ready_timestamp='2020-02-15T12:00:00', 2021-03-07T14:56:32,306 company_close_time='19:00:00', 2021-03-07T14:56:32,306 pickup_location=common.ContactAddress( 2021-03-07T14:56:32,307 contact=common.Contact( 2021-03-07T14:56:32,307 contact_id='Custom id', 2021-03-07T14:56:32,308 person_name='Sergio Alvarado', 2021-03-07T14:56:32,308 company_name='Costomit', 2021-03-07T14:56:32,309 phone_number='55523423324', 2021-03-07T14:56:32,309 eMail_address='sergioal18v@gmail.com' 2021-03-07T14:56:32,310 ), 2021-03-07T14:56:32,310 address=common.Address( 2021-03-07T14:56:32,311 postal_code='06040', 2021-03-07T14:56:32,311 country_code='MX', 2021-03-07T14:56:32,312 street_lines='complete street 209', 2021-03-07T14:56:32,312 city='Mexico', 2021-03-07T14:56:32,313 ) 2021-03-07T14:56:32,314 ) 2021-03-07T14:56:32,314 ), 2021-03-07T14:56:32,315 total_weight=common.Weight(units=enums.WeightUnits.KG, value=22), 2021-03-07T14:56:32,315 carrier_code=enums.CarrierCodeTypeEnum.FEDEX_EXPRESS, 2021-03-07T14:56:32,316 package_count=1, 2021-03-07T14:56:32,316 country_relationship=enums.CountryRelationshipEnum.DOMESTIC, 2021-03-07T14:56:32,316 custom_id='Custom id to send FedEx service' 2021-03-07T14:56:32,317 ) 2021-03-07T14:56:32,317 ``` 2021-03-07T14:56:32,318 ### Cancel a pickup 2021-03-07T14:56:32,319 ```python 2021-03-07T14:56:32,320 from fedex_python.components import enums 2021-03-07T14:56:32,321 response = client.pickup.cancel_pickup( 2021-03-07T14:56:32,321 scheduled_date='2020-02-15T12:00:00', 2021-03-07T14:56:32,322 pickup_confirmation_number='1', 2021-03-07T14:56:32,322 location='branch office code given in pickup, 2021-03-07T14:56:32,323 carrier_code=enums.CarrierCodeTypeEnum.FEDEX_EXPRESS, 2021-03-07T14:56:32,323 custom_id='Custom id to send FedEx service' 2021-03-07T14:56:32,324 ) 2021-03-07T14:56:32,324 ``` 2021-03-07T14:56:32,325 ### Pickup availables 2021-03-07T14:56:32,326 ```python 2021-03-07T14:56:32,327 from fedex_python.components import enums, pickup_components 2021-03-07T14:56:32,328 response = self.client.pickup.availability( 2021-03-07T14:56:32,328 pickup_components.Availability( 2021-03-07T14:56:32,329 pickup_address=address=common.Address( 2021-03-07T14:56:32,329 postal_code='06040', 2021-03-07T14:56:32,330 country_code='MX', 2021-03-07T14:56:32,330 street_lines='complete street 209', 2021-03-07T14:56:32,331 city='Mexico', 2021-03-07T14:56:32,332 ), 2021-03-07T14:56:32,332 pickup_request_type=enums.PickupRequestTypeEnum.FUTURE_DAY, 2021-03-07T14:56:32,333 dispatch_date='2020-02-15', 2021-03-07T14:56:32,333 package_ready_time='12:00:00', 2021-03-07T14:56:32,334 customer_close_time='19:00:00', 2021-03-07T14:56:32,334 carriers=enums.CarrierCodeTypeEnum.FEDEX_EXPRESS, 2021-03-07T14:56:32,335 number_of_business_days=3, 2021-03-07T14:56:32,335 shipment_attributes=pickup_components.ShipmentAttributes( 2021-03-07T14:56:32,336 service_type=enums.ShipServiceTypeEnum.STANDARD_OVERNIGHT, 2021-03-07T14:56:32,336 packaging_type=enums.PackagingTypeEnum.YOUR_PACKAGING 2021-03-07T14:56:32,337 ) 2021-03-07T14:56:32,337 ), 'Custom id to send FedEx service' 2021-03-07T14:56:32,338 ) 2021-03-07T14:56:32,338 ``` 2021-03-07T14:56:32,339 ### Do a Tracking 2021-03-07T14:56:32,340 ```python 2021-03-07T14:56:32,341 from fedex_python.components import track_components, enums 2021-03-07T14:56:32,341 response = client.track.track( 2021-03-07T14:56:32,342 selection_details=track_components.SelectionDetails( 2021-03-07T14:56:32,342 carrier_code=enums.CarrierCodeTypeEnum.FEDEX_EXPRESS, 2021-03-07T14:56:32,343 package_identifier=track_components.PackageIdentifier( 2021-03-07T14:56:32,343 type=enums.PackageIdentifierType.TRACKING_NUMBER_OR_DOORTAG, 2021-03-07T14:56:32,344 value='yor track', 2021-03-07T14:56:32,344 account_number=clinet.account_number 2021-03-07T14:56:32,345 ) 2021-03-07T14:56:32,345 ), 2021-03-07T14:56:32,346 processing_options=enums.ProcessingOptionsEnum.INCLUDE_DETAILED_SCANS, 2021-03-07T14:56:32,346 custom_id='Custom id to send FedEx service') 2021-03-07T14:56:32,347 ``` 2021-03-07T14:56:32,347 ## Contributing 2021-03-07T14:56:32,348 Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. 2021-03-07T14:56:32,349 Please make sure to update tests as appropriate. 2021-03-07T14:56:32,350 ## License 2021-03-07T14:56:32,350 [MIT](https://choosealicense.com/licenses/mit/) 2021-03-07T14:56:32,351 /usr/lib/python3.5/distutils/dist.py:261: UserWarning: Unknown distribution option: 'description_content_type' 2021-03-07T14:56:32,351 warnings.warn(msg) 2021-03-07T14:56:32,669 running bdist_wheel 2021-03-07T14:56:32,688 running build 2021-03-07T14:56:32,689 running build_py 2021-03-07T14:56:33,032 creating build 2021-03-07T14:56:33,033 creating build/lib 2021-03-07T14:56:33,035 creating build/lib/fedex_python 2021-03-07T14:56:33,038 copying fedex_python/__init__.py -> build/lib/fedex_python 2021-03-07T14:56:33,042 copying fedex_python/client.py -> build/lib/fedex_python 2021-03-07T14:56:33,047 copying fedex_python/base.py -> build/lib/fedex_python 2021-03-07T14:56:33,053 creating build/lib/fedex_python/services 2021-03-07T14:56:33,056 copying fedex_python/services/rate.py -> build/lib/fedex_python/services 2021-03-07T14:56:33,062 copying fedex_python/services/__init__.py -> build/lib/fedex_python/services 2021-03-07T14:56:33,068 copying fedex_python/services/pickup.py -> build/lib/fedex_python/services 2021-03-07T14:56:33,074 copying fedex_python/services/ship.py -> build/lib/fedex_python/services 2021-03-07T14:56:33,080 copying fedex_python/services/track.py -> build/lib/fedex_python/services 2021-03-07T14:56:33,089 creating build/lib/fedex_python/components 2021-03-07T14:56:33,092 copying fedex_python/components/common.py -> build/lib/fedex_python/components 2021-03-07T14:56:33,098 copying fedex_python/components/__init__.py -> build/lib/fedex_python/components 2021-03-07T14:56:33,102 copying fedex_python/components/authentication.py -> build/lib/fedex_python/components 2021-03-07T14:56:33,106 copying fedex_python/components/track_components.py -> build/lib/fedex_python/components 2021-03-07T14:56:33,111 copying fedex_python/components/pickup_components.py -> build/lib/fedex_python/components 2021-03-07T14:56:33,115 copying fedex_python/components/ship_components.py -> build/lib/fedex_python/components 2021-03-07T14:56:33,121 copying fedex_python/components/enums.py -> build/lib/fedex_python/components 2021-03-07T14:56:33,129 copying fedex_python/components/base.py -> build/lib/fedex_python/components 2021-03-07T14:56:33,135 copying fedex_python/components/rate_components.py -> build/lib/fedex_python/components 2021-03-07T14:56:33,149 creating build/lib/fedex_python/wsdl 2021-03-07T14:56:33,151 copying fedex_python/wsdl/ship_25.wsdl -> build/lib/fedex_python/wsdl 2021-03-07T14:56:33,190 copying fedex_python/wsdl/track_16.wsdl -> build/lib/fedex_python/wsdl 2021-03-07T14:56:33,208 copying fedex_python/wsdl/pickup_17.wsdl -> build/lib/fedex_python/wsdl 2021-03-07T14:56:33,226 copying fedex_python/wsdl/rate_28.wsdl -> build/lib/fedex_python/wsdl 2021-03-07T14:56:33,258 creating build/lib/fedex_python/wsdl/test 2021-03-07T14:56:33,261 copying fedex_python/wsdl/test/ship_25.wsdl -> build/lib/fedex_python/wsdl/test 2021-03-07T14:56:33,419 copying fedex_python/wsdl/test/track_16.wsdl -> build/lib/fedex_python/wsdl/test 2021-03-07T14:56:33,438 copying fedex_python/wsdl/test/pickup_17.wsdl -> build/lib/fedex_python/wsdl/test 2021-03-07T14:56:33,457 copying fedex_python/wsdl/test/rate_28.wsdl -> build/lib/fedex_python/wsdl/test 2021-03-07T14:56:33,527 installing to build/bdist.linux-armv7l/wheel 2021-03-07T14:56:33,528 running install 2021-03-07T14:56:33,532 running install_lib 2021-03-07T14:56:33,545 creating build/bdist.linux-armv7l 2021-03-07T14:56:33,545 creating build/bdist.linux-armv7l/wheel 2021-03-07T14:56:33,549 creating build/bdist.linux-armv7l/wheel/fedex_python 2021-03-07T14:56:33,553 creating build/bdist.linux-armv7l/wheel/fedex_python/services 2021-03-07T14:56:33,555 copying build/lib/fedex_python/services/rate.py -> build/bdist.linux-armv7l/wheel/fedex_python/services 2021-03-07T14:56:33,561 copying build/lib/fedex_python/services/__init__.py -> build/bdist.linux-armv7l/wheel/fedex_python/services 2021-03-07T14:56:33,566 copying build/lib/fedex_python/services/pickup.py -> build/bdist.linux-armv7l/wheel/fedex_python/services 2021-03-07T14:56:33,572 copying build/lib/fedex_python/services/ship.py -> build/bdist.linux-armv7l/wheel/fedex_python/services 2021-03-07T14:56:33,578 copying build/lib/fedex_python/services/track.py -> build/bdist.linux-armv7l/wheel/fedex_python/services 2021-03-07T14:56:33,585 creating build/bdist.linux-armv7l/wheel/fedex_python/wsdl 2021-03-07T14:56:33,588 copying build/lib/fedex_python/wsdl/ship_25.wsdl -> build/bdist.linux-armv7l/wheel/fedex_python/wsdl 2021-03-07T14:56:33,625 copying build/lib/fedex_python/wsdl/track_16.wsdl -> build/bdist.linux-armv7l/wheel/fedex_python/wsdl 2021-03-07T14:56:33,644 creating build/bdist.linux-armv7l/wheel/fedex_python/wsdl/test 2021-03-07T14:56:33,647 copying build/lib/fedex_python/wsdl/test/ship_25.wsdl -> build/bdist.linux-armv7l/wheel/fedex_python/wsdl/test 2021-03-07T14:56:33,682 copying build/lib/fedex_python/wsdl/test/track_16.wsdl -> build/bdist.linux-armv7l/wheel/fedex_python/wsdl/test 2021-03-07T14:56:33,698 copying build/lib/fedex_python/wsdl/test/pickup_17.wsdl -> build/bdist.linux-armv7l/wheel/fedex_python/wsdl/test 2021-03-07T14:56:33,717 copying build/lib/fedex_python/wsdl/test/rate_28.wsdl -> build/bdist.linux-armv7l/wheel/fedex_python/wsdl/test 2021-03-07T14:56:33,748 copying build/lib/fedex_python/wsdl/pickup_17.wsdl -> build/bdist.linux-armv7l/wheel/fedex_python/wsdl 2021-03-07T14:56:33,766 copying build/lib/fedex_python/wsdl/rate_28.wsdl -> build/bdist.linux-armv7l/wheel/fedex_python/wsdl 2021-03-07T14:56:33,797 copying build/lib/fedex_python/__init__.py -> build/bdist.linux-armv7l/wheel/fedex_python 2021-03-07T14:56:33,802 copying build/lib/fedex_python/client.py -> build/bdist.linux-armv7l/wheel/fedex_python 2021-03-07T14:56:33,809 creating build/bdist.linux-armv7l/wheel/fedex_python/components 2021-03-07T14:56:33,812 copying build/lib/fedex_python/components/common.py -> build/bdist.linux-armv7l/wheel/fedex_python/components 2021-03-07T14:56:33,819 copying build/lib/fedex_python/components/__init__.py -> build/bdist.linux-armv7l/wheel/fedex_python/components 2021-03-07T14:56:33,824 copying build/lib/fedex_python/components/authentication.py -> build/bdist.linux-armv7l/wheel/fedex_python/components 2021-03-07T14:56:33,829 copying build/lib/fedex_python/components/track_components.py -> build/bdist.linux-armv7l/wheel/fedex_python/components 2021-03-07T14:56:33,835 copying build/lib/fedex_python/components/pickup_components.py -> build/bdist.linux-armv7l/wheel/fedex_python/components 2021-03-07T14:56:33,840 copying build/lib/fedex_python/components/ship_components.py -> build/bdist.linux-armv7l/wheel/fedex_python/components 2021-03-07T14:56:33,846 copying build/lib/fedex_python/components/enums.py -> build/bdist.linux-armv7l/wheel/fedex_python/components 2021-03-07T14:56:33,854 copying build/lib/fedex_python/components/base.py -> build/bdist.linux-armv7l/wheel/fedex_python/components 2021-03-07T14:56:33,859 copying build/lib/fedex_python/components/rate_components.py -> build/bdist.linux-armv7l/wheel/fedex_python/components 2021-03-07T14:56:33,865 copying build/lib/fedex_python/base.py -> build/bdist.linux-armv7l/wheel/fedex_python 2021-03-07T14:56:33,870 running install_egg_info 2021-03-07T14:56:33,948 running egg_info 2021-03-07T14:56:33,949 writing dependency_links to fedex_python.egg-info/dependency_links.txt 2021-03-07T14:56:33,952 writing top-level names to fedex_python.egg-info/top_level.txt 2021-03-07T14:56:33,954 writing fedex_python.egg-info/PKG-INFO 2021-03-07T14:56:33,960 writing requirements to fedex_python.egg-info/requires.txt 2021-03-07T14:56:33,974 reading manifest file 'fedex_python.egg-info/SOURCES.txt' 2021-03-07T14:56:33,987 writing manifest file 'fedex_python.egg-info/SOURCES.txt' 2021-03-07T14:56:33,990 Copying fedex_python.egg-info to build/bdist.linux-armv7l/wheel/fedex_python-0.0.6-py3.5.egg-info 2021-03-07T14:56:34,019 running install_scripts 2021-03-07T14:56:34,258 creating build/bdist.linux-armv7l/wheel/fedex_python-0.0.6.dist-info/WHEEL 2021-03-07T14:56:34,823 Building wheel for fedex-python (setup.py): finished with status 'done' 2021-03-07T14:56:34,831 Created wheel for fedex-python: filename=fedex_python-0.0.6-py3-none-any.whl size=244411 sha256=97e48beb319012aa6e62f93236a4374fcf23303d9c95ea583ecaf31af0ddfcd5 2021-03-07T14:56:34,832 Stored in directory: /tmp/pip-ephem-wheel-cache-clw_k19p/wheels/f3/5c/49/bfec839eb5c7124d3ba54b9371264cffb37ead137cae2c3cda 2021-03-07T14:56:34,872 Successfully built fedex-python 2021-03-07T14:56:34,921 Removed build tracker: '/tmp/pip-req-tracker-b6tq0gb5'