Skip to content

Instantly share code, notes, and snippets.

@willycs40
Created June 7, 2015 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willycs40/872b73d347f1ecafbdd4 to your computer and use it in GitHub Desktop.
Save willycs40/872b73d347f1ecafbdd4 to your computer and use it in GitHub Desktop.
eBay API - get Shipping
Display the source blob
Display the rendered blob
Raw
{
"metadata": {
"name": "",
"signature": "sha256:486fa024055e2196cd9935752bc185cfc94dcac0cb09200fb80bfa1aa8d88804"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
"input": [
"from ebaysdk.shopping import Connection\n",
"shop_api = Connection(appid='', config_file=None, siteid='EBAY-GB')\n",
"\n",
"from ebaysdk.finding import Connection\n",
"find_api = Connection(appid='', config_file=None, siteid='EBAY-GB')"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 139
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"api_request = {\n",
" 'keywords': u'batteries',\n",
" 'itemFilter': [\n",
" {'name': 'LocatedIn',\n",
" 'value': 'GB'},\n",
" {'name': 'AvailableTo',\n",
" 'value': 'GB'},\n",
" ]\n",
"}\n",
"response = find_api.execute('findItemsAdvanced', api_request)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 141
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# http://developer.ebay.com/Devzone/XML/docs/Reference/ebay/types/ShippingServiceCodeType.html\n",
"\n",
"for item in response.reply.searchResult.item:\n",
" print(item.title)\n",
" ship_response = shop_api.execute('GetShippingCosts', {'ItemID': item.itemId, 'IncludeDetails': True,'DestinationPostalCode':'N15AQ', 'DestinationCountryCode':'GB'})\n",
" for ship in ship_response.reply.ShippingDetails.ShippingServiceOption:\n",
" print(' ',ship.ShippingServiceName)\n",
" print('')"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"50 x DURACELL INDUSTRIAL AAA BATTERIES LR04 MN2400 EXPIRY 2021 REPLACES PROCELL\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"Nemaxx Lithium 9V Block Battery ER9V Ultralife Longlife Smoke Detector - Blister\n",
"(' ', 'Standard Delivery from outside UK')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"50 DURACELL INDUSTRIAL AA BATTERIES ALKALINE 1.5V LR6 MN1500 REPLACES PROCELL AA\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"50 DURACELL INDUSTRIAL AA BATTERIES ALKALINE 1.5V LR6 MN1500 REPLACES PROCELL AA\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"12 X LATEST DURACELL AA Alkaline Batteries LR6 MN1500 EXPIRY 2021\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"24 x Duracell AA Plus Power Duralock 1.5V Alkaline Batteries MN1500 Expiry 2024\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"20 X Duracell AAA Industrial MN2400 Battery Alkaline Replaces Procell Exp 2021\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"4 x DURACELL INDUSTRIAL 9v PP3 MN1604 BLOCK ALKALINE BATTERIES REPLACES PROCELL\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"10 x DURACELL INDUSTRIAL 9v PP3 MN1604 BLOCK ALKALINE BATTERIES REPLACES PROCELL\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"16 x Duracell AA Alkaline Batteries MN1500 LR6 MIGNON, EXPIRY 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"Energiser FAMILY PACK X 16 AA Batteries EXPIRY 2016\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Collection in Person')\n",
"\n",
"BUY 24 GET 26 X LATEST DURACELL AA Alkaline Batteries LR6 MN1500 EXPIRY 2021\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"20 Duracell Industrial AA Alkaline Battery MN1500 LR6 REPLACES PROCELL\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"24 X AAA DURACELL DURALOCK ALKALINE BATTERIES MN2400 LR03 EXPIRY 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"24 X AA DURACELL ALKALINE BATTERIES MN1500 LR6 MIGNON EXPIRY 2021\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"2 x DURACELL INDUSTRIAL 9v PP3 MN1604 6LR61 ALKALINE BATTERIES REPLACES PROCELL\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"50 DURACELL INDUSTRIAL AA BATTERIES ALKALINE 1.5V LR6 MN1500 REPLACES PROCELL AA\n",
"(' ', 'Other 48 Hour Courier')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Other 24 Hour Courier')\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"20 X Duracell AA Industrial Battery MN1500 Alkaline Replaces Procell Expiry 2021\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"4 x DURACELL oem 9V Batteries MN1604 6LR61 PP3 Block ALKALINE Battery\n",
"(' ', 'Royal Mail 24')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"50 DURACELL INDUSTRIAL AA BATTERIES ALKALINE 1.5V LR6 MN1500 REPLACES PROCELL AA\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"Aa lithium batteries box of 50,\n",
"(' ', 'Other 48 Hour Courier')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"24 x DURACELL AA PLUS POWER DURALOCK 1.5V ALKALINE BATTERIES MN1500 EXPIRY 2024\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Other 24 Hour Courier')\n",
"(' ', 'Collection in Person')\n",
"\n",
"1 x Duracell oem 9V Batteries MN1604 6LR61 PP3 Battery\n",
"(' ', 'Royal Mail 24')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"30 x Duracell Procell AA Alkaline Batteries MN1500 1.5v Fresh stock\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"10 x AA PROCELL DURACELL ALKALINE BATTERY 1.5v LR6 MN1500 BATTERIES PROFESSIONAL\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"50 + 1 FREE = 51 DURACELL INDUSTRIAL AA BATTERIES ALKALINE REPLACES PROCELL AA\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"10 x DURACELL AA SIZE INDUSTRIAL MN1500 1.5v LR6 ALKALINE BATTERIES UK SELLER\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"30 X Duracell AA Industrial Battery MN1500 Alkaline Replaces Procell Expiry 2021\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"4 X AA DURACELL POWER 1.5V ALKALINE BATTERIES LR6 MN1500 - EXPIRY 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"50 X Duracell AAA Industrial MN2400 Battery Alkaline Replaces Procell Exp 2021\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"8 x Duracell Duralock 2025 3V Lithium Coin Batteries (Dated 2023)\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"10 X DURACELL AAA MN2400 INDUSTRIAL ALKALINE BATTERIES DURACELL 1.5V\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"8 x Duracell AAA Plus Power Batteries - LR03, MN2400, MICRO. 2023 Expiry\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class Signed For')\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"4 x DURACELL CR2032 3V Lithium Coin Cell Battery Batteries DL 2032 EXPIRY 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"2 x DURACELL LR1 N 1.5V DURALOCK ALKALINE BATTERIES E90 KN EXPIRY 2019 N SIZE\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"30 X Duracell AAA Industrial MN2400 Battery Alkaline Replaces Procell Exp 2021\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"30 DURACELL AA INDUSTRIAL MN1500 ALKALINE BATTERY LR6 MN1500 REPLACES PROCELL\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"3 x 2 = 6 DURACELL DURALOCK PLUS C SIZE ALKALINE BATTERIES MN1400 LR14\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"12 x DURACELL AAA ULTRA POWER BATTERIES ALKALINE LR03 MX2400 MN2400\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"10 x AA DURACELL INDUSTRIAL BATTERIES 1.5v LR6 MN1500 REPLACES PROCELL EXP 2020\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"Duracell AA 24 x 1.5V Alkaline Batteries LR6 MN1500 Exp 2024\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"24 DURACELL AAA ALKALINE BATTERIES MN2400 LR03 BATTERY FOR TOYS REMOTES GAMES\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"10 x DURACELL INDUSTRIAL C SIZE MN1400 LR14 ALKALINE BATTERIES REPLACES PROCELL\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"48 Duracell AA Alkaline Batteries Battery NEW Duracel MN1500 LR6 EXPIRY 2021\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"4 x DURACELL LR1 N 1.5V DURALOCK ALKALINE BATTERIES E90 KN EXPIRY 2019 N SIZE\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"32 Duracell AA Plus Power Duralock Alkaline Batteries MN1500 LR6 Expiry 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"2 x CR2 Duracell 3V Ultra Lithium Photo Camera Batteries DLCR2 Exp 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"20 DURACELL AAA MN2400 INDUSTRIAL ALKALINE BATTERIES DURACELL 1.5V\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"6 x DURACELL LR1 N 1.5V DURALOCK ALKALINE BATTERIES E90 KN EXPIRY 2019 N SIZE\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"4 x DURACELL CR2025 3V LITHIUM COIN CELL BATTERIES DL2025 EXPIRY 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"4 x DURACELL SECURITY MN21 23A 23AE A23 V23GA 12v ALKALINE BATTERY EXP 2019\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 2nd Class Signed For')\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"aa duracell rechargeable batteries 3 Packs Of 4 12 Total 2400 Mah Brand New\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"50 DURACELL INDUSTRIAL AA BATTERIES ALKALINE 1.5V LR6 MN1500 REPLACES PROCELL AA\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"24 X DURACEL DURALOCK AA ULTRA POWER ALKALINE BATTERIES LR6 MN1500 EXPIRY 2023\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"20 DURACELL AAA MN2400 INDUSTRIAL ALKALINE BATTERIES DURACELL Expiry 2020 LR03\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"Maxell 10 X Genuine CR2032 3V Lithium Button/Coin Cells batteries Free UK\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 24')\n",
"(' ', 'Royal Mail 1st Class Signed For')\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"5 x Duracell 9V Battery MN1604 6LR61 PP3 ALKALINE SMOKE ALARM EXPIRY 2019\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"2 x DURACELL CR1620 3V Lithium Coin Cell Battery 1620 DL1620 Expiry 2021\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"10 x DURACELL CR2025 3V LITHIUM COIN CELL BATTERIES DL2025 KEY FOB EXPIRY 2023\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"20 DURACELL INDUSTRIAL C SIZE ALAKALINE BATTERIES PROCELL REPLACEMENT LR14 1400\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"aa energizer rechargeable batteries 3 Packs Of 4 12 Total 2000 Mah\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"10 x Duracell LR44 1.5V Batteries LR 44 A76 AG13 357\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"24 X DURACELL AAA PLUS POWER ALKALINE BATTERIES MN2400, LR03 EXPIRY 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"10 x Energizer AA Ultimate Lithium Batteries Long Expiry New LR6, L91, LF1500\n",
"(' ', 'Other 48 Hour Courier')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"10 x Duracell LR44 1.5V Batteries LR 44 A76 AG13 357 ALKALINE COIN, Expiry 2019\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"2 DURACELL NEW Battery CR2032 3V Lithium Coin Cell Batteries DL2032 Expiry 2021\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"12 Duracell AAA MN2400 LR03 Duracell Alkaline Batteries LR03 MN2400\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"3 x 2 = 6 CR2 Duracell 3V Ultra Lithium Photo Camera Batteries DLCR2 Exp 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"2 x DURALOCK CR2025 3V LITHIUM COIN CELL BATTERIES DL2025 EXPIRY 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"4 x Duracell CR2016 3V Lithium Coin Cell Battery DL2016\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"Energizer Ultra Plus AA Batteries - Pack Of 12 - Use By 2019\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Collection in Person')\n",
"\n",
"2 x Duracell Ultra CR123A 3V Lithium Photo Battery - DL123A - 123 - 1 Pack\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"2 Duracell PLUS C SIZE Alkaline Batteries MN1400 LR14 EXPIRY 2023\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"4 x DURACELL CR2016 3V LITHIUM COIN CELL BATTERIES 2016 DL2016 EXPIRY 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"Energizer x 24 AA Ultimate Lithium Batteries Expiry 2026 LR6, L91, LF1500 MN1500\n",
"(' ', 'Other Courier')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Other 48 Hour Courier')\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"2 x 2 = 4 CR2 Duracell 3V Ultra Lithium Photo Camera Batteries DLCR2 Exp 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"4 x DURACELL LR44 1.5V ALKALINE BATTERY A76 AG13 SR44 GPA76 357 Expiry 2019\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"24 X DURACELL AAA ULTRA BATTERIES 1.5v MN2400, LR03 EXPIRY 2018\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"Duracell MN21 Alkaline Batteries A23 LRV08 12V - Pack of 2 batteries\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"6 x Duracell LR44 1.5V Alkaline Batteries LR 44 A76 AG13 357 Expiry 2019\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"Job Lot of 790 Philips Batteries CR1620 3v Cr2016 A76 Lr44 V13GA Alkaline\n",
"(' ', 'Parcelforce 48')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"(' ', 'Collection in Person')\n",
"\n",
"2 X DURACELL MN21 A23 k23A LRV08 Alkaline Battery 12v\n",
"(' ', 'Royal Mail 24')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"4 x Duracell MN21 A23 12V Battery 23A LRV08 K23A E23A\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"4 DURACELL INDUSTRIAL 9v PP3 MN1604 6LR61 ALKALINE BATTERIES PROCELL RELACEMENT\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"2 x DURACELL ALKALINE INDUSTRIAL 9v PP3 MN1604 REPLACES PROCELL BLOCK BATTERIES\n",
"(' ', 'Other Courier')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Other 24 Hour Courier')\n",
"(' ', 'Collection in Person')\n",
"\n",
"20 x DURACELL LR1 N 1.5V DURALOCK ALKALINE BATTERIES E90 KN EXPIRY 2019 N SIZE\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"12 x Energizer AA Ultimate Lithium Batteries Long Expiry New LR6, L91, LF1500\n",
"(' ', 'Other 48 Hour Courier')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"4 x DURACELL CR1620 3V Lithium Coin Cell Battery 1620 DL1620 Expiry 2021\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"16 x Duracell AA Plus Power Alkaline Batteries MN1500 LR6 EXPIRY 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"(' ', 'Collection in Person')\n",
"\n",
"5 x EUNICELL LR1 1.5V ALKALINE BATTERIES MN9100 N E90 KN EXPIRY 2018\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"UltraFire 18650 3000mAh 3.7V Li-ion Rechargeable Battery for Flashlight Torch UK\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"\n",
"2 x DURACELL CR2016 3V LITHIUM COIN CELL BATTERIES 2016 DL2016 EXPIRY 2024\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"10 x Duracell 9v Batteries PP3 MN1604 9 VOLT BLOCK Smoke Alarm EXPIRY 2019\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"2 x Duracell MN21 A23 12V Battery 23A LRV08 K23A E23A\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"BRAND NEW 5x MAXELL CR2016 LITHIUM BUTTON COIN CELL BATTERY\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"4 Packs of 2 = 8 Duracell PLUS D SIZEAlkaline Battery Batteries MN1300 LR20\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail Special Delivery (TM) 1:00 pm')\n",
"\n",
"6 x Duracell LR44 1.5V Batteries LR 44 A76 AG13 357\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Royal Mail 1st Class')\n",
"(' ', 'Other 24 Hour Courier')\n",
"\n",
"10 x DURACELL AA INDUSTRIAL MN1500 1.5v LR6 ALKALINE BATTERIES BRAND NEW\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\n",
"2 x Energizer 1620 CR1620 3V Lithium Coin Cell Batteries DL1620 Expiry 2021\n",
"(' ', 'Royal Mail 1st Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n",
"10+10 = 20 Duracell Industrial AA Alkaline Battery MN1500 LR6 REPLACES PROCELL\n",
"(' ', 'Royal Mail 2nd Class')"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"(' ', 'Parcelforce 24')\n",
"\n"
]
}
],
"prompt_number": 156
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment